passenger 6.0.26 → 6.0.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG +28 -1
- data/CONTRIBUTING.md +2 -2
- data/build/agent.rb +0 -2
- data/build/basics.rb +2 -0
- data/build/common_library.rb +0 -6
- data/build/misc.rb +0 -2
- data/build/schema_printer.rb +0 -2
- data/build/support/cxx_dependency_map.rb +57 -254
- data/dev/copy_boost_headers +3 -14
- data/dev/index_cxx_dependencies.rb +1 -1
- data/doc/AiInstructions.md +112 -0
- data/doc/CxxMockingStrategy.md +42 -0
- data/doc/CxxTestingGuide.md +110 -0
- data/doc/DesignAspects/LimitedGemDependencies.md +22 -14
- data/doc/TempFileHandling.md +15 -0
- data/passenger.gemspec +1 -1
- data/resources/templates/standalone/server.erb +1 -0
- data/src/agent/Core/ApiServer.h +0 -1
- data/src/agent/Core/ApplicationPool/AbstractSession.h +10 -1
- data/src/agent/Core/ApplicationPool/Group/ProcessListManagement.cpp +1 -1
- data/src/agent/Core/ApplicationPool/Group/SessionManagement.cpp +33 -18
- data/src/agent/Core/ApplicationPool/Group.h +0 -1
- data/src/agent/Core/ApplicationPool/Implementation.cpp +0 -3
- data/src/agent/Core/ApplicationPool/Session.h +14 -19
- data/src/agent/Core/ApplicationPool/Socket.h +15 -5
- data/src/agent/Core/ApplicationPool/TestSession.h +74 -15
- data/src/agent/Core/Config.h +2 -34
- data/src/agent/Core/ConfigChange.cpp +1 -41
- data/src/agent/Core/Controller/CheckoutSession.cpp +100 -14
- data/src/agent/Core/Controller/Client.h +0 -1
- data/src/agent/Core/Controller/Config.h +1 -1
- data/src/agent/Core/Controller/Hooks.cpp +13 -0
- data/src/agent/Core/Controller/InitRequest.cpp +2 -0
- data/src/agent/Core/Controller/InternalUtils.cpp +12 -0
- data/src/agent/Core/Controller/Request.h +3 -2
- data/src/agent/Core/Controller.h +12 -13
- data/src/agent/Core/CoreMain.cpp +1 -56
- data/src/agent/Core/OptionParser.h +1 -7
- data/src/agent/Core/SecurityUpdateChecker.h +0 -1
- data/src/agent/Watchdog/Config.h +2 -21
- data/src/agent/Watchdog/WatchdogMain.cpp +0 -2
- data/src/apache2_module/ConfigGeneral/AutoGeneratedDefinitions.cpp +0 -20
- data/src/apache2_module/ConfigGeneral/AutoGeneratedSetterFuncs.cpp +0 -60
- data/src/apache2_module/Hooks.cpp +0 -4
- data/src/apache2_module/ServerConfig/AutoGeneratedManifestGeneration.cpp +0 -44
- data/src/apache2_module/ServerConfig/AutoGeneratedStruct.h +0 -52
- data/src/cxx_supportlib/Algorithms/Hasher.cpp +1 -1
- data/src/cxx_supportlib/Algorithms/Hasher.h +4 -7
- data/src/cxx_supportlib/Algorithms/MovingAverage.h +1 -160
- data/src/cxx_supportlib/Constants.h +2 -1
- data/src/cxx_supportlib/DataStructures/StringMap.h +2 -3
- data/src/cxx_supportlib/FileTools/FileManip.h +2 -0
- data/src/cxx_supportlib/Hooks.h +0 -1
- data/src/cxx_supportlib/IOTools/IOUtils.cpp +49 -60
- data/src/cxx_supportlib/IOTools/IOUtils.h +65 -73
- data/src/cxx_supportlib/ServerKit/AcceptLoadBalancer.h +2 -0
- data/src/cxx_supportlib/ServerKit/HttpHeaderParser.h +8 -6
- data/src/cxx_supportlib/StrIntTools/StrIntUtils.h +2 -2
- data/src/cxx_supportlib/SystemTools/SystemMetricsCollector.h +0 -2
- data/src/cxx_supportlib/Utils/FastStringStream.h +7 -7
- data/src/cxx_supportlib/Utils/IniFile.h +24 -25
- data/src/cxx_supportlib/Utils.h +0 -30
- data/src/cxx_supportlib/oxt/detail/tracable_exception_disabled.hpp +4 -0
- data/src/cxx_supportlib/oxt/detail/tracable_exception_enabled.hpp +1 -0
- data/src/cxx_supportlib/oxt/implementation.cpp +41 -2
- data/src/cxx_supportlib/oxt/system_calls.cpp +1 -0
- data/src/cxx_supportlib/oxt/system_calls.hpp +3 -4
- data/src/cxx_supportlib/vendor-modified/boost/container/allocator.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/container/deque.hpp +5 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/config_begin.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/container_or_allocator_rebind.hpp +1 -2
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/container_rebind.hpp +23 -13
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/flat_tree.hpp +72 -49
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/function_detector.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/is_contiguous_container.hpp +15 -11
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/tree.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/devector.hpp +36 -9
- data/src/cxx_supportlib/vendor-modified/boost/container/flat_map.hpp +9 -2
- data/src/cxx_supportlib/vendor-modified/boost/container/list.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/options.hpp +21 -17
- data/src/cxx_supportlib/vendor-modified/boost/container/slist.hpp +5 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/small_vector.hpp +10 -6
- data/src/cxx_supportlib/vendor-modified/boost/container/stable_vector.hpp +8 -3
- data/src/cxx_supportlib/vendor-modified/boost/container/static_vector.hpp +21 -3
- data/src/cxx_supportlib/vendor-modified/boost/container/string.hpp +5 -15
- data/src/cxx_supportlib/vendor-modified/boost/container/vector.hpp +73 -14
- data/src/cxx_supportlib/vendor-modified/boost/detail/basic_pointerbuf.hpp +1 -2
- data/src/cxx_supportlib/vendor-modified/boost/detail/lcast_precision.hpp +18 -29
- data/src/cxx_supportlib/vendor-modified/boost/function/function_template.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/integer/common_factor_rt.hpp +6 -10
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/avl_set.hpp +8 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/avltree.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/bs_set.hpp +8 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/bstree.hpp +12 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/function_detector.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/parent_from_member.hpp +5 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/workaround.hpp +10 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/list.hpp +5 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/rbtree.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/set.hpp +8 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/sg_set.hpp +8 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/sgtree.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/slist.hpp +5 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/splay_set.hpp +8 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/splaytree.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/treap.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/treap_set.hpp +8 -0
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/converter_lexical_streams.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/inf_nan.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/lcast_unsigned_converters.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/move/adl_move_swap.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/core.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/meta_utils.hpp +1 -20
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/meta_utils_core.hpp +15 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/nsec_clock.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/placement_new.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/std_ns_begin.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/std_ns_end.hpp +3 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_count.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/mp11/version.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/none.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/none_t.hpp +10 -4
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/experimental_traits.hpp +4 -49
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_aligned_storage.hpp +2 -3
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_config.hpp +13 -4
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_reference_spec.hpp +47 -46
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_relops.hpp +11 -11
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_swap.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_trivially_copyable_base.hpp +12 -252
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_utility.hpp +41 -0
- data/src/cxx_supportlib/vendor-modified/boost/optional/optional.hpp +101 -592
- data/src/cxx_supportlib/vendor-modified/boost/optional/optional_io.hpp +1 -5
- data/src/cxx_supportlib/vendor-modified/boost/pointer_cast.hpp +12 -24
- data/src/cxx_supportlib/vendor-modified/boost/random/beta_distribution.hpp +5 -5
- data/src/cxx_supportlib/vendor-modified/boost/random/hyperexponential_distribution.hpp +15 -15
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/allocate_shared_array.hpp +37 -44
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/bad_weak_ptr.hpp +1 -23
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/atomic_count.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/deprecated_macros.hpp +52 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/local_counted_base.hpp +14 -18
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/local_sp_deleter.hpp +7 -15
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/shared_count.hpp +39 -90
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_convertible.hpp +0 -16
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_nt.hpp +13 -14
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_std_atomic.hpp +16 -17
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_impl.hpp +16 -55
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_noexcept.hpp +5 -14
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_type_traits.hpp +55 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/spinlock.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/spinlock_std_atomic.hpp +5 -6
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/enable_shared_from_this.hpp +7 -10
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/intrusive_ptr.hpp +32 -110
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/intrusive_ref_counter.hpp +17 -18
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/make_shared.hpp +2 -6
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/make_shared_array.hpp +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/make_shared_object.hpp +28 -565
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/make_unique.hpp +11 -17
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/scoped_array.hpp +17 -21
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/scoped_ptr.hpp +20 -22
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/shared_array.hpp +34 -68
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/shared_ptr.hpp +78 -356
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/weak_ptr.hpp +31 -89
- data/src/cxx_supportlib/vendor-modified/boost/unordered/concurrent_flat_map.hpp +195 -12
- data/src/cxx_supportlib/vendor-modified/boost/unordered/concurrent_flat_set.hpp +206 -17
- data/src/cxx_supportlib/vendor-modified/boost/unordered/concurrent_node_map.hpp +1202 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/concurrent_node_map_fwd.hpp +67 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/concurrent_node_set.hpp +1065 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/concurrent_node_set_fwd.hpp +67 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/concurrent_static_asserts.hpp +30 -8
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/concurrent_table.hpp +248 -47
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/core.hpp +24 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/flat_map_types.hpp +10 -2
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/flat_set_types.hpp +8 -2
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/node_handle.hpp +120 -5
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/node_map_handle.hpp +56 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/node_map_types.hpp +15 -4
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/node_set_handle.hpp +48 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/node_set_types.hpp +13 -4
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/tuple_rotate_right.hpp +11 -10
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/types_constructibility.hpp +172 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/implementation.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/map.hpp +0 -17
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/set.hpp +0 -17
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/type_traits.hpp +11 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_flat_map.hpp +9 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_flat_set.hpp +9 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_map.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_node_map.hpp +32 -44
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_node_set.hpp +31 -35
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_printers.hpp +414 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_set.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/version.hpp +2 -2
- data/src/nginx_module/ConfigGeneral/AutoGeneratedDefinitions.c +8 -32
- data/src/nginx_module/ConfigGeneral/AutoGeneratedManifestDefaultsInitialization.c +6 -0
- data/src/nginx_module/ConfigGeneral/AutoGeneratedSetterFuncs.c +12 -48
- 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/nginx_module/MainConfig/AutoGeneratedCreateFunction.c +0 -24
- data/src/nginx_module/MainConfig/AutoGeneratedManifestGeneration.c +0 -48
- data/src/nginx_module/MainConfig/AutoGeneratedStruct.h +0 -16
- data/src/nginx_module/ngx_http_passenger_module.c +0 -4
- data/src/ruby_native_extension/passenger_native_support.c +19 -3
- data/src/ruby_supportlib/phusion_passenger/apache2/config_options.rb +8 -24
- data/src/ruby_supportlib/phusion_passenger/common_library.rb +0 -3
- data/src/ruby_supportlib/phusion_passenger/constants.rb +1 -0
- data/src/ruby_supportlib/phusion_passenger/nginx/config_options.rb +6 -28
- data/src/ruby_supportlib/phusion_passenger/platform_info/compiler.rb +9 -8
- data/src/ruby_supportlib/phusion_passenger/platform_info/cxx_portability.rb +2 -27
- data/src/ruby_supportlib/phusion_passenger/platform_info/operating_system.rb +0 -30
- data/src/ruby_supportlib/phusion_passenger/standalone/config_options_list.rb +8 -20
- data/src/ruby_supportlib/phusion_passenger.rb +7 -7
- data/src/schema_printer/SchemaPrinterMain.cpp +0 -4
- metadata +19 -670
- data/dev/websocketpp.patch +0 -39
- data/src/agent/Core/AdminPanelConnector.h +0 -680
- data/src/cxx_supportlib/DataStructures/HashMap.h +0 -60
- data/src/cxx_supportlib/FileTools/LargeFiles.cpp +0 -41
- data/src/cxx_supportlib/FileTools/LargeFiles.h +0 -43
- data/src/cxx_supportlib/WebSocketCommandReverseServer.h +0 -975
- data/src/cxx_supportlib/vendor-modified/boost/asio/any_completion_executor.hpp +0 -338
- data/src/cxx_supportlib/vendor-modified/boost/asio/any_completion_handler.hpp +0 -824
- data/src/cxx_supportlib/vendor-modified/boost/asio/any_io_executor.hpp +0 -353
- data/src/cxx_supportlib/vendor-modified/boost/asio/append.hpp +0 -67
- data/src/cxx_supportlib/vendor-modified/boost/asio/as_tuple.hpp +0 -154
- data/src/cxx_supportlib/vendor-modified/boost/asio/associated_allocator.hpp +0 -216
- data/src/cxx_supportlib/vendor-modified/boost/asio/associated_cancellation_slot.hpp +0 -223
- data/src/cxx_supportlib/vendor-modified/boost/asio/associated_executor.hpp +0 -237
- data/src/cxx_supportlib/vendor-modified/boost/asio/associated_immediate_executor.hpp +0 -283
- data/src/cxx_supportlib/vendor-modified/boost/asio/associator.hpp +0 -37
- data/src/cxx_supportlib/vendor-modified/boost/asio/async_result.hpp +0 -950
- data/src/cxx_supportlib/vendor-modified/boost/asio/awaitable.hpp +0 -144
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_datagram_socket.hpp +0 -1364
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_deadline_timer.hpp +0 -712
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_file.hpp +0 -826
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_io_object.hpp +0 -288
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_random_access_file.hpp +0 -691
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_raw_socket.hpp +0 -1358
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_readable_pipe.hpp +0 -628
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_seq_packet_socket.hpp +0 -825
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_serial_port.hpp +0 -989
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_signal_set.hpp +0 -650
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket.hpp +0 -1938
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket_acceptor.hpp +0 -2710
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket_iostream.hpp +0 -333
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket_streambuf.hpp +0 -644
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_stream_file.hpp +0 -746
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_stream_socket.hpp +0 -1165
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_streambuf.hpp +0 -452
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_streambuf_fwd.hpp +0 -38
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_waitable_timer.hpp +0 -826
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_writable_pipe.hpp +0 -624
- data/src/cxx_supportlib/vendor-modified/boost/asio/bind_allocator.hpp +0 -598
- data/src/cxx_supportlib/vendor-modified/boost/asio/bind_cancellation_slot.hpp +0 -615
- data/src/cxx_supportlib/vendor-modified/boost/asio/bind_executor.hpp +0 -666
- data/src/cxx_supportlib/vendor-modified/boost/asio/bind_immediate_executor.hpp +0 -618
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffer.hpp +0 -2755
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffer_registration.hpp +0 -320
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_read_stream.hpp +0 -275
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_read_stream_fwd.hpp +0 -27
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_stream.hpp +0 -294
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_stream_fwd.hpp +0 -27
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_write_stream.hpp +0 -267
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_write_stream_fwd.hpp +0 -27
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffers_iterator.hpp +0 -523
- data/src/cxx_supportlib/vendor-modified/boost/asio/cancel_after.hpp +0 -303
- data/src/cxx_supportlib/vendor-modified/boost/asio/cancel_at.hpp +0 -296
- data/src/cxx_supportlib/vendor-modified/boost/asio/cancellation_signal.hpp +0 -247
- data/src/cxx_supportlib/vendor-modified/boost/asio/cancellation_state.hpp +0 -237
- data/src/cxx_supportlib/vendor-modified/boost/asio/cancellation_type.hpp +0 -159
- data/src/cxx_supportlib/vendor-modified/boost/asio/co_composed.hpp +0 -1323
- data/src/cxx_supportlib/vendor-modified/boost/asio/co_spawn.hpp +0 -525
- data/src/cxx_supportlib/vendor-modified/boost/asio/completion_condition.hpp +0 -269
- data/src/cxx_supportlib/vendor-modified/boost/asio/compose.hpp +0 -130
- data/src/cxx_supportlib/vendor-modified/boost/asio/composed.hpp +0 -415
- data/src/cxx_supportlib/vendor-modified/boost/asio/connect.hpp +0 -1348
- data/src/cxx_supportlib/vendor-modified/boost/asio/connect_pipe.hpp +0 -85
- data/src/cxx_supportlib/vendor-modified/boost/asio/consign.hpp +0 -77
- data/src/cxx_supportlib/vendor-modified/boost/asio/coroutine.hpp +0 -330
- data/src/cxx_supportlib/vendor-modified/boost/asio/deadline_timer.hpp +0 -40
- data/src/cxx_supportlib/vendor-modified/boost/asio/default_completion_token.hpp +0 -91
- data/src/cxx_supportlib/vendor-modified/boost/asio/defer.hpp +0 -220
- data/src/cxx_supportlib/vendor-modified/boost/asio/deferred.hpp +0 -721
- data/src/cxx_supportlib/vendor-modified/boost/asio/detached.hpp +0 -107
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/array.hpp +0 -32
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/array_fwd.hpp +0 -32
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/assert.hpp +0 -32
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/atomic_count.hpp +0 -61
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/base_from_cancellation_state.hpp +0 -166
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/base_from_completion_cond.hpp +0 -71
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/bind_handler.hpp +0 -713
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/blocking_executor_op.hpp +0 -109
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/buffer_resize_guard.hpp +0 -68
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/buffer_sequence_adapter.hpp +0 -839
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/buffered_stream_storage.hpp +0 -128
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/call_stack.hpp +0 -127
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/chrono.hpp +0 -47
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/chrono_time_traits.hpp +0 -192
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/completion_handler.hpp +0 -90
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/completion_message.hpp +0 -129
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/completion_payload.hpp +0 -222
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/completion_payload_handler.hpp +0 -81
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/composed_work.hpp +0 -254
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/concurrency_hint.hpp +0 -94
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/conditionally_enabled_event.hpp +0 -122
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/conditionally_enabled_mutex.hpp +0 -151
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/config.hpp +0 -1413
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/consuming_buffers.hpp +0 -445
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/cstddef.hpp +0 -29
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/cstdint.hpp +0 -42
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/date_time_fwd.hpp +0 -34
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/deadline_timer_service.hpp +0 -341
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/dependent_type.hpp +0 -38
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/descriptor_ops.hpp +0 -181
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/descriptor_read_op.hpp +0 -190
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/descriptor_write_op.hpp +0 -189
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/dev_poll_reactor.hpp +0 -249
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/epoll_reactor.hpp +0 -297
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/event.hpp +0 -48
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/eventfd_select_interrupter.hpp +0 -85
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/exception.hpp +0 -31
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/executor_function.hpp +0 -154
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/executor_op.hpp +0 -86
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/fd_set_adapter.hpp +0 -41
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/fenced_block.hpp +0 -42
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/functional.hpp +0 -35
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/future.hpp +0 -32
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/global.hpp +0 -52
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_alloc_helpers.hpp +0 -123
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_cont_helpers.hpp +0 -45
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_tracking.hpp +0 -268
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_type_requirements.hpp +0 -555
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_work.hpp +0 -513
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/hash_map.hpp +0 -333
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/buffer_sequence_adapter.ipp +0 -120
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/descriptor_ops.ipp +0 -996
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/dev_poll_reactor.hpp +0 -113
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/dev_poll_reactor.ipp +0 -471
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/epoll_reactor.hpp +0 -111
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/epoll_reactor.ipp +0 -828
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/eventfd_select_interrupter.ipp +0 -173
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/handler_tracking.ipp +0 -400
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/io_uring_descriptor_service.ipp +0 -207
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/io_uring_file_service.ipp +0 -142
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/io_uring_service.hpp +0 -114
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/io_uring_service.ipp +0 -916
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/io_uring_socket_service_base.ipp +0 -251
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/kqueue_reactor.hpp +0 -115
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/kqueue_reactor.ipp +0 -610
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/null_event.ipp +0 -76
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/pipe_select_interrupter.ipp +0 -131
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/posix_event.ipp +0 -65
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/posix_mutex.ipp +0 -48
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/posix_serial_port_service.ipp +0 -170
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/posix_thread.ipp +0 -86
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/posix_tss_ptr.ipp +0 -48
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/reactive_descriptor_service.ipp +0 -234
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/reactive_socket_service_base.ipp +0 -314
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/resolver_service_base.ipp +0 -160
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/scheduler.ipp +0 -677
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/select_reactor.hpp +0 -126
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/select_reactor.ipp +0 -402
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/service_registry.hpp +0 -95
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/service_registry.ipp +0 -199
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/signal_set_service.ipp +0 -828
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/socket_ops.ipp +0 -4046
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/socket_select_interrupter.ipp +0 -187
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/strand_executor_service.hpp +0 -348
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/strand_executor_service.ipp +0 -160
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/strand_service.hpp +0 -88
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/strand_service.ipp +0 -204
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/thread_context.ipp +0 -37
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/throw_error.ipp +0 -51
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/timer_queue_ptime.ipp +0 -99
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/timer_queue_set.ipp +0 -103
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/initiate_defer.hpp +0 -209
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/initiate_dispatch.hpp +0 -195
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/initiate_post.hpp +0 -209
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/initiation_base.hpp +0 -64
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_control.hpp +0 -86
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_object_impl.hpp +0 -179
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_descriptor_read_at_op.hpp +0 -197
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_descriptor_read_op.hpp +0 -192
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_descriptor_service.hpp +0 -689
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_descriptor_write_at_op.hpp +0 -191
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_descriptor_write_op.hpp +0 -187
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_file_service.hpp +0 -263
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_null_buffers_op.hpp +0 -116
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_operation.hpp +0 -86
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_service.hpp +0 -321
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_accept_op.hpp +0 -282
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_connect_op.hpp +0 -142
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_recv_op.hpp +0 -207
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_recvfrom_op.hpp +0 -208
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_recvmsg_op.hpp +0 -194
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_send_op.hpp +0 -193
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_sendto_op.hpp +0 -196
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_service.hpp +0 -631
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_service_base.hpp +0 -665
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_wait_op.hpp +0 -114
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/is_buffer_sequence.hpp +0 -298
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/is_executor.hpp +0 -128
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/keyword_tss_ptr.hpp +0 -72
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/kqueue_reactor.hpp +0 -273
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/limits.hpp +0 -21
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/local_free_on_block_exit.hpp +0 -61
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/memory.hpp +0 -128
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/mutex.hpp +0 -48
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/non_const_lvalue.hpp +0 -45
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/noncopyable.hpp +0 -45
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_event.hpp +0 -108
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_fenced_block.hpp +0 -49
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_global.hpp +0 -61
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_mutex.hpp +0 -62
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_reactor.hpp +0 -85
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_signal_blocker.hpp +0 -71
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_socket_service.hpp +0 -521
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_static_mutex.hpp +0 -62
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_thread.hpp +0 -69
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_tss_ptr.hpp +0 -70
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/object_pool.hpp +0 -173
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/op_queue.hpp +0 -164
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/operation.hpp +0 -40
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/pipe_select_interrupter.hpp +0 -91
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/pop_options.hpp +0 -157
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_event.hpp +0 -177
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_fd_set_adapter.hpp +0 -120
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_global.hpp +0 -82
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_mutex.hpp +0 -78
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_serial_port_service.hpp +0 -251
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_signal_blocker.hpp +0 -87
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_static_mutex.hpp +0 -66
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_thread.hpp +0 -111
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_tss_ptr.hpp +0 -81
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/push_options.hpp +0 -228
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_descriptor_service.hpp +0 -572
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_null_buffers_op.hpp +0 -133
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_accept_op.hpp +0 -325
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_connect_op.hpp +0 -164
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_recv_op.hpp +0 -199
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_recvfrom_op.hpp +0 -205
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_recvmsg_op.hpp +0 -186
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_send_op.hpp +0 -202
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_sendto_op.hpp +0 -196
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_service.hpp +0 -635
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_service_base.hpp +0 -757
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_wait_op.hpp +0 -133
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor.hpp +0 -56
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor_op.hpp +0 -73
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor_op_queue.hpp +0 -214
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/recycling_allocator.hpp +0 -116
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/regex_fwd.hpp +0 -35
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolve_endpoint_op.hpp +0 -142
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolve_op.hpp +0 -47
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolve_query_op.hpp +0 -152
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolver_service.hpp +0 -149
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolver_service_base.hpp +0 -160
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scheduler.hpp +0 -243
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scheduler_operation.hpp +0 -80
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scheduler_task.hpp +0 -51
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scheduler_thread_info.hpp +0 -42
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scoped_lock.hpp +0 -103
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scoped_ptr.hpp +0 -89
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/select_interrupter.hpp +0 -48
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/select_reactor.hpp +0 -293
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/service_registry.hpp +0 -165
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_blocker.hpp +0 -46
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_handler.hpp +0 -92
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_init.hpp +0 -49
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_op.hpp +0 -55
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_set_service.hpp +0 -294
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_holder.hpp +0 -100
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_ops.hpp +0 -377
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_option.hpp +0 -318
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_select_interrupter.hpp +0 -93
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_types.hpp +0 -429
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/source_location.hpp +0 -47
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/static_mutex.hpp +0 -52
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_event.hpp +0 -185
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_fenced_block.hpp +0 -59
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_global.hpp +0 -67
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_mutex.hpp +0 -70
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_static_mutex.hpp +0 -78
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_thread.hpp +0 -68
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/strand_executor_service.hpp +0 -175
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/strand_service.hpp +0 -146
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/string_view.hpp +0 -49
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/thread.hpp +0 -60
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/thread_context.hpp +0 -53
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/thread_group.hpp +0 -101
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/thread_info_base.hpp +0 -262
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/throw_error.hpp +0 -64
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/throw_exception.hpp +0 -57
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timed_cancel_op.hpp +0 -363
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue.hpp +0 -391
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue_base.hpp +0 -70
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue_ptime.hpp +0 -105
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue_set.hpp +0 -68
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_scheduler.hpp +0 -37
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_scheduler_fwd.hpp +0 -44
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/tss_ptr.hpp +0 -71
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/type_traits.hpp +0 -180
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/utility.hpp +0 -85
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/wait_handler.hpp +0 -92
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/wait_op.hpp +0 -51
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/winsock_init.hpp +0 -130
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/work_dispatcher.hpp +0 -145
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/wrapped_handler.hpp +0 -197
- data/src/cxx_supportlib/vendor-modified/boost/asio/dispatch.hpp +0 -199
- data/src/cxx_supportlib/vendor-modified/boost/asio/error.hpp +0 -390
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/allocator.hpp +0 -280
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/any_executor.hpp +0 -1935
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/bad_executor.hpp +0 -48
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/blocking.hpp +0 -1362
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/blocking_adaptation.hpp +0 -1082
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/context.hpp +0 -193
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/context_as.hpp +0 -192
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/executor.hpp +0 -118
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/impl/bad_executor.ipp +0 -42
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/invocable_archetype.hpp +0 -45
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/mapping.hpp +0 -1004
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/occupancy.hpp +0 -186
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/outstanding_work.hpp +0 -755
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/prefer_only.hpp +0 -330
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/relationship.hpp +0 -753
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution.hpp +0 -33
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution_context.hpp +0 -390
- data/src/cxx_supportlib/vendor-modified/boost/asio/executor.hpp +0 -365
- data/src/cxx_supportlib/vendor-modified/boost/asio/executor_work_guard.hpp +0 -364
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/append.hpp +0 -38
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/as_single.hpp +0 -134
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/as_tuple.hpp +0 -38
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/awaitable_operators.hpp +0 -538
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/basic_channel.hpp +0 -516
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/basic_concurrent_channel.hpp +0 -516
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/cancellation_condition.hpp +0 -154
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/channel.hpp +0 -72
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/channel_error.hpp +0 -88
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/channel_traits.hpp +0 -303
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/co_composed.hpp +0 -35
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/co_spawn.hpp +0 -189
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/concurrent_channel.hpp +0 -72
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/coro.hpp +0 -295
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/coro_traits.hpp +0 -230
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/deferred.hpp +0 -38
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_operation.hpp +0 -363
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_receive_op.hpp +0 -128
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_send_functions.hpp +0 -202
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_send_op.hpp +0 -149
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_service.hpp +0 -681
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/coro_completion_handler.hpp +0 -171
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/coro_promise_allocator.hpp +0 -142
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/has_signature.hpp +0 -56
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/impl/channel_service.hpp +0 -625
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/partial_promise.hpp +0 -199
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/as_single.hpp +0 -183
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/channel_error.ipp +0 -63
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/coro.hpp +0 -1224
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/parallel_group.hpp +0 -790
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/promise.hpp +0 -257
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/use_coro.hpp +0 -216
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/use_promise.hpp +0 -68
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/parallel_group.hpp +0 -457
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/prepend.hpp +0 -38
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/promise.hpp +0 -226
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/use_coro.hpp +0 -191
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/use_promise.hpp +0 -113
- data/src/cxx_supportlib/vendor-modified/boost/asio/file_base.hpp +0 -168
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/basic_endpoint.hpp +0 -191
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/datagram_protocol.hpp +0 -125
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/detail/endpoint.hpp +0 -135
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/detail/impl/endpoint.ipp +0 -112
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/raw_protocol.hpp +0 -123
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/seq_packet_protocol.hpp +0 -124
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/stream_protocol.hpp +0 -129
- data/src/cxx_supportlib/vendor-modified/boost/asio/handler_continuation_hook.hpp +0 -56
- data/src/cxx_supportlib/vendor-modified/boost/asio/high_resolution_timer.hpp +0 -41
- data/src/cxx_supportlib/vendor-modified/boost/asio/immediate.hpp +0 -144
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/any_completion_executor.ipp +0 -128
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/any_io_executor.ipp +0 -136
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/append.hpp +0 -171
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/as_tuple.hpp +0 -278
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/awaitable.hpp +0 -1198
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/buffered_read_stream.hpp +0 -406
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/buffered_write_stream.hpp +0 -386
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/cancel_after.hpp +0 -270
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/cancel_at.hpp +0 -270
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/cancellation_signal.ipp +0 -98
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/co_spawn.hpp +0 -459
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/connect.hpp +0 -705
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/connect_pipe.hpp +0 -75
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/connect_pipe.ipp +0 -151
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/consign.hpp +0 -146
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/deferred.hpp +0 -149
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/detached.hpp +0 -79
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/error.ipp +0 -130
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/execution_context.hpp +0 -79
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/execution_context.ipp +0 -84
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/executor.hpp +0 -319
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/executor.ipp +0 -45
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/io_context.hpp +0 -435
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/io_context.ipp +0 -178
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/multiple_exceptions.ipp +0 -47
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/prepend.hpp +0 -172
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read.hpp +0 -904
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read_at.hpp +0 -564
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read_until.hpp +0 -2670
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/redirect_error.hpp +0 -289
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/serial_port_base.hpp +0 -61
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/serial_port_base.ipp +0 -556
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/spawn.hpp +0 -1402
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/src.hpp +0 -93
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/system_context.hpp +0 -36
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/system_context.ipp +0 -94
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/system_executor.hpp +0 -181
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/thread_pool.hpp +0 -279
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/thread_pool.ipp +0 -144
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/use_awaitable.hpp +0 -303
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/use_future.hpp +0 -709
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/write.hpp +0 -782
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/write_at.hpp +0 -482
- data/src/cxx_supportlib/vendor-modified/boost/asio/io_context.hpp +0 -1507
- data/src/cxx_supportlib/vendor-modified/boost/asio/io_context_strand.hpp +0 -398
- data/src/cxx_supportlib/vendor-modified/boost/asio/io_service.hpp +0 -35
- data/src/cxx_supportlib/vendor-modified/boost/asio/io_service_strand.hpp +0 -20
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address.hpp +0 -283
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v4.hpp +0 -423
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v4_iterator.hpp +0 -158
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v4_range.hpp +0 -130
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v6.hpp +0 -409
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v6_iterator.hpp +0 -180
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v6_range.hpp +0 -126
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/bad_address_cast.hpp +0 -65
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_endpoint.hpp +0 -284
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver.hpp +0 -1114
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver_entry.hpp +0 -115
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver_iterator.hpp +0 -190
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver_query.hpp +0 -262
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver_results.hpp +0 -309
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/detail/endpoint.hpp +0 -143
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/detail/impl/endpoint.ipp +0 -197
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/detail/socket_option.hpp +0 -568
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/host_name.hpp +0 -44
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/icmp.hpp +0 -117
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address.hpp +0 -69
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address.ipp +0 -237
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address_v4.hpp +0 -69
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address_v4.ipp +0 -208
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address_v6.hpp +0 -69
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address_v6.ipp +0 -344
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/basic_endpoint.hpp +0 -45
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/host_name.ipp +0 -56
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/network_v4.hpp +0 -56
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/network_v4.ipp +0 -220
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/network_v6.hpp +0 -55
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/network_v6.ipp +0 -189
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/multicast.hpp +0 -193
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/network_v4.hpp +0 -259
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/network_v6.hpp +0 -233
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/resolver_base.hpp +0 -131
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/resolver_query_base.hpp +0 -45
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/tcp.hpp +0 -157
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/udp.hpp +0 -113
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/unicast.hpp +0 -72
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/v6_only.hpp +0 -71
- data/src/cxx_supportlib/vendor-modified/boost/asio/is_applicable_property.hpp +0 -63
- data/src/cxx_supportlib/vendor-modified/boost/asio/is_contiguous_iterator.hpp +0 -47
- data/src/cxx_supportlib/vendor-modified/boost/asio/is_executor.hpp +0 -48
- data/src/cxx_supportlib/vendor-modified/boost/asio/is_read_buffered.hpp +0 -61
- data/src/cxx_supportlib/vendor-modified/boost/asio/is_write_buffered.hpp +0 -61
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/basic_endpoint.hpp +0 -245
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/connect_pair.hpp +0 -103
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/datagram_protocol.hpp +0 -82
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/detail/endpoint.hpp +0 -141
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/detail/impl/endpoint.ipp +0 -133
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/seq_packet_protocol.hpp +0 -86
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/stream_protocol.hpp +0 -92
- data/src/cxx_supportlib/vendor-modified/boost/asio/multiple_exceptions.hpp +0 -54
- data/src/cxx_supportlib/vendor-modified/boost/asio/packaged_task.hpp +0 -68
- data/src/cxx_supportlib/vendor-modified/boost/asio/placeholders.hpp +0 -83
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/basic_descriptor.hpp +0 -775
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/basic_stream_descriptor.hpp +0 -561
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/descriptor.hpp +0 -39
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/descriptor_base.hpp +0 -92
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/stream_descriptor.hpp +0 -39
- data/src/cxx_supportlib/vendor-modified/boost/asio/post.hpp +0 -215
- data/src/cxx_supportlib/vendor-modified/boost/asio/prefer.hpp +0 -581
- data/src/cxx_supportlib/vendor-modified/boost/asio/prepend.hpp +0 -68
- data/src/cxx_supportlib/vendor-modified/boost/asio/query.hpp +0 -315
- data/src/cxx_supportlib/vendor-modified/boost/asio/random_access_file.hpp +0 -37
- data/src/cxx_supportlib/vendor-modified/boost/asio/read.hpp +0 -1549
- data/src/cxx_supportlib/vendor-modified/boost/asio/read_at.hpp +0 -830
- data/src/cxx_supportlib/vendor-modified/boost/asio/read_until.hpp +0 -3204
- data/src/cxx_supportlib/vendor-modified/boost/asio/readable_pipe.hpp +0 -37
- data/src/cxx_supportlib/vendor-modified/boost/asio/recycling_allocator.hpp +0 -140
- data/src/cxx_supportlib/vendor-modified/boost/asio/redirect_error.hpp +0 -106
- data/src/cxx_supportlib/vendor-modified/boost/asio/registered_buffer.hpp +0 -346
- data/src/cxx_supportlib/vendor-modified/boost/asio/require.hpp +0 -437
- data/src/cxx_supportlib/vendor-modified/boost/asio/require_concept.hpp +0 -347
- data/src/cxx_supportlib/vendor-modified/boost/asio/serial_port.hpp +0 -38
- data/src/cxx_supportlib/vendor-modified/boost/asio/serial_port_base.hpp +0 -169
- data/src/cxx_supportlib/vendor-modified/boost/asio/signal_set.hpp +0 -30
- data/src/cxx_supportlib/vendor-modified/boost/asio/signal_set_base.hpp +0 -173
- data/src/cxx_supportlib/vendor-modified/boost/asio/socket_base.hpp +0 -561
- data/src/cxx_supportlib/vendor-modified/boost/asio/spawn.hpp +0 -873
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/context.hpp +0 -764
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/context_base.hpp +0 -211
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/buffered_handshake_op.hpp +0 -121
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/engine.hpp +0 -171
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/handshake_op.hpp +0 -69
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/impl/engine.ipp +0 -379
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/impl/openssl_init.ipp +0 -171
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/io.hpp +0 -378
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/openssl_init.hpp +0 -103
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/openssl_types.hpp +0 -34
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/password_callback.hpp +0 -68
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/read_op.hpp +0 -74
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/shutdown_op.hpp +0 -71
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/stream_core.hpp +0 -219
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/verify_callback.hpp +0 -64
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/write_op.hpp +0 -78
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/error.hpp +0 -129
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/host_name_verification.hpp +0 -92
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/context.hpp +0 -69
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/context.ipp +0 -1324
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/error.ipp +0 -126
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/host_name_verification.ipp +0 -75
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/rfc2818_verification.ipp +0 -166
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/src.hpp +0 -29
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/rfc2818_verification.hpp +0 -100
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/stream.hpp +0 -1044
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/stream_base.hpp +0 -54
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/verify_context.hpp +0 -69
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/verify_mode.hpp +0 -65
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl.hpp +0 -28
- data/src/cxx_supportlib/vendor-modified/boost/asio/static_thread_pool.hpp +0 -33
- data/src/cxx_supportlib/vendor-modified/boost/asio/steady_timer.hpp +0 -39
- data/src/cxx_supportlib/vendor-modified/boost/asio/strand.hpp +0 -559
- data/src/cxx_supportlib/vendor-modified/boost/asio/stream_file.hpp +0 -37
- data/src/cxx_supportlib/vendor-modified/boost/asio/streambuf.hpp +0 -35
- data/src/cxx_supportlib/vendor-modified/boost/asio/system_context.hpp +0 -92
- data/src/cxx_supportlib/vendor-modified/boost/asio/system_executor.hpp +0 -673
- data/src/cxx_supportlib/vendor-modified/boost/asio/system_timer.hpp +0 -39
- data/src/cxx_supportlib/vendor-modified/boost/asio/this_coro.hpp +0 -269
- data/src/cxx_supportlib/vendor-modified/boost/asio/thread_pool.hpp +0 -965
- data/src/cxx_supportlib/vendor-modified/boost/asio/time_traits.hpp +0 -88
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/equality_comparable.hpp +0 -102
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/execute_member.hpp +0 -106
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/prefer_free.hpp +0 -106
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/prefer_member.hpp +0 -106
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/query_free.hpp +0 -106
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/query_member.hpp +0 -106
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/query_static_constexpr_member.hpp +0 -103
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/require_concept_free.hpp +0 -106
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/require_concept_member.hpp +0 -106
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/require_free.hpp +0 -106
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/require_member.hpp +0 -106
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/static_query.hpp +0 -104
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/static_require.hpp +0 -117
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/static_require_concept.hpp +0 -118
- data/src/cxx_supportlib/vendor-modified/boost/asio/ts/buffer.hpp +0 -24
- data/src/cxx_supportlib/vendor-modified/boost/asio/ts/executor.hpp +0 -35
- data/src/cxx_supportlib/vendor-modified/boost/asio/ts/internet.hpp +0 -40
- data/src/cxx_supportlib/vendor-modified/boost/asio/ts/io_context.hpp +0 -20
- data/src/cxx_supportlib/vendor-modified/boost/asio/ts/net.hpp +0 -26
- data/src/cxx_supportlib/vendor-modified/boost/asio/ts/netfwd.hpp +0 -238
- data/src/cxx_supportlib/vendor-modified/boost/asio/ts/socket.hpp +0 -27
- data/src/cxx_supportlib/vendor-modified/boost/asio/ts/timer.hpp +0 -26
- data/src/cxx_supportlib/vendor-modified/boost/asio/unyield.hpp +0 -21
- data/src/cxx_supportlib/vendor-modified/boost/asio/use_awaitable.hpp +0 -163
- data/src/cxx_supportlib/vendor-modified/boost/asio/use_future.hpp +0 -161
- data/src/cxx_supportlib/vendor-modified/boost/asio/uses_executor.hpp +0 -69
- data/src/cxx_supportlib/vendor-modified/boost/asio/version.hpp +0 -23
- data/src/cxx_supportlib/vendor-modified/boost/asio/wait_traits.hpp +0 -58
- data/src/cxx_supportlib/vendor-modified/boost/asio/writable_pipe.hpp +0 -37
- data/src/cxx_supportlib/vendor-modified/boost/asio/write.hpp +0 -1528
- data/src/cxx_supportlib/vendor-modified/boost/asio/write_at.hpp +0 -843
- data/src/cxx_supportlib/vendor-modified/boost/asio/yield.hpp +0 -23
- data/src/cxx_supportlib/vendor-modified/boost/asio.hpp +0 -195
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/old_optional_implementation.hpp +0 -1059
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/operator_bool.hpp +0 -64
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/requires_cxx11.hpp +0 -23
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_forward.hpp +0 -52
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_nullptr_t.hpp +0 -45
- data/src/cxx_supportlib/vendor-modified/websocketpp/COPYING +0 -145
- data/src/cxx_supportlib/vendor-modified/websocketpp/changelog.md +0 -444
- data/src/cxx_supportlib/vendor-modified/websocketpp/readme.md +0 -49
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/base64/base64.hpp +0 -178
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/client.hpp +0 -33
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/close.hpp +0 -353
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/common/asio.hpp +0 -141
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/common/asio_ssl.hpp +0 -39
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/common/chrono.hpp +0 -68
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/common/connection_hdl.hpp +0 -52
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/common/cpp11.hpp +0 -162
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/common/functional.hpp +0 -100
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/common/md5.hpp +0 -448
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/common/memory.hpp +0 -88
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/common/network.hpp +0 -106
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/common/platforms.hpp +0 -46
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/common/random.hpp +0 -82
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/common/regex.hpp +0 -59
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/common/stdint.hpp +0 -73
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/common/system_error.hpp +0 -84
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/common/thread.hpp +0 -88
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/common/time.hpp +0 -56
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/common/type_traits.hpp +0 -65
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/concurrency/basic.hpp +0 -46
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/concurrency/none.hpp +0 -80
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/config/asio.hpp +0 -77
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/config/asio_client.hpp +0 -77
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/config/asio_no_tls.hpp +0 -73
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/config/asio_no_tls_client.hpp +0 -73
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/config/boost_config.hpp +0 -72
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/config/core.hpp +0 -297
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/config/core_client.hpp +0 -294
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/config/debug.hpp +0 -286
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/config/debug_asio.hpp +0 -77
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/config/debug_asio_no_tls.hpp +0 -73
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/config/minimal_client.hpp +0 -72
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/config/minimal_server.hpp +0 -312
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/connection.hpp +0 -1642
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/connection_base.hpp +0 -38
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/endpoint.hpp +0 -700
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/endpoint_base.hpp +0 -38
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/error.hpp +0 -277
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/extensions/extension.hpp +0 -102
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/extensions/permessage_deflate/disabled.hpp +0 -129
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/extensions/permessage_deflate/enabled.hpp +0 -817
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/frame.hpp +0 -853
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/http/constants.hpp +0 -308
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/http/impl/parser.hpp +0 -200
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/http/impl/request.hpp +0 -191
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/http/impl/response.hpp +0 -266
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/http/parser.hpp +0 -629
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/http/request.hpp +0 -124
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/http/response.hpp +0 -188
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/impl/connection_impl.hpp +0 -2375
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/impl/endpoint_impl.hpp +0 -269
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/impl/utilities_impl.hpp +0 -87
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/logger/basic.hpp +0 -199
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/logger/levels.hpp +0 -203
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/logger/stub.hpp +0 -119
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/logger/syslog.hpp +0 -146
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/message_buffer/alloc.hpp +0 -105
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/message_buffer/message.hpp +0 -340
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/message_buffer/pool.hpp +0 -229
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/processors/base.hpp +0 -299
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/processors/hybi00.hpp +0 -462
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/processors/hybi07.hpp +0 -78
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/processors/hybi08.hpp +0 -83
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/processors/hybi13.hpp +0 -1072
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/processors/processor.hpp +0 -407
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/random/none.hpp +0 -60
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/random/random_device.hpp +0 -80
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/roles/client_endpoint.hpp +0 -173
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/roles/server_endpoint.hpp +0 -195
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/server.hpp +0 -33
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/sha1/sha1.hpp +0 -189
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/transport/asio/base.hpp +0 -232
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/transport/asio/connection.hpp +0 -1197
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/transport/asio/endpoint.hpp +0 -1182
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/transport/asio/security/base.hpp +0 -159
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/transport/asio/security/none.hpp +0 -372
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/transport/asio/security/tls.hpp +0 -474
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/transport/base/connection.hpp +0 -238
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/transport/base/endpoint.hpp +0 -77
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/transport/debug/base.hpp +0 -104
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/transport/debug/connection.hpp +0 -412
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/transport/debug/endpoint.hpp +0 -140
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/transport/iostream/base.hpp +0 -133
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/transport/iostream/connection.hpp +0 -714
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/transport/iostream/endpoint.hpp +0 -222
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/transport/stub/base.hpp +0 -95
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/transport/stub/connection.hpp +0 -286
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/transport/stub/endpoint.hpp +0 -140
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/uri.hpp +0 -356
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/utf8_validator.hpp +0 -154
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/utilities.hpp +0 -180
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/version.hpp +0 -61
@@ -1,873 +0,0 @@
|
|
1
|
-
//
|
2
|
-
// spawn.hpp
|
3
|
-
// ~~~~~~~~~
|
4
|
-
//
|
5
|
-
// Copyright (c) 2003-2024 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_SPAWN_HPP
|
12
|
-
#define BOOST_ASIO_SPAWN_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/any_io_executor.hpp>
|
20
|
-
#include <boost/asio/cancellation_signal.hpp>
|
21
|
-
#include <boost/asio/cancellation_state.hpp>
|
22
|
-
#include <boost/asio/detail/exception.hpp>
|
23
|
-
#include <boost/asio/detail/memory.hpp>
|
24
|
-
#include <boost/asio/detail/type_traits.hpp>
|
25
|
-
#include <boost/asio/io_context.hpp>
|
26
|
-
#include <boost/asio/is_executor.hpp>
|
27
|
-
#include <boost/asio/strand.hpp>
|
28
|
-
|
29
|
-
#if defined(BOOST_ASIO_HAS_BOOST_COROUTINE)
|
30
|
-
# include <boost/coroutine/all.hpp>
|
31
|
-
#endif // defined(BOOST_ASIO_HAS_BOOST_COROUTINE)
|
32
|
-
|
33
|
-
#include <boost/asio/detail/push_options.hpp>
|
34
|
-
|
35
|
-
namespace boost {
|
36
|
-
namespace asio {
|
37
|
-
namespace detail {
|
38
|
-
|
39
|
-
// Base class for all spawn()-ed thread implementations.
|
40
|
-
class spawned_thread_base
|
41
|
-
{
|
42
|
-
public:
|
43
|
-
spawned_thread_base()
|
44
|
-
: owner_(0),
|
45
|
-
has_context_switched_(false),
|
46
|
-
throw_if_cancelled_(false),
|
47
|
-
terminal_(false)
|
48
|
-
{
|
49
|
-
}
|
50
|
-
|
51
|
-
virtual ~spawned_thread_base() {}
|
52
|
-
virtual void resume() = 0;
|
53
|
-
virtual void suspend_with(void (*fn)(void*), void* arg) = 0;
|
54
|
-
virtual void destroy() = 0;
|
55
|
-
|
56
|
-
void attach(spawned_thread_base** owner)
|
57
|
-
{
|
58
|
-
owner_ = owner;
|
59
|
-
*owner_ = this;
|
60
|
-
}
|
61
|
-
|
62
|
-
void detach()
|
63
|
-
{
|
64
|
-
if (owner_)
|
65
|
-
*owner_ = 0;
|
66
|
-
owner_ = 0;
|
67
|
-
}
|
68
|
-
|
69
|
-
void suspend()
|
70
|
-
{
|
71
|
-
suspend_with(0, 0);
|
72
|
-
}
|
73
|
-
|
74
|
-
template <typename F>
|
75
|
-
void suspend_with(F f)
|
76
|
-
{
|
77
|
-
suspend_with(&spawned_thread_base::call<F>, &f);
|
78
|
-
}
|
79
|
-
|
80
|
-
cancellation_slot get_cancellation_slot() const noexcept
|
81
|
-
{
|
82
|
-
return cancellation_state_.slot();
|
83
|
-
}
|
84
|
-
|
85
|
-
cancellation_state get_cancellation_state() const noexcept
|
86
|
-
{
|
87
|
-
return cancellation_state_;
|
88
|
-
}
|
89
|
-
|
90
|
-
void reset_cancellation_state()
|
91
|
-
{
|
92
|
-
cancellation_state_ = cancellation_state(parent_cancellation_slot_);
|
93
|
-
}
|
94
|
-
|
95
|
-
template <typename Filter>
|
96
|
-
void reset_cancellation_state(Filter filter)
|
97
|
-
{
|
98
|
-
cancellation_state_ = cancellation_state(
|
99
|
-
parent_cancellation_slot_, filter, filter);
|
100
|
-
}
|
101
|
-
|
102
|
-
template <typename InFilter, typename OutFilter>
|
103
|
-
void reset_cancellation_state(InFilter in_filter, OutFilter out_filter)
|
104
|
-
{
|
105
|
-
cancellation_state_ = cancellation_state(
|
106
|
-
parent_cancellation_slot_, in_filter, out_filter);
|
107
|
-
}
|
108
|
-
|
109
|
-
cancellation_type_t cancelled() const noexcept
|
110
|
-
{
|
111
|
-
return cancellation_state_.cancelled();
|
112
|
-
}
|
113
|
-
|
114
|
-
bool has_context_switched() const noexcept
|
115
|
-
{
|
116
|
-
return has_context_switched_;
|
117
|
-
}
|
118
|
-
|
119
|
-
bool throw_if_cancelled() const noexcept
|
120
|
-
{
|
121
|
-
return throw_if_cancelled_;
|
122
|
-
}
|
123
|
-
|
124
|
-
void throw_if_cancelled(bool value) noexcept
|
125
|
-
{
|
126
|
-
throw_if_cancelled_ = value;
|
127
|
-
}
|
128
|
-
|
129
|
-
protected:
|
130
|
-
spawned_thread_base** owner_; // Points to data member in active handler.
|
131
|
-
boost::asio::cancellation_slot parent_cancellation_slot_;
|
132
|
-
boost::asio::cancellation_state cancellation_state_;
|
133
|
-
bool has_context_switched_;
|
134
|
-
bool throw_if_cancelled_;
|
135
|
-
bool terminal_;
|
136
|
-
|
137
|
-
private:
|
138
|
-
// Disallow copying and assignment.
|
139
|
-
spawned_thread_base(const spawned_thread_base&) = delete;
|
140
|
-
spawned_thread_base& operator=(const spawned_thread_base&) = delete;
|
141
|
-
|
142
|
-
template <typename F>
|
143
|
-
static void call(void* f)
|
144
|
-
{
|
145
|
-
(*static_cast<F*>(f))();
|
146
|
-
}
|
147
|
-
};
|
148
|
-
|
149
|
-
template <typename T>
|
150
|
-
struct spawn_signature
|
151
|
-
{
|
152
|
-
typedef void type(exception_ptr, T);
|
153
|
-
};
|
154
|
-
|
155
|
-
template <>
|
156
|
-
struct spawn_signature<void>
|
157
|
-
{
|
158
|
-
typedef void type(exception_ptr);
|
159
|
-
};
|
160
|
-
|
161
|
-
template <typename Executor>
|
162
|
-
class initiate_spawn;
|
163
|
-
|
164
|
-
} // namespace detail
|
165
|
-
|
166
|
-
/// A @ref completion_token that represents the currently executing coroutine.
|
167
|
-
/**
|
168
|
-
* The basic_yield_context class is a completion token type that is used to
|
169
|
-
* represent the currently executing stackful coroutine. A basic_yield_context
|
170
|
-
* object may be passed as a completion token to an asynchronous operation. For
|
171
|
-
* example:
|
172
|
-
*
|
173
|
-
* @code template <typename Executor>
|
174
|
-
* void my_coroutine(basic_yield_context<Executor> yield)
|
175
|
-
* {
|
176
|
-
* ...
|
177
|
-
* std::size_t n = my_socket.async_read_some(buffer, yield);
|
178
|
-
* ...
|
179
|
-
* } @endcode
|
180
|
-
*
|
181
|
-
* The initiating function (async_read_some in the above example) suspends the
|
182
|
-
* current coroutine. The coroutine is resumed when the asynchronous operation
|
183
|
-
* completes, and the result of the operation is returned.
|
184
|
-
*/
|
185
|
-
template <typename Executor>
|
186
|
-
class basic_yield_context
|
187
|
-
{
|
188
|
-
public:
|
189
|
-
/// The executor type associated with the yield context.
|
190
|
-
typedef Executor executor_type;
|
191
|
-
|
192
|
-
/// The cancellation slot type associated with the yield context.
|
193
|
-
typedef cancellation_slot cancellation_slot_type;
|
194
|
-
|
195
|
-
/// Construct a yield context from another yield context type.
|
196
|
-
/**
|
197
|
-
* Requires that OtherExecutor be convertible to Executor.
|
198
|
-
*/
|
199
|
-
template <typename OtherExecutor>
|
200
|
-
basic_yield_context(const basic_yield_context<OtherExecutor>& other,
|
201
|
-
constraint_t<
|
202
|
-
is_convertible<OtherExecutor, Executor>::value
|
203
|
-
> = 0)
|
204
|
-
: spawned_thread_(other.spawned_thread_),
|
205
|
-
executor_(other.executor_),
|
206
|
-
ec_(other.ec_)
|
207
|
-
{
|
208
|
-
}
|
209
|
-
|
210
|
-
/// Get the executor associated with the yield context.
|
211
|
-
executor_type get_executor() const noexcept
|
212
|
-
{
|
213
|
-
return executor_;
|
214
|
-
}
|
215
|
-
|
216
|
-
/// Get the cancellation slot associated with the coroutine.
|
217
|
-
cancellation_slot_type get_cancellation_slot() const noexcept
|
218
|
-
{
|
219
|
-
return spawned_thread_->get_cancellation_slot();
|
220
|
-
}
|
221
|
-
|
222
|
-
/// Get the cancellation state associated with the coroutine.
|
223
|
-
cancellation_state get_cancellation_state() const noexcept
|
224
|
-
{
|
225
|
-
return spawned_thread_->get_cancellation_state();
|
226
|
-
}
|
227
|
-
|
228
|
-
/// Reset the cancellation state associated with the coroutine.
|
229
|
-
/**
|
230
|
-
* Let <tt>P</tt> be the cancellation slot associated with the current
|
231
|
-
* coroutine's @ref spawn completion handler. Assigns a new
|
232
|
-
* boost::asio::cancellation_state object <tt>S</tt>, constructed as
|
233
|
-
* <tt>S(P)</tt>, into the current coroutine's cancellation state object.
|
234
|
-
*/
|
235
|
-
void reset_cancellation_state() const
|
236
|
-
{
|
237
|
-
spawned_thread_->reset_cancellation_state();
|
238
|
-
}
|
239
|
-
|
240
|
-
/// Reset the cancellation state associated with the coroutine.
|
241
|
-
/**
|
242
|
-
* Let <tt>P</tt> be the cancellation slot associated with the current
|
243
|
-
* coroutine's @ref spawn completion handler. Assigns a new
|
244
|
-
* boost::asio::cancellation_state object <tt>S</tt>, constructed as <tt>S(P,
|
245
|
-
* std::forward<Filter>(filter))</tt>, into the current coroutine's
|
246
|
-
* cancellation state object.
|
247
|
-
*/
|
248
|
-
template <typename Filter>
|
249
|
-
void reset_cancellation_state(Filter&& filter) const
|
250
|
-
{
|
251
|
-
spawned_thread_->reset_cancellation_state(
|
252
|
-
static_cast<Filter&&>(filter));
|
253
|
-
}
|
254
|
-
|
255
|
-
/// Reset the cancellation state associated with the coroutine.
|
256
|
-
/**
|
257
|
-
* Let <tt>P</tt> be the cancellation slot associated with the current
|
258
|
-
* coroutine's @ref spawn completion handler. Assigns a new
|
259
|
-
* boost::asio::cancellation_state object <tt>S</tt>, constructed as <tt>S(P,
|
260
|
-
* std::forward<InFilter>(in_filter),
|
261
|
-
* std::forward<OutFilter>(out_filter))</tt>, into the current coroutine's
|
262
|
-
* cancellation state object.
|
263
|
-
*/
|
264
|
-
template <typename InFilter, typename OutFilter>
|
265
|
-
void reset_cancellation_state(InFilter&& in_filter,
|
266
|
-
OutFilter&& out_filter) const
|
267
|
-
{
|
268
|
-
spawned_thread_->reset_cancellation_state(
|
269
|
-
static_cast<InFilter&&>(in_filter),
|
270
|
-
static_cast<OutFilter&&>(out_filter));
|
271
|
-
}
|
272
|
-
|
273
|
-
/// Determine whether the current coroutine has been cancelled.
|
274
|
-
cancellation_type_t cancelled() const noexcept
|
275
|
-
{
|
276
|
-
return spawned_thread_->cancelled();
|
277
|
-
}
|
278
|
-
|
279
|
-
/// Determine whether the coroutine throws if trying to suspend when it has
|
280
|
-
/// been cancelled.
|
281
|
-
bool throw_if_cancelled() const noexcept
|
282
|
-
{
|
283
|
-
return spawned_thread_->throw_if_cancelled();
|
284
|
-
}
|
285
|
-
|
286
|
-
/// Set whether the coroutine throws if trying to suspend when it has been
|
287
|
-
/// cancelled.
|
288
|
-
void throw_if_cancelled(bool value) const noexcept
|
289
|
-
{
|
290
|
-
spawned_thread_->throw_if_cancelled(value);
|
291
|
-
}
|
292
|
-
|
293
|
-
/// Return a yield context that sets the specified error_code.
|
294
|
-
/**
|
295
|
-
* By default, when a yield context is used with an asynchronous operation, a
|
296
|
-
* non-success error_code is converted to system_error and thrown. This
|
297
|
-
* operator may be used to specify an error_code object that should instead be
|
298
|
-
* set with the asynchronous operation's result. For example:
|
299
|
-
*
|
300
|
-
* @code template <typename Executor>
|
301
|
-
* void my_coroutine(basic_yield_context<Executor> yield)
|
302
|
-
* {
|
303
|
-
* ...
|
304
|
-
* std::size_t n = my_socket.async_read_some(buffer, yield[ec]);
|
305
|
-
* if (ec)
|
306
|
-
* {
|
307
|
-
* // An error occurred.
|
308
|
-
* }
|
309
|
-
* ...
|
310
|
-
* } @endcode
|
311
|
-
*/
|
312
|
-
basic_yield_context operator[](boost::system::error_code& ec) const
|
313
|
-
{
|
314
|
-
basic_yield_context tmp(*this);
|
315
|
-
tmp.ec_ = &ec;
|
316
|
-
return tmp;
|
317
|
-
}
|
318
|
-
|
319
|
-
#if !defined(GENERATING_DOCUMENTATION)
|
320
|
-
//private:
|
321
|
-
basic_yield_context(detail::spawned_thread_base* spawned_thread,
|
322
|
-
const Executor& ex)
|
323
|
-
: spawned_thread_(spawned_thread),
|
324
|
-
executor_(ex),
|
325
|
-
ec_(0)
|
326
|
-
{
|
327
|
-
}
|
328
|
-
|
329
|
-
detail::spawned_thread_base* spawned_thread_;
|
330
|
-
Executor executor_;
|
331
|
-
boost::system::error_code* ec_;
|
332
|
-
#endif // !defined(GENERATING_DOCUMENTATION)
|
333
|
-
};
|
334
|
-
|
335
|
-
/// A @ref completion_token object that represents the currently executing
|
336
|
-
/// coroutine.
|
337
|
-
typedef basic_yield_context<any_io_executor> yield_context;
|
338
|
-
|
339
|
-
/**
|
340
|
-
* @defgroup spawn boost::asio::spawn
|
341
|
-
*
|
342
|
-
* @brief Start a new stackful coroutine.
|
343
|
-
*
|
344
|
-
* The spawn() function is a high-level wrapper over the Boost.Coroutine
|
345
|
-
* library. This function enables programs to implement asynchronous logic in a
|
346
|
-
* synchronous manner, as illustrated by the following example:
|
347
|
-
*
|
348
|
-
* @code boost::asio::spawn(my_strand, do_echo, boost::asio::detached);
|
349
|
-
*
|
350
|
-
* // ...
|
351
|
-
*
|
352
|
-
* void do_echo(boost::asio::yield_context yield)
|
353
|
-
* {
|
354
|
-
* try
|
355
|
-
* {
|
356
|
-
* char data[128];
|
357
|
-
* for (;;)
|
358
|
-
* {
|
359
|
-
* std::size_t length =
|
360
|
-
* my_socket.async_read_some(
|
361
|
-
* boost::asio::buffer(data), yield);
|
362
|
-
*
|
363
|
-
* boost::asio::async_write(my_socket,
|
364
|
-
* boost::asio::buffer(data, length), yield);
|
365
|
-
* }
|
366
|
-
* }
|
367
|
-
* catch (std::exception& e)
|
368
|
-
* {
|
369
|
-
* // ...
|
370
|
-
* }
|
371
|
-
* } @endcode
|
372
|
-
*/
|
373
|
-
/*@{*/
|
374
|
-
|
375
|
-
/// Start a new stackful coroutine that executes on a given executor.
|
376
|
-
/**
|
377
|
-
* This function is used to launch a new stackful coroutine.
|
378
|
-
*
|
379
|
-
* @param ex Identifies the executor that will run the stackful coroutine.
|
380
|
-
*
|
381
|
-
* @param function The coroutine function. The function must be callable the
|
382
|
-
* signature:
|
383
|
-
* @code void function(basic_yield_context<Executor> yield); @endcode
|
384
|
-
*
|
385
|
-
* @param token The @ref completion_token that will handle the notification
|
386
|
-
* that the coroutine has completed. If the return type @c R of @c function is
|
387
|
-
* @c void, the function signature of the completion handler must be:
|
388
|
-
*
|
389
|
-
* @code void handler(std::exception_ptr); @endcode
|
390
|
-
* Otherwise, the function signature of the completion handler must be:
|
391
|
-
* @code void handler(std::exception_ptr, R); @endcode
|
392
|
-
*
|
393
|
-
* @par Completion Signature
|
394
|
-
* @code void(std::exception_ptr, R) @endcode
|
395
|
-
* where @c R is the return type of the function object.
|
396
|
-
*
|
397
|
-
* @par Per-Operation Cancellation
|
398
|
-
* The new thread of execution is created with a cancellation state that
|
399
|
-
* supports @c cancellation_type::terminal values only. To change the
|
400
|
-
* cancellation state, call the basic_yield_context member function
|
401
|
-
* @c reset_cancellation_state.
|
402
|
-
*/
|
403
|
-
template <typename Executor, typename F,
|
404
|
-
BOOST_ASIO_COMPLETION_TOKEN_FOR(typename detail::spawn_signature<
|
405
|
-
result_of_t<F(basic_yield_context<Executor>)>>::type)
|
406
|
-
CompletionToken = default_completion_token_t<Executor>>
|
407
|
-
auto spawn(const Executor& ex, F&& function,
|
408
|
-
CompletionToken&& token = default_completion_token_t<Executor>(),
|
409
|
-
#if defined(BOOST_ASIO_HAS_BOOST_COROUTINE)
|
410
|
-
constraint_t<
|
411
|
-
!is_same<
|
412
|
-
decay_t<CompletionToken>,
|
413
|
-
boost::coroutines::attributes
|
414
|
-
>::value
|
415
|
-
> = 0,
|
416
|
-
#endif // defined(BOOST_ASIO_HAS_BOOST_COROUTINE)
|
417
|
-
constraint_t<
|
418
|
-
is_executor<Executor>::value || execution::is_executor<Executor>::value
|
419
|
-
> = 0)
|
420
|
-
-> decltype(
|
421
|
-
async_initiate<CompletionToken,
|
422
|
-
typename detail::spawn_signature<
|
423
|
-
result_of_t<F(basic_yield_context<Executor>)>>::type>(
|
424
|
-
declval<detail::initiate_spawn<Executor>>(),
|
425
|
-
token, static_cast<F&&>(function)));
|
426
|
-
|
427
|
-
/// Start a new stackful coroutine that executes on a given execution context.
|
428
|
-
/**
|
429
|
-
* This function is used to launch a new stackful coroutine.
|
430
|
-
*
|
431
|
-
* @param ctx Identifies the execution context that will run the stackful
|
432
|
-
* coroutine.
|
433
|
-
*
|
434
|
-
* @param function The coroutine function. The function must be callable the
|
435
|
-
* signature:
|
436
|
-
* @code void function(basic_yield_context<Executor> yield); @endcode
|
437
|
-
*
|
438
|
-
* @param token The @ref completion_token that will handle the notification
|
439
|
-
* that the coroutine has completed. If the return type @c R of @c function is
|
440
|
-
* @c void, the function signature of the completion handler must be:
|
441
|
-
*
|
442
|
-
* @code void handler(std::exception_ptr); @endcode
|
443
|
-
* Otherwise, the function signature of the completion handler must be:
|
444
|
-
* @code void handler(std::exception_ptr, R); @endcode
|
445
|
-
*
|
446
|
-
* @par Completion Signature
|
447
|
-
* @code void(std::exception_ptr, R) @endcode
|
448
|
-
* where @c R is the return type of the function object.
|
449
|
-
*
|
450
|
-
* @par Per-Operation Cancellation
|
451
|
-
* The new thread of execution is created with a cancellation state that
|
452
|
-
* supports @c cancellation_type::terminal values only. To change the
|
453
|
-
* cancellation state, call the basic_yield_context member function
|
454
|
-
* @c reset_cancellation_state.
|
455
|
-
*/
|
456
|
-
template <typename ExecutionContext, typename F,
|
457
|
-
BOOST_ASIO_COMPLETION_TOKEN_FOR(typename detail::spawn_signature<
|
458
|
-
result_of_t<F(basic_yield_context<
|
459
|
-
typename ExecutionContext::executor_type>)>>::type)
|
460
|
-
CompletionToken = default_completion_token_t<
|
461
|
-
typename ExecutionContext::executor_type>>
|
462
|
-
auto spawn(ExecutionContext& ctx, F&& function,
|
463
|
-
CompletionToken&& token
|
464
|
-
= default_completion_token_t<typename ExecutionContext::executor_type>(),
|
465
|
-
#if defined(BOOST_ASIO_HAS_BOOST_COROUTINE)
|
466
|
-
constraint_t<
|
467
|
-
!is_same<
|
468
|
-
decay_t<CompletionToken>,
|
469
|
-
boost::coroutines::attributes
|
470
|
-
>::value
|
471
|
-
> = 0,
|
472
|
-
#endif // defined(BOOST_ASIO_HAS_BOOST_COROUTINE)
|
473
|
-
constraint_t<
|
474
|
-
is_convertible<ExecutionContext&, execution_context&>::value
|
475
|
-
> = 0)
|
476
|
-
-> decltype(
|
477
|
-
async_initiate<CompletionToken,
|
478
|
-
typename detail::spawn_signature<
|
479
|
-
result_of_t<F(basic_yield_context<
|
480
|
-
typename ExecutionContext::executor_type>)>>::type>(
|
481
|
-
declval<detail::initiate_spawn<
|
482
|
-
typename ExecutionContext::executor_type>>(),
|
483
|
-
token, static_cast<F&&>(function)));
|
484
|
-
|
485
|
-
/// Start a new stackful coroutine, inheriting the executor of another.
|
486
|
-
/**
|
487
|
-
* This function is used to launch a new stackful coroutine.
|
488
|
-
*
|
489
|
-
* @param ctx Identifies the current coroutine as a parent of the new
|
490
|
-
* coroutine. This specifies that the new coroutine should inherit the executor
|
491
|
-
* of the parent. For example, if the parent coroutine is executing in a
|
492
|
-
* particular strand, then the new coroutine will execute in the same strand.
|
493
|
-
*
|
494
|
-
* @param function The coroutine function. The function must be callable the
|
495
|
-
* signature:
|
496
|
-
* @code void function(basic_yield_context<Executor> yield); @endcode
|
497
|
-
*
|
498
|
-
* @param token The @ref completion_token that will handle the notification
|
499
|
-
* that the coroutine has completed. If the return type @c R of @c function is
|
500
|
-
* @c void, the function signature of the completion handler must be:
|
501
|
-
*
|
502
|
-
* @code void handler(std::exception_ptr); @endcode
|
503
|
-
* Otherwise, the function signature of the completion handler must be:
|
504
|
-
* @code void handler(std::exception_ptr, R); @endcode
|
505
|
-
*
|
506
|
-
* @par Completion Signature
|
507
|
-
* @code void(std::exception_ptr, R) @endcode
|
508
|
-
* where @c R is the return type of the function object.
|
509
|
-
*
|
510
|
-
* @par Per-Operation Cancellation
|
511
|
-
* The new thread of execution is created with a cancellation state that
|
512
|
-
* supports @c cancellation_type::terminal values only. To change the
|
513
|
-
* cancellation state, call the basic_yield_context member function
|
514
|
-
* @c reset_cancellation_state.
|
515
|
-
*/
|
516
|
-
template <typename Executor, typename F,
|
517
|
-
BOOST_ASIO_COMPLETION_TOKEN_FOR(typename detail::spawn_signature<
|
518
|
-
result_of_t<F(basic_yield_context<Executor>)>>::type)
|
519
|
-
CompletionToken = default_completion_token_t<Executor>>
|
520
|
-
auto spawn(const basic_yield_context<Executor>& ctx, F&& function,
|
521
|
-
CompletionToken&& token = default_completion_token_t<Executor>(),
|
522
|
-
#if defined(BOOST_ASIO_HAS_BOOST_COROUTINE)
|
523
|
-
constraint_t<
|
524
|
-
!is_same<
|
525
|
-
decay_t<CompletionToken>,
|
526
|
-
boost::coroutines::attributes
|
527
|
-
>::value
|
528
|
-
> = 0,
|
529
|
-
#endif // defined(BOOST_ASIO_HAS_BOOST_COROUTINE)
|
530
|
-
constraint_t<
|
531
|
-
is_executor<Executor>::value || execution::is_executor<Executor>::value
|
532
|
-
> = 0)
|
533
|
-
-> decltype(
|
534
|
-
async_initiate<CompletionToken,
|
535
|
-
typename detail::spawn_signature<
|
536
|
-
result_of_t<F(basic_yield_context<Executor>)>>::type>(
|
537
|
-
declval<detail::initiate_spawn<Executor>>(),
|
538
|
-
token, static_cast<F&&>(function)));
|
539
|
-
|
540
|
-
#if defined(BOOST_ASIO_HAS_BOOST_CONTEXT_FIBER) \
|
541
|
-
|| defined(GENERATING_DOCUMENTATION)
|
542
|
-
|
543
|
-
/// Start a new stackful coroutine that executes on a given executor.
|
544
|
-
/**
|
545
|
-
* This function is used to launch a new stackful coroutine using the
|
546
|
-
* specified stack allocator.
|
547
|
-
*
|
548
|
-
* @param ex Identifies the executor that will run the stackful coroutine.
|
549
|
-
*
|
550
|
-
* @param stack_allocator Denotes the allocator to be used to allocate the
|
551
|
-
* underlying coroutine's stack. The type must satisfy the stack-allocator
|
552
|
-
* concept defined by the Boost.Context library.
|
553
|
-
*
|
554
|
-
* @param function The coroutine function. The function must be callable the
|
555
|
-
* signature:
|
556
|
-
* @code void function(basic_yield_context<Executor> yield); @endcode
|
557
|
-
*
|
558
|
-
* @param token The @ref completion_token that will handle the notification
|
559
|
-
* that the coroutine has completed. If the return type @c R of @c function is
|
560
|
-
* @c void, the function signature of the completion handler must be:
|
561
|
-
*
|
562
|
-
* @code void handler(std::exception_ptr); @endcode
|
563
|
-
* Otherwise, the function signature of the completion handler must be:
|
564
|
-
* @code void handler(std::exception_ptr, R); @endcode
|
565
|
-
*
|
566
|
-
* @par Completion Signature
|
567
|
-
* @code void(std::exception_ptr, R) @endcode
|
568
|
-
* where @c R is the return type of the function object.
|
569
|
-
*
|
570
|
-
* @par Per-Operation Cancellation
|
571
|
-
* The new thread of execution is created with a cancellation state that
|
572
|
-
* supports @c cancellation_type::terminal values only. To change the
|
573
|
-
* cancellation state, call the basic_yield_context member function
|
574
|
-
* @c reset_cancellation_state.
|
575
|
-
*/
|
576
|
-
template <typename Executor, typename StackAllocator, typename F,
|
577
|
-
BOOST_ASIO_COMPLETION_TOKEN_FOR(typename detail::spawn_signature<
|
578
|
-
result_of_t<F(basic_yield_context<Executor>)>>::type)
|
579
|
-
CompletionToken = default_completion_token_t<Executor>>
|
580
|
-
auto spawn(const Executor& ex, allocator_arg_t,
|
581
|
-
StackAllocator&& stack_allocator, F&& function,
|
582
|
-
CompletionToken&& token = default_completion_token_t<Executor>(),
|
583
|
-
constraint_t<
|
584
|
-
is_executor<Executor>::value || execution::is_executor<Executor>::value
|
585
|
-
> = 0)
|
586
|
-
-> decltype(
|
587
|
-
async_initiate<CompletionToken,
|
588
|
-
typename detail::spawn_signature<
|
589
|
-
result_of_t<F(basic_yield_context<Executor>)>>::type>(
|
590
|
-
declval<detail::initiate_spawn<Executor>>(),
|
591
|
-
token, allocator_arg_t(),
|
592
|
-
static_cast<StackAllocator&&>(stack_allocator),
|
593
|
-
static_cast<F&&>(function)));
|
594
|
-
|
595
|
-
/// Start a new stackful coroutine that executes on a given execution context.
|
596
|
-
/**
|
597
|
-
* This function is used to launch a new stackful coroutine.
|
598
|
-
*
|
599
|
-
* @param ctx Identifies the execution context that will run the stackful
|
600
|
-
* coroutine.
|
601
|
-
*
|
602
|
-
* @param stack_allocator Denotes the allocator to be used to allocate the
|
603
|
-
* underlying coroutine's stack. The type must satisfy the stack-allocator
|
604
|
-
* concept defined by the Boost.Context library.
|
605
|
-
*
|
606
|
-
* @param function The coroutine function. The function must be callable the
|
607
|
-
* signature:
|
608
|
-
* @code void function(basic_yield_context<Executor> yield); @endcode
|
609
|
-
*
|
610
|
-
* @param token The @ref completion_token that will handle the notification
|
611
|
-
* that the coroutine has completed. If the return type @c R of @c function is
|
612
|
-
* @c void, the function signature of the completion handler must be:
|
613
|
-
*
|
614
|
-
* @code void handler(std::exception_ptr); @endcode
|
615
|
-
* Otherwise, the function signature of the completion handler must be:
|
616
|
-
* @code void handler(std::exception_ptr, R); @endcode
|
617
|
-
*
|
618
|
-
* @par Completion Signature
|
619
|
-
* @code void(std::exception_ptr, R) @endcode
|
620
|
-
* where @c R is the return type of the function object.
|
621
|
-
*
|
622
|
-
* @par Per-Operation Cancellation
|
623
|
-
* The new thread of execution is created with a cancellation state that
|
624
|
-
* supports @c cancellation_type::terminal values only. To change the
|
625
|
-
* cancellation state, call the basic_yield_context member function
|
626
|
-
* @c reset_cancellation_state.
|
627
|
-
*/
|
628
|
-
template <typename ExecutionContext, typename StackAllocator, typename F,
|
629
|
-
BOOST_ASIO_COMPLETION_TOKEN_FOR(typename detail::spawn_signature<
|
630
|
-
result_of_t<F(basic_yield_context<
|
631
|
-
typename ExecutionContext::executor_type>)>>::type)
|
632
|
-
CompletionToken = default_completion_token_t<
|
633
|
-
typename ExecutionContext::executor_type>>
|
634
|
-
auto spawn(ExecutionContext& ctx, allocator_arg_t,
|
635
|
-
StackAllocator&& stack_allocator, F&& function,
|
636
|
-
CompletionToken&& token
|
637
|
-
= default_completion_token_t<typename ExecutionContext::executor_type>(),
|
638
|
-
constraint_t<
|
639
|
-
is_convertible<ExecutionContext&, execution_context&>::value
|
640
|
-
> = 0)
|
641
|
-
-> decltype(
|
642
|
-
async_initiate<CompletionToken,
|
643
|
-
typename detail::spawn_signature<
|
644
|
-
result_of_t<F(basic_yield_context<
|
645
|
-
typename ExecutionContext::executor_type>)>>::type>(
|
646
|
-
declval<detail::initiate_spawn<
|
647
|
-
typename ExecutionContext::executor_type>>(),
|
648
|
-
token, allocator_arg_t(),
|
649
|
-
static_cast<StackAllocator&&>(stack_allocator),
|
650
|
-
static_cast<F&&>(function)));
|
651
|
-
|
652
|
-
/// Start a new stackful coroutine, inheriting the executor of another.
|
653
|
-
/**
|
654
|
-
* This function is used to launch a new stackful coroutine using the
|
655
|
-
* specified stack allocator.
|
656
|
-
*
|
657
|
-
* @param ctx Identifies the current coroutine as a parent of the new
|
658
|
-
* coroutine. This specifies that the new coroutine should inherit the
|
659
|
-
* executor of the parent. For example, if the parent coroutine is executing
|
660
|
-
* in a particular strand, then the new coroutine will execute in the same
|
661
|
-
* strand.
|
662
|
-
*
|
663
|
-
* @param stack_allocator Denotes the allocator to be used to allocate the
|
664
|
-
* underlying coroutine's stack. The type must satisfy the stack-allocator
|
665
|
-
* concept defined by the Boost.Context library.
|
666
|
-
*
|
667
|
-
* @param function The coroutine function. The function must be callable the
|
668
|
-
* signature:
|
669
|
-
* @code void function(basic_yield_context<Executor> yield); @endcode
|
670
|
-
*
|
671
|
-
* @param token The @ref completion_token that will handle the notification
|
672
|
-
* that the coroutine has completed. If the return type @c R of @c function is
|
673
|
-
* @c void, the function signature of the completion handler must be:
|
674
|
-
*
|
675
|
-
* @code void handler(std::exception_ptr); @endcode
|
676
|
-
* Otherwise, the function signature of the completion handler must be:
|
677
|
-
* @code void handler(std::exception_ptr, R); @endcode
|
678
|
-
*
|
679
|
-
* @par Completion Signature
|
680
|
-
* @code void(std::exception_ptr, R) @endcode
|
681
|
-
* where @c R is the return type of the function object.
|
682
|
-
*
|
683
|
-
* @par Per-Operation Cancellation
|
684
|
-
* The new thread of execution is created with a cancellation state that
|
685
|
-
* supports @c cancellation_type::terminal values only. To change the
|
686
|
-
* cancellation state, call the basic_yield_context member function
|
687
|
-
* @c reset_cancellation_state.
|
688
|
-
*/
|
689
|
-
template <typename Executor, typename StackAllocator, typename F,
|
690
|
-
BOOST_ASIO_COMPLETION_TOKEN_FOR(typename detail::spawn_signature<
|
691
|
-
result_of_t<F(basic_yield_context<Executor>)>>::type)
|
692
|
-
CompletionToken = default_completion_token_t<Executor>>
|
693
|
-
auto spawn(const basic_yield_context<Executor>& ctx, allocator_arg_t,
|
694
|
-
StackAllocator&& stack_allocator, F&& function,
|
695
|
-
CompletionToken&& token = default_completion_token_t<Executor>(),
|
696
|
-
constraint_t<
|
697
|
-
is_executor<Executor>::value || execution::is_executor<Executor>::value
|
698
|
-
> = 0)
|
699
|
-
-> decltype(
|
700
|
-
async_initiate<CompletionToken,
|
701
|
-
typename detail::spawn_signature<
|
702
|
-
result_of_t<F(basic_yield_context<Executor>)>>::type>(
|
703
|
-
declval<detail::initiate_spawn<Executor>>(),
|
704
|
-
token, allocator_arg_t(),
|
705
|
-
static_cast<StackAllocator&&>(stack_allocator),
|
706
|
-
static_cast<F&&>(function)));
|
707
|
-
|
708
|
-
#endif // defined(BOOST_ASIO_HAS_BOOST_CONTEXT_FIBER)
|
709
|
-
// || defined(GENERATING_DOCUMENTATION)
|
710
|
-
|
711
|
-
#if defined(BOOST_ASIO_HAS_BOOST_COROUTINE) \
|
712
|
-
|| defined(GENERATING_DOCUMENTATION)
|
713
|
-
|
714
|
-
/// (Deprecated: Use overloads with a completion token.) Start a new stackful
|
715
|
-
/// coroutine, calling the specified handler when it completes.
|
716
|
-
/**
|
717
|
-
* This function is used to launch a new coroutine.
|
718
|
-
*
|
719
|
-
* @param function The coroutine function. The function must have the signature:
|
720
|
-
* @code void function(basic_yield_context<Executor> yield); @endcode
|
721
|
-
* where Executor is the associated executor type of @c Function.
|
722
|
-
*
|
723
|
-
* @param attributes Boost.Coroutine attributes used to customise the coroutine.
|
724
|
-
*/
|
725
|
-
template <typename Function>
|
726
|
-
void spawn(Function&& function,
|
727
|
-
const boost::coroutines::attributes& attributes
|
728
|
-
= boost::coroutines::attributes());
|
729
|
-
|
730
|
-
/// (Deprecated: Use overloads with a completion token.) Start a new stackful
|
731
|
-
/// coroutine, calling the specified handler when it completes.
|
732
|
-
/**
|
733
|
-
* This function is used to launch a new coroutine.
|
734
|
-
*
|
735
|
-
* @param handler A handler to be called when the coroutine exits. More
|
736
|
-
* importantly, the handler provides an execution context (via the the handler
|
737
|
-
* invocation hook) for the coroutine. The handler must have the signature:
|
738
|
-
* @code void handler(); @endcode
|
739
|
-
*
|
740
|
-
* @param function The coroutine function. The function must have the signature:
|
741
|
-
* @code void function(basic_yield_context<Executor> yield); @endcode
|
742
|
-
* where Executor is the associated executor type of @c Handler.
|
743
|
-
*
|
744
|
-
* @param attributes Boost.Coroutine attributes used to customise the coroutine.
|
745
|
-
*/
|
746
|
-
template <typename Handler, typename Function>
|
747
|
-
void spawn(Handler&& handler, Function&& function,
|
748
|
-
const boost::coroutines::attributes& attributes
|
749
|
-
= boost::coroutines::attributes(),
|
750
|
-
constraint_t<
|
751
|
-
!is_executor<decay_t<Handler>>::value &&
|
752
|
-
!execution::is_executor<decay_t<Handler>>::value &&
|
753
|
-
!is_convertible<Handler&, execution_context&>::value
|
754
|
-
> = 0);
|
755
|
-
|
756
|
-
/// (Deprecated: Use overloads with a completion token.) Start a new stackful
|
757
|
-
/// coroutine, inheriting the execution context of another.
|
758
|
-
/**
|
759
|
-
* This function is used to launch a new coroutine.
|
760
|
-
*
|
761
|
-
* @param ctx Identifies the current coroutine as a parent of the new
|
762
|
-
* coroutine. This specifies that the new coroutine should inherit the
|
763
|
-
* execution context of the parent. For example, if the parent coroutine is
|
764
|
-
* executing in a particular strand, then the new coroutine will execute in the
|
765
|
-
* same strand.
|
766
|
-
*
|
767
|
-
* @param function The coroutine function. The function must have the signature:
|
768
|
-
* @code void function(basic_yield_context<Executor> yield); @endcode
|
769
|
-
*
|
770
|
-
* @param attributes Boost.Coroutine attributes used to customise the coroutine.
|
771
|
-
*/
|
772
|
-
template <typename Executor, typename Function>
|
773
|
-
void spawn(basic_yield_context<Executor> ctx, Function&& function,
|
774
|
-
const boost::coroutines::attributes& attributes
|
775
|
-
= boost::coroutines::attributes());
|
776
|
-
|
777
|
-
/// (Deprecated: Use overloads with a completion token.) Start a new stackful
|
778
|
-
/// coroutine that executes on a given executor.
|
779
|
-
/**
|
780
|
-
* This function is used to launch a new coroutine.
|
781
|
-
*
|
782
|
-
* @param ex Identifies the executor that will run the coroutine. The new
|
783
|
-
* coroutine is automatically given its own explicit strand within this
|
784
|
-
* executor.
|
785
|
-
*
|
786
|
-
* @param function The coroutine function. The function must have the signature:
|
787
|
-
* @code void function(yield_context yield); @endcode
|
788
|
-
*
|
789
|
-
* @param attributes Boost.Coroutine attributes used to customise the coroutine.
|
790
|
-
*/
|
791
|
-
template <typename Function, typename Executor>
|
792
|
-
void spawn(const Executor& ex, Function&& function,
|
793
|
-
const boost::coroutines::attributes& attributes
|
794
|
-
= boost::coroutines::attributes(),
|
795
|
-
constraint_t<
|
796
|
-
is_executor<Executor>::value || execution::is_executor<Executor>::value
|
797
|
-
> = 0);
|
798
|
-
|
799
|
-
/// (Deprecated: Use overloads with a completion token.) Start a new stackful
|
800
|
-
/// coroutine that executes on a given strand.
|
801
|
-
/**
|
802
|
-
* This function is used to launch a new coroutine.
|
803
|
-
*
|
804
|
-
* @param ex Identifies the strand that will run the coroutine.
|
805
|
-
*
|
806
|
-
* @param function The coroutine function. The function must have the signature:
|
807
|
-
* @code void function(yield_context yield); @endcode
|
808
|
-
*
|
809
|
-
* @param attributes Boost.Coroutine attributes used to customise the coroutine.
|
810
|
-
*/
|
811
|
-
template <typename Function, typename Executor>
|
812
|
-
void spawn(const strand<Executor>& ex, Function&& function,
|
813
|
-
const boost::coroutines::attributes& attributes
|
814
|
-
= boost::coroutines::attributes());
|
815
|
-
|
816
|
-
#if !defined(BOOST_ASIO_NO_TS_EXECUTORS)
|
817
|
-
|
818
|
-
/// (Deprecated: Use overloads with a completion token.) Start a new stackful
|
819
|
-
/// coroutine that executes in the context of a strand.
|
820
|
-
/**
|
821
|
-
* This function is used to launch a new coroutine.
|
822
|
-
*
|
823
|
-
* @param s Identifies a strand. By starting multiple coroutines on the same
|
824
|
-
* strand, the implementation ensures that none of those coroutines can execute
|
825
|
-
* simultaneously.
|
826
|
-
*
|
827
|
-
* @param function The coroutine function. The function must have the signature:
|
828
|
-
* @code void function(yield_context yield); @endcode
|
829
|
-
*
|
830
|
-
* @param attributes Boost.Coroutine attributes used to customise the coroutine.
|
831
|
-
*/
|
832
|
-
template <typename Function>
|
833
|
-
void spawn(const boost::asio::io_context::strand& s, Function&& function,
|
834
|
-
const boost::coroutines::attributes& attributes
|
835
|
-
= boost::coroutines::attributes());
|
836
|
-
|
837
|
-
#endif // !defined(BOOST_ASIO_NO_TS_EXECUTORS)
|
838
|
-
|
839
|
-
/// (Deprecated: Use overloads with a completion token.) Start a new stackful
|
840
|
-
/// coroutine that executes on a given execution context.
|
841
|
-
/**
|
842
|
-
* This function is used to launch a new coroutine.
|
843
|
-
*
|
844
|
-
* @param ctx Identifies the execution context that will run the coroutine. The
|
845
|
-
* new coroutine is implicitly given its own strand within this execution
|
846
|
-
* context.
|
847
|
-
*
|
848
|
-
* @param function The coroutine function. The function must have the signature:
|
849
|
-
* @code void function(yield_context yield); @endcode
|
850
|
-
*
|
851
|
-
* @param attributes Boost.Coroutine attributes used to customise the coroutine.
|
852
|
-
*/
|
853
|
-
template <typename Function, typename ExecutionContext>
|
854
|
-
void spawn(ExecutionContext& ctx, Function&& function,
|
855
|
-
const boost::coroutines::attributes& attributes
|
856
|
-
= boost::coroutines::attributes(),
|
857
|
-
constraint_t<
|
858
|
-
is_convertible<ExecutionContext&, execution_context&>::value
|
859
|
-
> = 0);
|
860
|
-
|
861
|
-
#endif // defined(BOOST_ASIO_HAS_BOOST_COROUTINE)
|
862
|
-
// || defined(GENERATING_DOCUMENTATION)
|
863
|
-
|
864
|
-
/*@}*/
|
865
|
-
|
866
|
-
} // namespace asio
|
867
|
-
} // namespace boost
|
868
|
-
|
869
|
-
#include <boost/asio/detail/pop_options.hpp>
|
870
|
-
|
871
|
-
#include <boost/asio/impl/spawn.hpp>
|
872
|
-
|
873
|
-
#endif // BOOST_ASIO_SPAWN_HPP
|