passenger 6.0.11 → 6.0.12
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG +24 -1
- data/CONTRIBUTORS +3 -0
- data/src/agent/Core/Config.h +1 -1
- data/src/agent/Core/Controller/CheckoutSession.cpp +24 -13
- data/src/agent/Core/Controller/Config.h +1 -1
- data/src/agent/Core/Controller/InternalUtils.cpp +32 -6
- data/src/agent/Core/Controller.h +4 -1
- data/src/agent/Watchdog/Config.h +1 -1
- data/src/cxx_supportlib/Constants.h +1 -1
- data/src/cxx_supportlib/IOTools/IOUtils.cpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/align/aligned_alloc.hpp +47 -0
- data/src/cxx_supportlib/vendor-modified/boost/align/detail/aligned_alloc_posix.hpp +41 -0
- data/src/cxx_supportlib/vendor-modified/boost/align/detail/is_alignment.hpp +28 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/associated_allocator.hpp +53 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/associated_cancellation_slot.hpp +179 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/associated_executor.hpp +57 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/associator.hpp +37 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/async_result.hpp +789 -106
- data/src/cxx_supportlib/vendor-modified/boost/asio/awaitable.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_datagram_socket.hpp +80 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_deadline_timer.hpp +10 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_raw_socket.hpp +80 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_seq_packet_socket.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket.hpp +20 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket_acceptor.hpp +90 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_stream_socket.hpp +60 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_waitable_timer.hpp +10 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/bind_cancellation_slot.hpp +723 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/bind_executor.hpp +191 -12
- data/src/cxx_supportlib/vendor-modified/boost/asio/cancellation_signal.hpp +361 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/cancellation_state.hpp +237 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/cancellation_type.hpp +176 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/co_spawn.hpp +30 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/connect.hpp +60 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/base_from_cancellation_state.hpp +165 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/bind_handler.hpp +209 -76
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/config.hpp +149 -60
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/deadline_timer_service.hpp +40 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/dev_poll_reactor.hpp +8 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/epoll_reactor.hpp +14 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/functional.hpp +6 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_alloc_helpers.hpp +14 -10
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_type_requirements.hpp +21 -18
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_work.hpp +30 -19
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/dev_poll_reactor.hpp +8 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/dev_poll_reactor.ipp +14 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/epoll_reactor.hpp +20 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/epoll_reactor.ipp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/kqueue_reactor.hpp +20 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/kqueue_reactor.ipp +29 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/select_reactor.hpp +24 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/select_reactor.ipp +19 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/strand_executor_service.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/timer_queue_ptime.ipp +6 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/kqueue_reactor.hpp +15 -5
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/memory.hpp +60 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/pop_options.hpp +8 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/push_options.hpp +27 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_descriptor_service.hpp +93 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_service.hpp +77 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_service_base.hpp +111 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor_op.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor_op_queue.hpp +44 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/recycling_allocator.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolve_endpoint_op.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/select_reactor.hpp +14 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/thread_info_base.hpp +90 -24
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue.hpp +30 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue_ptime.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/wait_op.hpp +5 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/work_dispatcher.hpp +5 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/any_executor.hpp +12 -12
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/bulk_execute.hpp +10 -8
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/connect.hpp +8 -8
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/execute.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/schedule.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/set_done.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/set_error.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/set_value.hpp +13 -13
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/start.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/submit.hpp +8 -8
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/append.hpp +73 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/as_tuple.hpp +133 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/awaitable_operators.hpp +538 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/cancellation_condition.hpp +157 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/coro.hpp +1057 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/deferred.hpp +607 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/completion_handler_erasure.hpp +160 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/coro_promise_allocator.hpp +120 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/coro_traits.hpp +185 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/partial_promise.hpp +181 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/append.hpp +219 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/as_single.hpp +14 -28
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/as_tuple.hpp +248 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/deferred.hpp +106 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/parallel_group.hpp +434 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/prepend.hpp +219 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/promise.hpp +100 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/parallel_group.hpp +217 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/prepend.hpp +73 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/promise.hpp +608 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/use_coro.hpp +284 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/awaitable.hpp +344 -20
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/buffered_read_stream.hpp +23 -54
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/buffered_write_stream.hpp +23 -54
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/co_spawn.hpp +66 -18
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/compose.hpp +55 -5
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/connect.hpp +68 -80
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/defer.hpp +8 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/dispatch.hpp +8 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/handler_alloc_hook.ipp +3 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/post.hpp +8 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read.hpp +98 -113
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read_at.hpp +71 -82
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read_until.hpp +210 -266
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/redirect_error.hpp +248 -30
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/spawn.hpp +11 -21
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/use_awaitable.hpp +15 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/write.hpp +71 -87
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/write_at.hpp +46 -68
- data/src/cxx_supportlib/vendor-modified/boost/asio/io_context.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/detail/impl/endpoint.ipp +2 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/basic_descriptor.hpp +10 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/basic_stream_descriptor.hpp +23 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/prefer.hpp +21 -21
- data/src/cxx_supportlib/vendor-modified/boost/asio/query.hpp +9 -9
- data/src/cxx_supportlib/vendor-modified/boost/asio/read.hpp +88 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/read_at.hpp +44 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/read_until.hpp +132 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/require.hpp +21 -21
- data/src/cxx_supportlib/vendor-modified/boost/asio/require_concept.hpp +9 -9
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/buffered_handshake_op.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/engine.hpp +5 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/handshake_op.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/impl/engine.ipp +14 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/io.hpp +36 -27
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/read_op.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/shutdown_op.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/stream_core.hpp +37 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/write_op.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/context.ipp +14 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/stream.hpp +73 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/system_executor.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/this_coro.hpp +235 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/thread_pool.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/use_awaitable.hpp +7 -10
- data/src/cxx_supportlib/vendor-modified/boost/asio/version.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_random_access_handle.hpp +20 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_stream_handle.hpp +20 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/write.hpp +88 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/write_at.hpp +44 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio.hpp +6 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/atomic_ref.hpp +14 -1
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/config.hpp +17 -13
- data/src/cxx_supportlib/vendor-modified/boost/atomic/ipc_atomic_ref.hpp +14 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx03.hpp +2 -5
- data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx11.hpp +2 -5
- data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx14.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx17.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx20.hpp +56 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/auto_link.hpp +1 -5
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/common_edg.hpp +31 -11
- data/src/cxx_supportlib/vendor-modified/boost/config/detail/cxx_composite.hpp +20 -4
- data/src/cxx_supportlib/vendor-modified/boost/config/detail/select_platform_config.hpp +5 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/detail/suffix.hpp +81 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/platform/bsd.hpp +5 -8
- data/src/cxx_supportlib/vendor-modified/boost/config/platform/wasm.hpp +17 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/dinkumware.hpp +26 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/libcpp.hpp +49 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/libstdcpp3.hpp +46 -4
- data/src/cxx_supportlib/vendor-modified/boost/container/adaptive_pool.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/container/allocator.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/adaptive_node_pool.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/node_pool.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/std_fwd.hpp +3 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/devector.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/container/new_allocator.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/container/node_allocator.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/polymorphic_allocator.hpp +6 -6
- data/src/cxx_supportlib/vendor-modified/boost/container/static_vector.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/container/throw_exception.hpp +45 -38
- data/src/cxx_supportlib/vendor-modified/boost/container/vector.hpp +24 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/ignore_unused.hpp +32 -2
- data/src/cxx_supportlib/vendor-modified/boost/core/uncaught_exceptions.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/date_time/compiler_config.hpp +0 -24
- data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/time_parsers.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/any_hook.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/avl_set.hpp +83 -83
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/avltree.hpp +43 -43
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/avltree_algorithms.hpp +31 -31
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/bs_set.hpp +85 -85
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/bstree.hpp +68 -68
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/bstree_algorithms.hpp +72 -62
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/circular_list_algorithms.hpp +19 -20
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/circular_slist_algorithms.hpp +19 -19
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/derivation_value_traits.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/any_node_and_algorithms.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/bstree_algorithms_base.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/common_slist_algorithms.hpp +5 -5
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/config_begin.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/generic_hook.hpp +8 -8
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/hash_combine.hpp +2 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/hashtable_node.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/math.hpp +2 -50
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/node_cloner_disposer.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/hashtable.hpp +71 -70
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/linear_slist_algorithms.hpp +15 -14
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/list.hpp +84 -82
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/list_hook.hpp +10 -10
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/member_value_traits.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/parent_from_member.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/pointer_plus_bits.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/pointer_traits.hpp +18 -18
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/rbtree.hpp +43 -43
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/rbtree_algorithms.hpp +26 -26
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/set.hpp +85 -85
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/set_hook.hpp +12 -12
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/sg_set.hpp +93 -93
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/sgtree.hpp +51 -51
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/sgtree_algorithms.hpp +24 -24
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/slist.hpp +104 -104
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/slist_hook.hpp +8 -6
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/splay_set.hpp +91 -91
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/splaytree.hpp +46 -46
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/splaytree_algorithms.hpp +31 -31
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/treap.hpp +51 -51
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/treap_algorithms.hpp +18 -18
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/treap_set.hpp +97 -97
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/trivial_value_traits.hpp +6 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/unordered_set.hpp +63 -63
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/unordered_set_hook.hpp +15 -15
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/converter_numeric.hpp +4 -1
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/config_begin.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/iterator_traits.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/nsec_clock.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/operators.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/concepts.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/basic_regex_parser.hpp +3 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/unicode_iterator.hpp +112 -31
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/basic_regex_parser.hpp +3 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/mem_block_cache.hpp +4 -8
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/unicode_iterator.hpp +0 -2
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/w32_regex_traits.hpp +6 -2
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/shared_count.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_impl.hpp +22 -2
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/shared_ptr.hpp +59 -1
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/config.hpp +9 -11
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_category.hpp +27 -21
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_category_impl.hpp +34 -3
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_code.hpp +378 -36
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_condition.hpp +97 -21
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/interop_category.hpp +107 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/is_same.hpp +33 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/snprintf.hpp +70 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/{to_std_category.hpp → std_category.hpp} +5 -55
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/system_category_impl.hpp +2 -12
- data/src/cxx_supportlib/vendor-modified/boost/system/error_code.hpp +0 -33
- data/src/cxx_supportlib/vendor-modified/boost/utility/detail/result_of_variadic.hpp +190 -0
- data/src/cxx_supportlib/vendor-modified/boost/utility/result_of.hpp +20 -9
- data/src/cxx_supportlib/vendor-modified/boost/utility/string_view.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/version.hpp +2 -2
- data/src/nginx_module/ConfigGeneral/AutoGeneratedDefinitions.c +8 -0
- data/src/nginx_module/ConfigGeneral/AutoGeneratedManifestDefaultsInitialization.c +6 -0
- data/src/nginx_module/ConfigGeneral/AutoGeneratedSetterFuncs.c +12 -0
- data/src/nginx_module/LocationConfig/AutoGeneratedCreateFunction.c +5 -0
- data/src/nginx_module/LocationConfig/AutoGeneratedHeaderSerialization.c +21 -0
- data/src/nginx_module/LocationConfig/AutoGeneratedManifestGeneration.c +13 -0
- data/src/nginx_module/LocationConfig/AutoGeneratedMergeFunction.c +3 -0
- data/src/nginx_module/LocationConfig/AutoGeneratedStruct.h +4 -0
- data/src/ruby_supportlib/phusion_passenger/admin_tools/instance_registry.rb +3 -2
- data/src/ruby_supportlib/phusion_passenger/loader_shared_helpers.rb +8 -1
- data/src/ruby_supportlib/phusion_passenger/nginx/config_options.rb +6 -0
- data/src/ruby_supportlib/phusion_passenger/packaging.rb +1 -0
- data/src/ruby_supportlib/phusion_passenger/platform_info/openssl.rb +1 -1
- data/src/ruby_supportlib/phusion_passenger/platform_info/operating_system.rb +8 -0
- data/src/ruby_supportlib/phusion_passenger/request_handler.rb +4 -1
- data/src/ruby_supportlib/phusion_passenger.rb +1 -1
- metadata +39 -4
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/is_generic_value.hpp +0 -125
@@ -0,0 +1,723 @@
|
|
1
|
+
//
|
2
|
+
// bind_cancellation_slot.hpp
|
3
|
+
// ~~~~~~~~~~~~~~~~~~~~~~~~~~
|
4
|
+
//
|
5
|
+
// Copyright (c) 2003-2021 Christopher M. Kohlhoff (chris at kohlhoff dot com)
|
6
|
+
//
|
7
|
+
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
8
|
+
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
9
|
+
//
|
10
|
+
|
11
|
+
#ifndef BOOST_ASIO_BIND_CANCELLATION_SLOT_HPP
|
12
|
+
#define BOOST_ASIO_BIND_CANCELLATION_SLOT_HPP
|
13
|
+
|
14
|
+
#if defined(_MSC_VER) && (_MSC_VER >= 1200)
|
15
|
+
# pragma once
|
16
|
+
#endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
|
17
|
+
|
18
|
+
#include <boost/asio/detail/config.hpp>
|
19
|
+
#include <boost/asio/detail/type_traits.hpp>
|
20
|
+
#include <boost/asio/detail/variadic_templates.hpp>
|
21
|
+
#include <boost/asio/associated_cancellation_slot.hpp>
|
22
|
+
#include <boost/asio/associator.hpp>
|
23
|
+
#include <boost/asio/async_result.hpp>
|
24
|
+
|
25
|
+
#include <boost/asio/detail/push_options.hpp>
|
26
|
+
|
27
|
+
namespace boost {
|
28
|
+
namespace asio {
|
29
|
+
namespace detail {
|
30
|
+
|
31
|
+
// Helper to automatically define nested typedef result_type.
|
32
|
+
|
33
|
+
template <typename T, typename = void>
|
34
|
+
struct cancellation_slot_binder_result_type
|
35
|
+
{
|
36
|
+
protected:
|
37
|
+
typedef void result_type_or_void;
|
38
|
+
};
|
39
|
+
|
40
|
+
template <typename T>
|
41
|
+
struct cancellation_slot_binder_result_type<T,
|
42
|
+
typename void_type<typename T::result_type>::type>
|
43
|
+
{
|
44
|
+
typedef typename T::result_type result_type;
|
45
|
+
protected:
|
46
|
+
typedef result_type result_type_or_void;
|
47
|
+
};
|
48
|
+
|
49
|
+
template <typename R>
|
50
|
+
struct cancellation_slot_binder_result_type<R(*)()>
|
51
|
+
{
|
52
|
+
typedef R result_type;
|
53
|
+
protected:
|
54
|
+
typedef result_type result_type_or_void;
|
55
|
+
};
|
56
|
+
|
57
|
+
template <typename R>
|
58
|
+
struct cancellation_slot_binder_result_type<R(&)()>
|
59
|
+
{
|
60
|
+
typedef R result_type;
|
61
|
+
protected:
|
62
|
+
typedef result_type result_type_or_void;
|
63
|
+
};
|
64
|
+
|
65
|
+
template <typename R, typename A1>
|
66
|
+
struct cancellation_slot_binder_result_type<R(*)(A1)>
|
67
|
+
{
|
68
|
+
typedef R result_type;
|
69
|
+
protected:
|
70
|
+
typedef result_type result_type_or_void;
|
71
|
+
};
|
72
|
+
|
73
|
+
template <typename R, typename A1>
|
74
|
+
struct cancellation_slot_binder_result_type<R(&)(A1)>
|
75
|
+
{
|
76
|
+
typedef R result_type;
|
77
|
+
protected:
|
78
|
+
typedef result_type result_type_or_void;
|
79
|
+
};
|
80
|
+
|
81
|
+
template <typename R, typename A1, typename A2>
|
82
|
+
struct cancellation_slot_binder_result_type<R(*)(A1, A2)>
|
83
|
+
{
|
84
|
+
typedef R result_type;
|
85
|
+
protected:
|
86
|
+
typedef result_type result_type_or_void;
|
87
|
+
};
|
88
|
+
|
89
|
+
template <typename R, typename A1, typename A2>
|
90
|
+
struct cancellation_slot_binder_result_type<R(&)(A1, A2)>
|
91
|
+
{
|
92
|
+
typedef R result_type;
|
93
|
+
protected:
|
94
|
+
typedef result_type result_type_or_void;
|
95
|
+
};
|
96
|
+
|
97
|
+
// Helper to automatically define nested typedef argument_type.
|
98
|
+
|
99
|
+
template <typename T, typename = void>
|
100
|
+
struct cancellation_slot_binder_argument_type {};
|
101
|
+
|
102
|
+
template <typename T>
|
103
|
+
struct cancellation_slot_binder_argument_type<T,
|
104
|
+
typename void_type<typename T::argument_type>::type>
|
105
|
+
{
|
106
|
+
typedef typename T::argument_type argument_type;
|
107
|
+
};
|
108
|
+
|
109
|
+
template <typename R, typename A1>
|
110
|
+
struct cancellation_slot_binder_argument_type<R(*)(A1)>
|
111
|
+
{
|
112
|
+
typedef A1 argument_type;
|
113
|
+
};
|
114
|
+
|
115
|
+
template <typename R, typename A1>
|
116
|
+
struct cancellation_slot_binder_argument_type<R(&)(A1)>
|
117
|
+
{
|
118
|
+
typedef A1 argument_type;
|
119
|
+
};
|
120
|
+
|
121
|
+
// Helper to automatically define nested typedefs first_argument_type and
|
122
|
+
// second_argument_type.
|
123
|
+
|
124
|
+
template <typename T, typename = void>
|
125
|
+
struct cancellation_slot_binder_argument_types {};
|
126
|
+
|
127
|
+
template <typename T>
|
128
|
+
struct cancellation_slot_binder_argument_types<T,
|
129
|
+
typename void_type<typename T::first_argument_type>::type>
|
130
|
+
{
|
131
|
+
typedef typename T::first_argument_type first_argument_type;
|
132
|
+
typedef typename T::second_argument_type second_argument_type;
|
133
|
+
};
|
134
|
+
|
135
|
+
template <typename R, typename A1, typename A2>
|
136
|
+
struct cancellation_slot_binder_argument_type<R(*)(A1, A2)>
|
137
|
+
{
|
138
|
+
typedef A1 first_argument_type;
|
139
|
+
typedef A2 second_argument_type;
|
140
|
+
};
|
141
|
+
|
142
|
+
template <typename R, typename A1, typename A2>
|
143
|
+
struct cancellation_slot_binder_argument_type<R(&)(A1, A2)>
|
144
|
+
{
|
145
|
+
typedef A1 first_argument_type;
|
146
|
+
typedef A2 second_argument_type;
|
147
|
+
};
|
148
|
+
|
149
|
+
// Helper to enable SFINAE on zero-argument operator() below.
|
150
|
+
|
151
|
+
template <typename T, typename = void>
|
152
|
+
struct cancellation_slot_binder_result_of0
|
153
|
+
{
|
154
|
+
typedef void type;
|
155
|
+
};
|
156
|
+
|
157
|
+
template <typename T>
|
158
|
+
struct cancellation_slot_binder_result_of0<T,
|
159
|
+
typename void_type<typename result_of<T()>::type>::type>
|
160
|
+
{
|
161
|
+
typedef typename result_of<T()>::type type;
|
162
|
+
};
|
163
|
+
|
164
|
+
} // namespace detail
|
165
|
+
|
166
|
+
/// A call wrapper type to bind a cancellation slot of type @c CancellationSlot
|
167
|
+
/// to an object of type @c T.
|
168
|
+
template <typename T, typename CancellationSlot>
|
169
|
+
class cancellation_slot_binder
|
170
|
+
#if !defined(GENERATING_DOCUMENTATION)
|
171
|
+
: public detail::cancellation_slot_binder_result_type<T>,
|
172
|
+
public detail::cancellation_slot_binder_argument_type<T>,
|
173
|
+
public detail::cancellation_slot_binder_argument_types<T>
|
174
|
+
#endif // !defined(GENERATING_DOCUMENTATION)
|
175
|
+
{
|
176
|
+
public:
|
177
|
+
/// The type of the target object.
|
178
|
+
typedef T target_type;
|
179
|
+
|
180
|
+
/// The type of the associated cancellation slot.
|
181
|
+
typedef CancellationSlot cancellation_slot_type;
|
182
|
+
|
183
|
+
#if defined(GENERATING_DOCUMENTATION)
|
184
|
+
/// The return type if a function.
|
185
|
+
/**
|
186
|
+
* The type of @c result_type is based on the type @c T of the wrapper's
|
187
|
+
* target object:
|
188
|
+
*
|
189
|
+
* @li if @c T is a pointer to function type, @c result_type is a synonym for
|
190
|
+
* the return type of @c T;
|
191
|
+
*
|
192
|
+
* @li if @c T is a class type with a member type @c result_type, then @c
|
193
|
+
* result_type is a synonym for @c T::result_type;
|
194
|
+
*
|
195
|
+
* @li otherwise @c result_type is not defined.
|
196
|
+
*/
|
197
|
+
typedef see_below result_type;
|
198
|
+
|
199
|
+
/// The type of the function's argument.
|
200
|
+
/**
|
201
|
+
* The type of @c argument_type is based on the type @c T of the wrapper's
|
202
|
+
* target object:
|
203
|
+
*
|
204
|
+
* @li if @c T is a pointer to a function type accepting a single argument,
|
205
|
+
* @c argument_type is a synonym for the return type of @c T;
|
206
|
+
*
|
207
|
+
* @li if @c T is a class type with a member type @c argument_type, then @c
|
208
|
+
* argument_type is a synonym for @c T::argument_type;
|
209
|
+
*
|
210
|
+
* @li otherwise @c argument_type is not defined.
|
211
|
+
*/
|
212
|
+
typedef see_below argument_type;
|
213
|
+
|
214
|
+
/// The type of the function's first argument.
|
215
|
+
/**
|
216
|
+
* The type of @c first_argument_type is based on the type @c T of the
|
217
|
+
* wrapper's target object:
|
218
|
+
*
|
219
|
+
* @li if @c T is a pointer to a function type accepting two arguments, @c
|
220
|
+
* first_argument_type is a synonym for the return type of @c T;
|
221
|
+
*
|
222
|
+
* @li if @c T is a class type with a member type @c first_argument_type,
|
223
|
+
* then @c first_argument_type is a synonym for @c T::first_argument_type;
|
224
|
+
*
|
225
|
+
* @li otherwise @c first_argument_type is not defined.
|
226
|
+
*/
|
227
|
+
typedef see_below first_argument_type;
|
228
|
+
|
229
|
+
/// The type of the function's second argument.
|
230
|
+
/**
|
231
|
+
* The type of @c second_argument_type is based on the type @c T of the
|
232
|
+
* wrapper's target object:
|
233
|
+
*
|
234
|
+
* @li if @c T is a pointer to a function type accepting two arguments, @c
|
235
|
+
* second_argument_type is a synonym for the return type of @c T;
|
236
|
+
*
|
237
|
+
* @li if @c T is a class type with a member type @c first_argument_type,
|
238
|
+
* then @c second_argument_type is a synonym for @c T::second_argument_type;
|
239
|
+
*
|
240
|
+
* @li otherwise @c second_argument_type is not defined.
|
241
|
+
*/
|
242
|
+
typedef see_below second_argument_type;
|
243
|
+
#endif // defined(GENERATING_DOCUMENTATION)
|
244
|
+
|
245
|
+
/// Construct a cancellation slot wrapper for the specified object.
|
246
|
+
/**
|
247
|
+
* This constructor is only valid if the type @c T is constructible from type
|
248
|
+
* @c U.
|
249
|
+
*/
|
250
|
+
template <typename U>
|
251
|
+
cancellation_slot_binder(const cancellation_slot_type& s,
|
252
|
+
BOOST_ASIO_MOVE_ARG(U) u)
|
253
|
+
: slot_(s),
|
254
|
+
target_(BOOST_ASIO_MOVE_CAST(U)(u))
|
255
|
+
{
|
256
|
+
}
|
257
|
+
|
258
|
+
/// Copy constructor.
|
259
|
+
cancellation_slot_binder(const cancellation_slot_binder& other)
|
260
|
+
: slot_(other.get_cancellation_slot()),
|
261
|
+
target_(other.get())
|
262
|
+
{
|
263
|
+
}
|
264
|
+
|
265
|
+
/// Construct a copy, but specify a different cancellation slot.
|
266
|
+
cancellation_slot_binder(const cancellation_slot_type& s,
|
267
|
+
const cancellation_slot_binder& other)
|
268
|
+
: slot_(s),
|
269
|
+
target_(other.get())
|
270
|
+
{
|
271
|
+
}
|
272
|
+
|
273
|
+
/// Construct a copy of a different cancellation slot wrapper type.
|
274
|
+
/**
|
275
|
+
* This constructor is only valid if the @c CancellationSlot type is
|
276
|
+
* constructible from type @c OtherCancellationSlot, and the type @c T is
|
277
|
+
* constructible from type @c U.
|
278
|
+
*/
|
279
|
+
template <typename U, typename OtherCancellationSlot>
|
280
|
+
cancellation_slot_binder(
|
281
|
+
const cancellation_slot_binder<U, OtherCancellationSlot>& other)
|
282
|
+
: slot_(other.get_cancellation_slot()),
|
283
|
+
target_(other.get())
|
284
|
+
{
|
285
|
+
}
|
286
|
+
|
287
|
+
/// Construct a copy of a different cancellation slot wrapper type, but
|
288
|
+
/// specify a different cancellation slot.
|
289
|
+
/**
|
290
|
+
* This constructor is only valid if the type @c T is constructible from type
|
291
|
+
* @c U.
|
292
|
+
*/
|
293
|
+
template <typename U, typename OtherCancellationSlot>
|
294
|
+
cancellation_slot_binder(const cancellation_slot_type& s,
|
295
|
+
const cancellation_slot_binder<U, OtherCancellationSlot>& other)
|
296
|
+
: slot_(s),
|
297
|
+
target_(other.get())
|
298
|
+
{
|
299
|
+
}
|
300
|
+
|
301
|
+
#if defined(BOOST_ASIO_HAS_MOVE) || defined(GENERATING_DOCUMENTATION)
|
302
|
+
|
303
|
+
/// Move constructor.
|
304
|
+
cancellation_slot_binder(cancellation_slot_binder&& other)
|
305
|
+
: slot_(BOOST_ASIO_MOVE_CAST(cancellation_slot_type)(
|
306
|
+
other.get_cancellation_slot())),
|
307
|
+
target_(BOOST_ASIO_MOVE_CAST(T)(other.get()))
|
308
|
+
{
|
309
|
+
}
|
310
|
+
|
311
|
+
/// Move construct the target object, but specify a different cancellation
|
312
|
+
/// slot.
|
313
|
+
cancellation_slot_binder(const cancellation_slot_type& s,
|
314
|
+
cancellation_slot_binder&& other)
|
315
|
+
: slot_(s),
|
316
|
+
target_(BOOST_ASIO_MOVE_CAST(T)(other.get()))
|
317
|
+
{
|
318
|
+
}
|
319
|
+
|
320
|
+
/// Move construct from a different cancellation slot wrapper type.
|
321
|
+
template <typename U, typename OtherCancellationSlot>
|
322
|
+
cancellation_slot_binder(
|
323
|
+
cancellation_slot_binder<U, OtherCancellationSlot>&& other)
|
324
|
+
: slot_(BOOST_ASIO_MOVE_CAST(OtherCancellationSlot)(
|
325
|
+
other.get_cancellation_slot())),
|
326
|
+
target_(BOOST_ASIO_MOVE_CAST(U)(other.get()))
|
327
|
+
{
|
328
|
+
}
|
329
|
+
|
330
|
+
/// Move construct from a different cancellation slot wrapper type, but
|
331
|
+
/// specify a different cancellation slot.
|
332
|
+
template <typename U, typename OtherCancellationSlot>
|
333
|
+
cancellation_slot_binder(const cancellation_slot_type& s,
|
334
|
+
cancellation_slot_binder<U, OtherCancellationSlot>&& other)
|
335
|
+
: slot_(s),
|
336
|
+
target_(BOOST_ASIO_MOVE_CAST(U)(other.get()))
|
337
|
+
{
|
338
|
+
}
|
339
|
+
|
340
|
+
#endif // defined(BOOST_ASIO_HAS_MOVE) || defined(GENERATING_DOCUMENTATION)
|
341
|
+
|
342
|
+
/// Destructor.
|
343
|
+
~cancellation_slot_binder()
|
344
|
+
{
|
345
|
+
}
|
346
|
+
|
347
|
+
/// Obtain a reference to the target object.
|
348
|
+
target_type& get() BOOST_ASIO_NOEXCEPT
|
349
|
+
{
|
350
|
+
return target_;
|
351
|
+
}
|
352
|
+
|
353
|
+
/// Obtain a reference to the target object.
|
354
|
+
const target_type& get() const BOOST_ASIO_NOEXCEPT
|
355
|
+
{
|
356
|
+
return target_;
|
357
|
+
}
|
358
|
+
|
359
|
+
/// Obtain the associated cancellation slot.
|
360
|
+
cancellation_slot_type get_cancellation_slot() const BOOST_ASIO_NOEXCEPT
|
361
|
+
{
|
362
|
+
return slot_;
|
363
|
+
}
|
364
|
+
|
365
|
+
#if defined(GENERATING_DOCUMENTATION)
|
366
|
+
|
367
|
+
template <typename... Args> auto operator()(Args&& ...);
|
368
|
+
template <typename... Args> auto operator()(Args&& ...) const;
|
369
|
+
|
370
|
+
#elif defined(BOOST_ASIO_HAS_VARIADIC_TEMPLATES)
|
371
|
+
|
372
|
+
/// Forwarding function call operator.
|
373
|
+
template <typename... Args>
|
374
|
+
typename result_of<T(Args...)>::type operator()(
|
375
|
+
BOOST_ASIO_MOVE_ARG(Args)... args)
|
376
|
+
{
|
377
|
+
return target_(BOOST_ASIO_MOVE_CAST(Args)(args)...);
|
378
|
+
}
|
379
|
+
|
380
|
+
/// Forwarding function call operator.
|
381
|
+
template <typename... Args>
|
382
|
+
typename result_of<T(Args...)>::type operator()(
|
383
|
+
BOOST_ASIO_MOVE_ARG(Args)... args) const
|
384
|
+
{
|
385
|
+
return target_(BOOST_ASIO_MOVE_CAST(Args)(args)...);
|
386
|
+
}
|
387
|
+
|
388
|
+
#elif defined(BOOST_ASIO_HAS_STD_TYPE_TRAITS) && !defined(_MSC_VER)
|
389
|
+
|
390
|
+
typename detail::cancellation_slot_binder_result_of0<T>::type operator()()
|
391
|
+
{
|
392
|
+
return target_();
|
393
|
+
}
|
394
|
+
|
395
|
+
typename detail::cancellation_slot_binder_result_of0<T>::type
|
396
|
+
operator()() const
|
397
|
+
{
|
398
|
+
return target_();
|
399
|
+
}
|
400
|
+
|
401
|
+
#define BOOST_ASIO_PRIVATE_BINDER_CALL_DEF(n) \
|
402
|
+
template <BOOST_ASIO_VARIADIC_TPARAMS(n)> \
|
403
|
+
typename result_of<T(BOOST_ASIO_VARIADIC_TARGS(n))>::type operator()( \
|
404
|
+
BOOST_ASIO_VARIADIC_MOVE_PARAMS(n)) \
|
405
|
+
{ \
|
406
|
+
return target_(BOOST_ASIO_VARIADIC_MOVE_ARGS(n)); \
|
407
|
+
} \
|
408
|
+
\
|
409
|
+
template <BOOST_ASIO_VARIADIC_TPARAMS(n)> \
|
410
|
+
typename result_of<T(BOOST_ASIO_VARIADIC_TARGS(n))>::type operator()( \
|
411
|
+
BOOST_ASIO_VARIADIC_MOVE_PARAMS(n)) const \
|
412
|
+
{ \
|
413
|
+
return target_(BOOST_ASIO_VARIADIC_MOVE_ARGS(n)); \
|
414
|
+
} \
|
415
|
+
/**/
|
416
|
+
BOOST_ASIO_VARIADIC_GENERATE(BOOST_ASIO_PRIVATE_BINDER_CALL_DEF)
|
417
|
+
#undef BOOST_ASIO_PRIVATE_BINDER_CALL_DEF
|
418
|
+
|
419
|
+
#else // defined(BOOST_ASIO_HAS_STD_TYPE_TRAITS) && !defined(_MSC_VER)
|
420
|
+
|
421
|
+
typedef typename detail::cancellation_slot_binder_result_type<
|
422
|
+
T>::result_type_or_void result_type_or_void;
|
423
|
+
|
424
|
+
result_type_or_void operator()()
|
425
|
+
{
|
426
|
+
return target_();
|
427
|
+
}
|
428
|
+
|
429
|
+
result_type_or_void operator()() const
|
430
|
+
{
|
431
|
+
return target_();
|
432
|
+
}
|
433
|
+
|
434
|
+
#define BOOST_ASIO_PRIVATE_BINDER_CALL_DEF(n) \
|
435
|
+
template <BOOST_ASIO_VARIADIC_TPARAMS(n)> \
|
436
|
+
result_type_or_void operator()( \
|
437
|
+
BOOST_ASIO_VARIADIC_MOVE_PARAMS(n)) \
|
438
|
+
{ \
|
439
|
+
return target_(BOOST_ASIO_VARIADIC_MOVE_ARGS(n)); \
|
440
|
+
} \
|
441
|
+
\
|
442
|
+
template <BOOST_ASIO_VARIADIC_TPARAMS(n)> \
|
443
|
+
result_type_or_void operator()( \
|
444
|
+
BOOST_ASIO_VARIADIC_MOVE_PARAMS(n)) const \
|
445
|
+
{ \
|
446
|
+
return target_(BOOST_ASIO_VARIADIC_MOVE_ARGS(n)); \
|
447
|
+
} \
|
448
|
+
/**/
|
449
|
+
BOOST_ASIO_VARIADIC_GENERATE(BOOST_ASIO_PRIVATE_BINDER_CALL_DEF)
|
450
|
+
#undef BOOST_ASIO_PRIVATE_BINDER_CALL_DEF
|
451
|
+
|
452
|
+
#endif // defined(BOOST_ASIO_HAS_STD_TYPE_TRAITS) && !defined(_MSC_VER)
|
453
|
+
|
454
|
+
private:
|
455
|
+
CancellationSlot slot_;
|
456
|
+
T target_;
|
457
|
+
};
|
458
|
+
|
459
|
+
/// Associate an object of type @c T with a cancellation slot of type
|
460
|
+
/// @c CancellationSlot.
|
461
|
+
template <typename CancellationSlot, typename T>
|
462
|
+
inline cancellation_slot_binder<typename decay<T>::type, CancellationSlot>
|
463
|
+
bind_cancellation_slot(const CancellationSlot& s, BOOST_ASIO_MOVE_ARG(T) t)
|
464
|
+
{
|
465
|
+
return cancellation_slot_binder<
|
466
|
+
typename decay<T>::type, CancellationSlot>(
|
467
|
+
s, BOOST_ASIO_MOVE_CAST(T)(t));
|
468
|
+
}
|
469
|
+
|
470
|
+
#if !defined(GENERATING_DOCUMENTATION)
|
471
|
+
|
472
|
+
namespace detail {
|
473
|
+
|
474
|
+
template <typename TargetAsyncResult,
|
475
|
+
typename CancellationSlot, typename = void>
|
476
|
+
struct cancellation_slot_binder_async_result_completion_handler_type
|
477
|
+
{
|
478
|
+
};
|
479
|
+
|
480
|
+
template <typename TargetAsyncResult, typename CancellationSlot>
|
481
|
+
struct cancellation_slot_binder_async_result_completion_handler_type<
|
482
|
+
TargetAsyncResult, CancellationSlot,
|
483
|
+
typename void_type<
|
484
|
+
typename TargetAsyncResult::completion_handler_type
|
485
|
+
>::type>
|
486
|
+
{
|
487
|
+
typedef cancellation_slot_binder<
|
488
|
+
typename TargetAsyncResult::completion_handler_type, CancellationSlot>
|
489
|
+
completion_handler_type;
|
490
|
+
};
|
491
|
+
|
492
|
+
template <typename TargetAsyncResult, typename = void>
|
493
|
+
struct cancellation_slot_binder_async_result_return_type
|
494
|
+
{
|
495
|
+
};
|
496
|
+
|
497
|
+
template <typename TargetAsyncResult>
|
498
|
+
struct cancellation_slot_binder_async_result_return_type<
|
499
|
+
TargetAsyncResult,
|
500
|
+
typename void_type<
|
501
|
+
typename TargetAsyncResult::return_type
|
502
|
+
>::type>
|
503
|
+
{
|
504
|
+
typedef typename TargetAsyncResult::return_type return_type;
|
505
|
+
};
|
506
|
+
|
507
|
+
} // namespace detail
|
508
|
+
|
509
|
+
template <typename T, typename CancellationSlot, typename Signature>
|
510
|
+
class async_result<cancellation_slot_binder<T, CancellationSlot>, Signature> :
|
511
|
+
public detail::cancellation_slot_binder_async_result_completion_handler_type<
|
512
|
+
async_result<T, Signature>, CancellationSlot>,
|
513
|
+
public detail::cancellation_slot_binder_async_result_return_type<
|
514
|
+
async_result<T, Signature> >
|
515
|
+
{
|
516
|
+
public:
|
517
|
+
explicit async_result(cancellation_slot_binder<T, CancellationSlot>& b)
|
518
|
+
: target_(b.get())
|
519
|
+
{
|
520
|
+
}
|
521
|
+
|
522
|
+
typename async_result<T, Signature>::return_type get()
|
523
|
+
{
|
524
|
+
return target_.get();
|
525
|
+
}
|
526
|
+
|
527
|
+
template <typename Initiation>
|
528
|
+
struct init_wrapper
|
529
|
+
{
|
530
|
+
template <typename Init>
|
531
|
+
init_wrapper(const CancellationSlot& slot, BOOST_ASIO_MOVE_ARG(Init) init)
|
532
|
+
: slot_(slot),
|
533
|
+
initiation_(BOOST_ASIO_MOVE_CAST(Init)(init))
|
534
|
+
{
|
535
|
+
}
|
536
|
+
|
537
|
+
#if defined(BOOST_ASIO_HAS_VARIADIC_TEMPLATES)
|
538
|
+
|
539
|
+
template <typename Handler, typename... Args>
|
540
|
+
void operator()(
|
541
|
+
BOOST_ASIO_MOVE_ARG(Handler) handler,
|
542
|
+
BOOST_ASIO_MOVE_ARG(Args)... args)
|
543
|
+
{
|
544
|
+
BOOST_ASIO_MOVE_CAST(Initiation)(initiation_)(
|
545
|
+
cancellation_slot_binder<
|
546
|
+
typename decay<Handler>::type, CancellationSlot>(
|
547
|
+
slot_, BOOST_ASIO_MOVE_CAST(Handler)(handler)),
|
548
|
+
BOOST_ASIO_MOVE_CAST(Args)(args)...);
|
549
|
+
}
|
550
|
+
|
551
|
+
template <typename Handler, typename... Args>
|
552
|
+
void operator()(
|
553
|
+
BOOST_ASIO_MOVE_ARG(Handler) handler,
|
554
|
+
BOOST_ASIO_MOVE_ARG(Args)... args) const
|
555
|
+
{
|
556
|
+
initiation_(
|
557
|
+
cancellation_slot_binder<
|
558
|
+
typename decay<Handler>::type, CancellationSlot>(
|
559
|
+
slot_, BOOST_ASIO_MOVE_CAST(Handler)(handler)),
|
560
|
+
BOOST_ASIO_MOVE_CAST(Args)(args)...);
|
561
|
+
}
|
562
|
+
|
563
|
+
#else // defined(BOOST_ASIO_HAS_VARIADIC_TEMPLATES)
|
564
|
+
|
565
|
+
template <typename Handler>
|
566
|
+
void operator()(
|
567
|
+
BOOST_ASIO_MOVE_ARG(Handler) handler)
|
568
|
+
{
|
569
|
+
BOOST_ASIO_MOVE_CAST(Initiation)(initiation_)(
|
570
|
+
cancellation_slot_binder<
|
571
|
+
typename decay<Handler>::type, CancellationSlot>(
|
572
|
+
slot_, BOOST_ASIO_MOVE_CAST(Handler)(handler)));
|
573
|
+
}
|
574
|
+
|
575
|
+
template <typename Handler>
|
576
|
+
void operator()(
|
577
|
+
BOOST_ASIO_MOVE_ARG(Handler) handler) const
|
578
|
+
{
|
579
|
+
initiation_(
|
580
|
+
cancellation_slot_binder<
|
581
|
+
typename decay<Handler>::type, CancellationSlot>(
|
582
|
+
slot_, BOOST_ASIO_MOVE_CAST(Handler)(handler)));
|
583
|
+
}
|
584
|
+
|
585
|
+
#define BOOST_ASIO_PRIVATE_INIT_WRAPPER_DEF(n) \
|
586
|
+
template <typename Handler, BOOST_ASIO_VARIADIC_TPARAMS(n)> \
|
587
|
+
void operator()( \
|
588
|
+
BOOST_ASIO_MOVE_ARG(Handler) handler, \
|
589
|
+
BOOST_ASIO_VARIADIC_MOVE_PARAMS(n)) \
|
590
|
+
{ \
|
591
|
+
BOOST_ASIO_MOVE_CAST(Initiation)(initiation_)( \
|
592
|
+
cancellation_slot_binder< \
|
593
|
+
typename decay<Handler>::type, CancellationSlot>( \
|
594
|
+
slot_, BOOST_ASIO_MOVE_CAST(Handler)(handler)), \
|
595
|
+
BOOST_ASIO_VARIADIC_MOVE_ARGS(n)); \
|
596
|
+
} \
|
597
|
+
\
|
598
|
+
template <typename Handler, BOOST_ASIO_VARIADIC_TPARAMS(n)> \
|
599
|
+
void operator()( \
|
600
|
+
BOOST_ASIO_MOVE_ARG(Handler) handler, \
|
601
|
+
BOOST_ASIO_VARIADIC_MOVE_PARAMS(n)) const \
|
602
|
+
{ \
|
603
|
+
initiation_( \
|
604
|
+
cancellation_slot_binder< \
|
605
|
+
typename decay<Handler>::type, CancellationSlot>( \
|
606
|
+
slot_, BOOST_ASIO_MOVE_CAST(Handler)(handler)), \
|
607
|
+
BOOST_ASIO_VARIADIC_MOVE_ARGS(n)); \
|
608
|
+
} \
|
609
|
+
/**/
|
610
|
+
BOOST_ASIO_VARIADIC_GENERATE(BOOST_ASIO_PRIVATE_INIT_WRAPPER_DEF)
|
611
|
+
#undef BOOST_ASIO_PRIVATE_INIT_WRAPPER_DEF
|
612
|
+
|
613
|
+
#endif // defined(BOOST_ASIO_HAS_VARIADIC_TEMPLATES)
|
614
|
+
|
615
|
+
CancellationSlot slot_;
|
616
|
+
Initiation initiation_;
|
617
|
+
};
|
618
|
+
|
619
|
+
#if defined(BOOST_ASIO_HAS_VARIADIC_TEMPLATES)
|
620
|
+
|
621
|
+
template <typename Initiation, typename RawCompletionToken, typename... Args>
|
622
|
+
static BOOST_ASIO_INITFN_DEDUCED_RESULT_TYPE(T, Signature,
|
623
|
+
(async_result<T, Signature>::initiate(
|
624
|
+
declval<init_wrapper<typename decay<Initiation>::type> >(),
|
625
|
+
declval<T>(), declval<BOOST_ASIO_MOVE_ARG(Args)>()...)))
|
626
|
+
initiate(
|
627
|
+
BOOST_ASIO_MOVE_ARG(Initiation) initiation,
|
628
|
+
BOOST_ASIO_MOVE_ARG(RawCompletionToken) token,
|
629
|
+
BOOST_ASIO_MOVE_ARG(Args)... args)
|
630
|
+
{
|
631
|
+
return async_initiate<T, Signature>(
|
632
|
+
init_wrapper<typename decay<Initiation>::type>(
|
633
|
+
token.get_cancellation_slot(),
|
634
|
+
BOOST_ASIO_MOVE_CAST(Initiation)(initiation)),
|
635
|
+
token.get(), BOOST_ASIO_MOVE_CAST(Args)(args)...);
|
636
|
+
}
|
637
|
+
|
638
|
+
#else // defined(BOOST_ASIO_HAS_VARIADIC_TEMPLATES)
|
639
|
+
|
640
|
+
template <typename Initiation, typename RawCompletionToken>
|
641
|
+
static BOOST_ASIO_INITFN_DEDUCED_RESULT_TYPE(T, Signature,
|
642
|
+
(async_result<T, Signature>::initiate(
|
643
|
+
declval<init_wrapper<typename decay<Initiation>::type> >(),
|
644
|
+
declval<T>())))
|
645
|
+
initiate(
|
646
|
+
BOOST_ASIO_MOVE_ARG(Initiation) initiation,
|
647
|
+
BOOST_ASIO_MOVE_ARG(RawCompletionToken) token)
|
648
|
+
{
|
649
|
+
return async_initiate<T, Signature>(
|
650
|
+
init_wrapper<typename decay<Initiation>::type>(
|
651
|
+
token.get_cancellation_slot(),
|
652
|
+
BOOST_ASIO_MOVE_CAST(Initiation)(initiation)),
|
653
|
+
token.get());
|
654
|
+
}
|
655
|
+
|
656
|
+
#define BOOST_ASIO_PRIVATE_INITIATE_DEF(n) \
|
657
|
+
template <typename Initiation, typename RawCompletionToken, \
|
658
|
+
BOOST_ASIO_VARIADIC_TPARAMS(n)> \
|
659
|
+
static BOOST_ASIO_INITFN_DEDUCED_RESULT_TYPE(T, Signature, \
|
660
|
+
(async_result<T, Signature>::initiate( \
|
661
|
+
declval<init_wrapper<typename decay<Initiation>::type> >(), \
|
662
|
+
declval<T>(), BOOST_ASIO_VARIADIC_MOVE_DECLVAL(n)))) \
|
663
|
+
initiate( \
|
664
|
+
BOOST_ASIO_MOVE_ARG(Initiation) initiation, \
|
665
|
+
BOOST_ASIO_MOVE_ARG(RawCompletionToken) token, \
|
666
|
+
BOOST_ASIO_VARIADIC_MOVE_PARAMS(n)) \
|
667
|
+
{ \
|
668
|
+
return async_initiate<T, Signature>( \
|
669
|
+
init_wrapper<typename decay<Initiation>::type>( \
|
670
|
+
token.get_cancellation_slot(), \
|
671
|
+
BOOST_ASIO_MOVE_CAST(Initiation)(initiation)), \
|
672
|
+
token.get(), BOOST_ASIO_VARIADIC_MOVE_ARGS(n)); \
|
673
|
+
} \
|
674
|
+
/**/
|
675
|
+
BOOST_ASIO_VARIADIC_GENERATE(BOOST_ASIO_PRIVATE_INITIATE_DEF)
|
676
|
+
#undef BOOST_ASIO_PRIVATE_INITIATE_DEF
|
677
|
+
|
678
|
+
#endif // defined(BOOST_ASIO_HAS_VARIADIC_TEMPLATES)
|
679
|
+
|
680
|
+
private:
|
681
|
+
async_result(const async_result&) BOOST_ASIO_DELETED;
|
682
|
+
async_result& operator=(const async_result&) BOOST_ASIO_DELETED;
|
683
|
+
|
684
|
+
async_result<T, Signature> target_;
|
685
|
+
};
|
686
|
+
|
687
|
+
template <template <typename, typename> class Associator,
|
688
|
+
typename T, typename CancellationSlot, typename DefaultCandidate>
|
689
|
+
struct associator<Associator,
|
690
|
+
cancellation_slot_binder<T, CancellationSlot>,
|
691
|
+
DefaultCandidate>
|
692
|
+
{
|
693
|
+
typedef typename Associator<T, DefaultCandidate>::type type;
|
694
|
+
|
695
|
+
static type get(const cancellation_slot_binder<T, CancellationSlot>& b,
|
696
|
+
const DefaultCandidate& c = DefaultCandidate()) BOOST_ASIO_NOEXCEPT
|
697
|
+
{
|
698
|
+
return Associator<T, DefaultCandidate>::get(b.get(), c);
|
699
|
+
}
|
700
|
+
};
|
701
|
+
|
702
|
+
template <typename T, typename CancellationSlot, typename CancellationSlot1>
|
703
|
+
struct associated_cancellation_slot<
|
704
|
+
cancellation_slot_binder<T, CancellationSlot>,
|
705
|
+
CancellationSlot1>
|
706
|
+
{
|
707
|
+
typedef CancellationSlot type;
|
708
|
+
|
709
|
+
static type get(const cancellation_slot_binder<T, CancellationSlot>& b,
|
710
|
+
const CancellationSlot1& = CancellationSlot1()) BOOST_ASIO_NOEXCEPT
|
711
|
+
{
|
712
|
+
return b.get_cancellation_slot();
|
713
|
+
}
|
714
|
+
};
|
715
|
+
|
716
|
+
#endif // !defined(GENERATING_DOCUMENTATION)
|
717
|
+
|
718
|
+
} // namespace asio
|
719
|
+
} // namespace boost
|
720
|
+
|
721
|
+
#include <boost/asio/detail/pop_options.hpp>
|
722
|
+
|
723
|
+
#endif // BOOST_ASIO_BIND_CANCELLATION_SLOT_HPP
|