passenger 6.0.14 → 6.0.15
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG +28 -1
- data/CONTRIBUTORS +2 -0
- data/build/common_library.rb +1 -0
- data/src/agent/Core/Config.h +1 -1
- data/src/agent/Core/Controller/Config.h +1 -1
- data/src/agent/SpawnEnvSetupper/SpawnEnvSetupperMain.cpp +24 -2
- data/src/agent/Watchdog/Config.h +1 -1
- data/src/agent/Watchdog/WatchdogMain.cpp +4 -0
- data/src/cxx_supportlib/BackgroundEventLoop.cpp +4 -0
- data/src/cxx_supportlib/Constants.h +1 -1
- data/src/cxx_supportlib/LoggingKit/Context.h +1 -1
- data/src/cxx_supportlib/SafeLibev.h +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/detail/find_iterator.hpp +11 -3
- data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/find_iterator.hpp +27 -1
- data/src/cxx_supportlib/vendor-modified/boost/align/detail/aligned_alloc_sunos.hpp +34 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/any_io_executor.hpp +42 -39
- data/src/cxx_supportlib/vendor-modified/boost/asio/append.hpp +80 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/as_tuple.hpp +141 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/associated_allocator.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/associated_cancellation_slot.hpp +4 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/associated_executor.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/associator.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/async_result.hpp +363 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/awaitable.hpp +10 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_datagram_socket.hpp +208 -115
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_deadline_timer.hpp +28 -16
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_file.hpp +831 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_io_object.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_random_access_file.hpp +703 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_raw_socket.hpp +210 -117
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_readable_pipe.hpp +637 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_seq_packet_socket.hpp +84 -47
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_serial_port.hpp +123 -30
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_signal_set.hpp +36 -14
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket.hpp +58 -26
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket_acceptor.hpp +303 -150
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket_iostream.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket_streambuf.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_stream_file.hpp +756 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_stream_socket.hpp +153 -84
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_streambuf.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_streambuf_fwd.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_waitable_timer.hpp +28 -16
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_writable_pipe.hpp +633 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/bind_allocator.hpp +724 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/bind_cancellation_slot.hpp +11 -8
- data/src/cxx_supportlib/vendor-modified/boost/asio/bind_executor.hpp +36 -20
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffer.hpp +222 -42
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffer_registration.hpp +330 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_read_stream.hpp +38 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_read_stream_fwd.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_stream.hpp +34 -5
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_stream_fwd.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_write_stream.hpp +38 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_write_stream_fwd.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffers_iterator.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/cancellation_signal.hpp +10 -64
- data/src/cxx_supportlib/vendor-modified/boost/asio/cancellation_state.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/cancellation_type.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/co_spawn.hpp +33 -9
- data/src/cxx_supportlib/vendor-modified/boost/asio/completion_condition.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/compose.hpp +682 -12
- data/src/cxx_supportlib/vendor-modified/boost/asio/connect.hpp +132 -61
- data/src/cxx_supportlib/vendor-modified/boost/asio/connect_pipe.hpp +85 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/coroutine.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/deadline_timer.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/defer.hpp +128 -42
- data/src/cxx_supportlib/vendor-modified/boost/asio/deferred.hpp +677 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detached.hpp +6 -5
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/array.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/array_fwd.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/assert.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/atomic_count.hpp +4 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/base_from_cancellation_state.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/base_from_completion_cond.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/bind_handler.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/blocking_executor_op.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/buffer_resize_guard.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/buffer_sequence_adapter.hpp +192 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/buffered_stream_storage.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/bulk_executor_op.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/call_stack.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/chrono.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/chrono_time_traits.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/completion_handler.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/concurrency_hint.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/conditionally_enabled_event.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/conditionally_enabled_mutex.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/config.hpp +233 -10
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/consuming_buffers.hpp +38 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/cstddef.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/cstdint.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/date_time_fwd.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/deadline_timer_service.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/dependent_type.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/descriptor_ops.hpp +42 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/descriptor_read_op.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/descriptor_write_op.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/dev_poll_reactor.hpp +10 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/epoll_reactor.hpp +4 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/event.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/eventfd_select_interrupter.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/exception.hpp +42 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/executor_function.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/executor_op.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/fd_set_adapter.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/fenced_block.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/functional.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/future.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/gcc_arm_fenced_block.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/gcc_hppa_fenced_block.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/gcc_sync_fenced_block.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/gcc_x86_fenced_block.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/global.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_alloc_helpers.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_cont_helpers.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_invoke_helpers.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_tracking.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_type_requirements.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_work.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/hash_map.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/buffer_sequence_adapter.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/descriptor_ops.ipp +330 -5
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/dev_poll_reactor.hpp +13 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/dev_poll_reactor.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/epoll_reactor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/epoll_reactor.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/eventfd_select_interrupter.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/handler_tracking.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/io_uring_descriptor_service.ipp +207 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/io_uring_file_service.ipp +142 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/io_uring_service.hpp +114 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/io_uring_service.ipp +882 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/io_uring_socket_service_base.ipp +251 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/kqueue_reactor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/kqueue_reactor.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/null_event.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/pipe_select_interrupter.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/posix_event.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/posix_mutex.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/{reactive_serial_port_service.ipp → posix_serial_port_service.ipp} +38 -19
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/posix_thread.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/posix_tss_ptr.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/reactive_descriptor_service.ipp +9 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/reactive_socket_service_base.ipp +6 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/resolver_service_base.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/scheduler.ipp +19 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/select_reactor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/select_reactor.ipp +36 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/service_registry.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/service_registry.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/signal_set_service.ipp +108 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/socket_ops.ipp +126 -121
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/socket_select_interrupter.ipp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/strand_executor_service.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/strand_executor_service.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/strand_service.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/strand_service.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/thread_context.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/throw_error.ipp +10 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/timer_queue_ptime.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/timer_queue_set.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_control.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_object_impl.hpp +11 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_descriptor_read_at_op.hpp +194 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_descriptor_read_op.hpp +189 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_descriptor_service.hpp +681 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_descriptor_write_at_op.hpp +188 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_descriptor_write_op.hpp +184 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_file_service.hpp +264 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_null_buffers_op.hpp +115 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_operation.hpp +86 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_service.hpp +320 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_accept_op.hpp +283 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_connect_op.hpp +141 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_recv_op.hpp +204 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_recvfrom_op.hpp +205 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_recvmsg_op.hpp +191 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_send_op.hpp +190 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_sendto_op.hpp +193 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_service.hpp +633 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_service_base.hpp +665 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_wait_op.hpp +113 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/is_buffer_sequence.hpp +27 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/is_executor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/keyword_tss_ptr.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/kqueue_reactor.hpp +4 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/local_free_on_block_exit.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/macos_fenced_block.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/memory.hpp +17 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/mutex.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/non_const_lvalue.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/noncopyable.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_event.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_fenced_block.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_global.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_mutex.hpp +1 -5
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_reactor.hpp +19 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_signal_blocker.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_socket_service.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_static_mutex.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_thread.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_tss_ptr.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/object_pool.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/old_win_sdk_compat.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/op_queue.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/operation.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/pipe_select_interrupter.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/pop_options.hpp +9 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_event.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_fd_set_adapter.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_global.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_mutex.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/{reactive_serial_port_service.hpp → posix_serial_port_service.hpp} +30 -18
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_signal_blocker.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_static_mutex.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_thread.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_tss_ptr.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/push_options.hpp +12 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_descriptor_service.hpp +29 -8
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_null_buffers_op.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_accept_op.hpp +5 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_connect_op.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_recv_op.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_recvfrom_op.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_recvmsg_op.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_send_op.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_sendto_op.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_service.hpp +41 -13
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_service_base.hpp +5 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_wait_op.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor.hpp +29 -5
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor_op.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor_op_queue.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/recycling_allocator.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/regex_fwd.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolve_endpoint_op.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolve_op.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolve_query_op.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolver_service.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolver_service_base.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scheduler.hpp +16 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scheduler_operation.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scheduler_task.hpp +51 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scheduler_thread_info.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scoped_lock.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scoped_ptr.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/select_interrupter.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/select_reactor.hpp +27 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/service_registry.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_blocker.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_handler.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_init.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_op.hpp +5 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_set_service.hpp +57 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_holder.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_ops.hpp +37 -45
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_option.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_select_interrupter.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_types.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/solaris_fenced_block.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/source_location.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/static_mutex.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_event.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_fenced_block.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_global.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_mutex.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_static_mutex.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_thread.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/strand_executor_service.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/strand_service.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/string_view.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/thread.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/thread_context.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/thread_group.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/thread_info_base.hpp +5 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/throw_error.hpp +18 -9
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/throw_exception.hpp +7 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue_base.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue_ptime.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue_set.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_scheduler.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_scheduler_fwd.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/tss_ptr.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/type_traits.hpp +9 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/utility.hpp +86 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/variadic_templates.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/wait_handler.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/wait_op.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/winsock_init.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/work_dispatcher.hpp +4 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/wrapped_handler.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/dispatch.hpp +126 -42
- data/src/cxx_supportlib/vendor-modified/boost/asio/error.hpp +30 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/allocator.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/any_executor.hpp +7 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/bad_executor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/blocking.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/blocking_adaptation.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/bulk_execute.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/bulk_guarantee.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/connect.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/context.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/context_as.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/detail/as_invocable.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/detail/as_operation.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/detail/as_receiver.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/detail/bulk_sender.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/detail/submit_receiver.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/detail/void_receiver.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/execute.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/executor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/impl/bad_executor.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/impl/receiver_invocation_error.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/invocable_archetype.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/mapping.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/occupancy.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/operation_state.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/outstanding_work.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/prefer_only.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/receiver.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/receiver_invocation_error.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/relationship.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/schedule.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/scheduler.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/sender.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/set_done.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/set_error.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/set_value.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/start.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/submit.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution_context.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/executor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/executor_work_guard.hpp +100 -32
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/append.hpp +6 -41
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/as_single.hpp +6 -5
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/as_tuple.hpp +6 -101
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/awaitable_operators.hpp +14 -14
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/basic_channel.hpp +493 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/basic_concurrent_channel.hpp +493 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/cancellation_condition.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/channel.hpp +72 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/channel_error.hpp +88 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/channel_traits.hpp +233 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/co_spawn.hpp +189 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/concurrent_channel.hpp +72 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/coro.hpp +95 -887
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/{detail/coro_traits.hpp → coro_traits.hpp} +65 -20
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/deferred.hpp +6 -575
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_handler.hpp +72 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_message.hpp +124 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_operation.hpp +201 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_payload.hpp +95 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_receive_op.hpp +114 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_send_functions.hpp +134 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_send_op.hpp +142 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_service.hpp +499 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/completion_handler_erasure.hpp +82 -46
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/coro_promise_allocator.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/has_signature.hpp +56 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/impl/channel_service.hpp +611 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/partial_promise.hpp +11 -12
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/as_single.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/channel_error.ipp +63 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/coro.hpp +1197 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/parallel_group.hpp +14 -28
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/promise.hpp +6 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/use_coro.hpp +270 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/parallel_group.hpp +27 -37
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/prepend.hpp +6 -41
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/promise.hpp +27 -405
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/use_coro.hpp +116 -229
- data/src/cxx_supportlib/vendor-modified/boost/asio/file_base.hpp +168 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/basic_endpoint.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/datagram_protocol.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/detail/endpoint.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/detail/impl/endpoint.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/raw_protocol.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/seq_packet_protocol.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/stream_protocol.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/handler_alloc_hook.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/handler_continuation_hook.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/handler_invoke_hook.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/high_resolution_timer.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/any_io_executor.ipp +131 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/{experimental/impl → impl}/append.hpp +18 -19
- data/src/cxx_supportlib/vendor-modified/boost/asio/{experimental/impl → impl}/as_tuple.hpp +13 -15
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/awaitable.hpp +400 -5
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/buffered_read_stream.hpp +13 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/buffered_write_stream.hpp +13 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/cancellation_signal.ipp +98 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/co_spawn.hpp +71 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/compose.hpp +21 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/connect.hpp +67 -34
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/connect_pipe.hpp +75 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/connect_pipe.ipp +151 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/defer.hpp +23 -13
- data/src/cxx_supportlib/vendor-modified/boost/asio/{experimental/impl → impl}/deferred.hpp +31 -40
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/detached.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/dispatch.hpp +23 -13
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/error.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/execution_context.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/execution_context.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/executor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/executor.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/handler_alloc_hook.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/io_context.hpp +53 -47
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/io_context.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/multiple_exceptions.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/post.hpp +23 -13
- data/src/cxx_supportlib/vendor-modified/boost/asio/{experimental/impl → impl}/prepend.hpp +16 -17
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read.hpp +97 -51
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read_at.hpp +51 -31
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read_until.hpp +119 -59
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/redirect_error.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/serial_port_base.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/serial_port_base.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/spawn.hpp +1321 -277
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/src.hpp +11 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/system_context.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/system_context.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/system_executor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/thread_pool.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/thread_pool.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/use_awaitable.hpp +18 -8
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/use_future.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/write.hpp +95 -50
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/write_at.hpp +53 -31
- data/src/cxx_supportlib/vendor-modified/boost/asio/io_context.hpp +111 -114
- data/src/cxx_supportlib/vendor-modified/boost/asio/io_context_strand.hpp +15 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/io_service.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/io_service_strand.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v4.hpp +75 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v4_iterator.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v4_range.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v6.hpp +35 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v6_iterator.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v6_range.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/bad_address_cast.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_endpoint.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver.hpp +130 -64
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver_entry.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver_iterator.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver_query.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver_results.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/detail/endpoint.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/detail/impl/endpoint.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/detail/socket_option.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/host_name.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/icmp.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address_v4.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address_v4.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address_v6.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address_v6.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/basic_endpoint.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/host_name.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/network_v4.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/network_v4.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/network_v6.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/network_v6.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/multicast.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/network_v4.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/network_v6.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/resolver_base.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/resolver_query_base.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/tcp.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/udp.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/unicast.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/v6_only.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/is_applicable_property.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/is_contiguous_iterator.hpp +47 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/is_executor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/is_read_buffered.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/is_write_buffered.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/basic_endpoint.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/connect_pair.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/datagram_protocol.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/detail/endpoint.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/detail/impl/endpoint.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/stream_protocol.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/multiple_exceptions.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/packaged_task.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/placeholders.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/basic_descriptor.hpp +89 -16
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/basic_stream_descriptor.hpp +95 -27
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/descriptor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/descriptor_base.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/stream_descriptor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/post.hpp +128 -42
- data/src/cxx_supportlib/vendor-modified/boost/asio/prefer.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/prepend.hpp +80 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/query.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/random_access_file.hpp +37 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/read.hpp +245 -153
- data/src/cxx_supportlib/vendor-modified/boost/asio/read_at.hpp +110 -53
- data/src/cxx_supportlib/vendor-modified/boost/asio/read_until.hpp +301 -166
- data/src/cxx_supportlib/vendor-modified/boost/asio/readable_pipe.hpp +37 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/recycling_allocator.hpp +140 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/redirect_error.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/registered_buffer.hpp +358 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/require.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/require_concept.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/serial_port.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/serial_port_base.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/signal_set.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/socket_base.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/spawn.hpp +647 -87
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/context.hpp +4 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/context_base.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/buffered_handshake_op.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/engine.hpp +4 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/handshake_op.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/impl/engine.ipp +19 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/impl/openssl_init.ipp +7 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/io.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/openssl_init.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/openssl_types.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/password_callback.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/read_op.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/shutdown_op.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/stream_core.hpp +16 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/verify_callback.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/write_op.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/error.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/host_name_verification.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/context.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/context.ipp +140 -64
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/error.ipp +25 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/host_name_verification.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/rfc2818_verification.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/src.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/rfc2818_verification.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/stream.hpp +154 -53
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/stream_base.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/verify_context.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/verify_mode.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/static_thread_pool.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/steady_timer.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/strand.hpp +12 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/stream_file.hpp +37 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/streambuf.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/system_context.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/system_executor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/system_timer.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/this_coro.hpp +11 -11
- data/src/cxx_supportlib/vendor-modified/boost/asio/thread_pool.hpp +10 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/time_traits.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/bulk_execute_free.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/bulk_execute_member.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/connect_free.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/connect_member.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/equality_comparable.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/execute_free.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/execute_member.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/prefer_free.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/prefer_member.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/query_free.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/query_member.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/query_static_constexpr_member.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/require_concept_free.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/require_concept_member.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/require_free.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/require_member.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/schedule_free.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/schedule_member.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/set_done_free.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/set_done_member.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/set_error_free.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/set_error_member.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/set_value_free.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/set_value_member.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/start_free.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/start_member.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/static_query.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/static_require.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/static_require_concept.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/submit_free.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/submit_member.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ts/buffer.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ts/executor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ts/internet.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ts/io_context.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ts/net.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ts/netfwd.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ts/socket.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ts/timer.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/unyield.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/use_awaitable.hpp +4 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/use_future.hpp +10 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/uses_executor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/version.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/wait_traits.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_object_handle.hpp +70 -12
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_overlapped_handle.hpp +100 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_random_access_handle.hpp +98 -29
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_stream_handle.hpp +95 -28
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/object_handle.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/overlapped_handle.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/overlapped_ptr.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/random_access_handle.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/stream_handle.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/writable_pipe.hpp +37 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/write.hpp +242 -150
- data/src/cxx_supportlib/vendor-modified/boost/asio/write_at.hpp +112 -53
- data/src/cxx_supportlib/vendor-modified/boost/asio/yield.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio.hpp +21 -1
- data/src/cxx_supportlib/vendor-modified/boost/assert/source_location.hpp +115 -25
- data/src/cxx_supportlib/vendor-modified/boost/atomic/atomic.hpp +8 -2
- data/src/cxx_supportlib/vendor-modified/boost/atomic/atomic_ref.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/addressof.hpp +5 -1
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/atomic_impl.hpp +183 -64
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/atomic_ref_impl.hpp +166 -66
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/bitwise_cast.hpp +80 -11
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/bitwise_fp_cast.hpp +40 -11
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_arch_gcc_aarch32.hpp +8 -1
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_arch_gcc_aarch64.hpp +8 -1
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_arch_gcc_arm.hpp +8 -1
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/classify.hpp +19 -10
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/config.hpp +19 -5
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_arch_ops_gcc_ppc.hpp +105 -100
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_fp_ops_generic.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_ops_gcc_ppc.hpp +73 -72
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/futex.hpp +8 -1
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/gcc_arm_asm_common.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/gcc_ppc_asm_common.hpp +33 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/platform.hpp +15 -6
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/type_traits/alignment_of.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/type_traits/has_unique_object_representations.hpp +143 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/type_traits/is_enum.hpp +42 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/type_traits/is_nothrow_default_constructible.hpp +46 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_caps_darwin_ulock.hpp +58 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_caps_windows.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_on_address.hpp +65 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_ops_darwin_ulock.hpp +158 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_ops_windows.hpp +55 -26
- data/src/cxx_supportlib/vendor-modified/boost/atomic/ipc_atomic.hpp +8 -2
- data/src/cxx_supportlib/vendor-modified/boost/atomic/ipc_atomic_ref.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/bind/bind.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/bind/detail/result_traits.hpp +12 -2
- data/src/cxx_supportlib/vendor-modified/boost/bind/protect.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/chrono/duration.hpp +6 -3
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/duration_io.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/duration_style.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/time_point_io.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/timezone.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx03.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx11.hpp +1 -4
- data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx14.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx17.hpp +4 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx20.hpp +4 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/auto_link.hpp +6 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/clang.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/clang_version.hpp +77 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/gcc.hpp +3 -2
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/nvcc.hpp +3 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/visualc.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/xlcpp.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/detail/cxx_composite.hpp +4 -3
- data/src/cxx_supportlib/vendor-modified/boost/config/detail/suffix.hpp +51 -35
- data/src/cxx_supportlib/vendor-modified/boost/config/platform/wasm.hpp +6 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/dinkumware.hpp +14 -19
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/libcpp.hpp +2 -45
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/libstdcpp3.hpp +23 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/workaround.hpp +11 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/adaptive_pool.hpp +12 -6
- data/src/cxx_supportlib/vendor-modified/boost/container/allocator.hpp +8 -3
- data/src/cxx_supportlib/vendor-modified/boost/container/container_fwd.hpp +1 -3
- data/src/cxx_supportlib/vendor-modified/boost/container/deque.hpp +70 -59
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/adaptive_node_pool_impl.hpp +6 -5
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/addressof.hpp +2 -10
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/advanced_insert_int.hpp +31 -40
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/compare_functors.hpp +13 -10
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/construct_in_place.hpp +17 -15
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/copy_move_algo.hpp +87 -84
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/destroyers.hpp +59 -32
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/dispatch_uses_allocator.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/flat_tree.hpp +46 -35
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/hash_table.hpp +1278 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/is_pair.hpp +91 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/iterator.hpp +6 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/iterators.hpp +88 -69
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/multiallocation_chain.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/next_capacity.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/node_alloc_holder.hpp +240 -105
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/node_pool_impl.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/pair.hpp +19 -91
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/placement_new.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/pool_resource.hpp +3 -7
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/transform_iterator.hpp +28 -28
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/tree.hpp +118 -244
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/type_traits.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/workaround.hpp +5 -10
- data/src/cxx_supportlib/vendor-modified/boost/container/devector.hpp +66 -38
- data/src/cxx_supportlib/vendor-modified/boost/container/flat_map.hpp +28 -9
- data/src/cxx_supportlib/vendor-modified/boost/container/flat_set.hpp +27 -8
- data/src/cxx_supportlib/vendor-modified/boost/container/list.hpp +14 -71
- data/src/cxx_supportlib/vendor-modified/boost/container/map.hpp +11 -8
- data/src/cxx_supportlib/vendor-modified/boost/container/new_allocator.hpp +9 -2
- data/src/cxx_supportlib/vendor-modified/boost/container/node_allocator.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/container/node_handle.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/container/options.hpp +23 -6
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/memory_resource.hpp +6 -1
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/monotonic_buffer_resource.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/resource_adaptor.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/synchronized_pool_resource.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/unsynchronized_pool_resource.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/container/set.hpp +11 -8
- data/src/cxx_supportlib/vendor-modified/boost/container/slist.hpp +32 -87
- data/src/cxx_supportlib/vendor-modified/boost/container/small_vector.hpp +100 -147
- data/src/cxx_supportlib/vendor-modified/boost/container/stable_vector.hpp +41 -35
- data/src/cxx_supportlib/vendor-modified/boost/container/static_vector.hpp +74 -46
- data/src/cxx_supportlib/vendor-modified/boost/container/string.hpp +207 -187
- data/src/cxx_supportlib/vendor-modified/boost/container/throw_exception.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/container/vector.hpp +86 -71
- data/src/cxx_supportlib/vendor-modified/boost/container_hash/hash.hpp +40 -35
- data/src/cxx_supportlib/vendor-modified/boost/core/alloc_construct.hpp +7 -81
- data/src/cxx_supportlib/vendor-modified/boost/core/allocator_access.hpp +426 -207
- data/src/cxx_supportlib/vendor-modified/boost/core/allocator_traits.hpp +112 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/bit.hpp +28 -14
- data/src/cxx_supportlib/vendor-modified/boost/core/cmath.hpp +100 -1
- data/src/cxx_supportlib/vendor-modified/boost/core/default_allocator.hpp +19 -9
- data/src/cxx_supportlib/vendor-modified/boost/core/detail/splitmix64.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/core/detail/string_view.hpp +1256 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/empty_value.hpp +9 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/lightweight_test.hpp +7 -1
- data/src/cxx_supportlib/vendor-modified/boost/core/lightweight_test_trait.hpp +5 -51
- data/src/cxx_supportlib/vendor-modified/boost/core/noinit_adaptor.hpp +3 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/noncopyable.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/core/pointer_traits.hpp +111 -60
- data/src/cxx_supportlib/vendor-modified/boost/core/quick_exit.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/core/span.hpp +399 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/type_name.hpp +1157 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/verbose_terminate_handler.hpp +88 -0
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian_calendar.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/conversion.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/posix_time_io.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/detail/workaround.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/exception/detail/exception_ptr.hpp +38 -22
- data/src/cxx_supportlib/vendor-modified/boost/exception/exception.hpp +84 -2
- data/src/cxx_supportlib/vendor-modified/boost/exception/info.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/function/function_base.hpp +9 -0
- data/src/cxx_supportlib/vendor-modified/boost/function/function_template.hpp +16 -0
- data/src/cxx_supportlib/vendor-modified/boost/integer/integer_log2.hpp +85 -80
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/avltree_algorithms.hpp +39 -39
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/bstree.hpp +27 -27
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/bstree_algorithms.hpp +37 -40
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/circular_list_algorithms.hpp +24 -15
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/circular_slist_algorithms.hpp +75 -6
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/derivation_value_traits.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/any_node_and_algorithms.hpp +25 -25
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/array_initializer.hpp +3 -2
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/avltree_node.hpp +14 -14
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/bstree_algorithms_base.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/common_slist_algorithms.hpp +76 -7
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/default_header_holder.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/empty_node_checker.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/exception_disposer.hpp +0 -31
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/hashtable_node.hpp +182 -102
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/hook_traits.hpp +8 -8
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/iterator.hpp +106 -76
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/list_iterator.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/list_node.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/math.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/mpl.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/node_cloner_disposer.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/node_to_value.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/rbtree_node.hpp +18 -18
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/reverse_iterator.hpp +3 -140
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/simple_disposers.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/slist_iterator.hpp +11 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/slist_node.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/tree_iterator.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/tree_node.hpp +6 -6
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/value_functors.hpp +10 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/workaround.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/hashtable.hpp +1525 -882
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/intrusive_fwd.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/linear_slist_algorithms.hpp +81 -8
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/list.hpp +9 -8
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/member_value_traits.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/options.hpp +17 -3
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/pack_options.hpp +10 -8
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/pointer_traits.hpp +12 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/priority_compare.hpp +9 -2
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/rbtree_algorithms.hpp +36 -36
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/sgtree_algorithms.hpp +16 -16
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/slist.hpp +32 -35
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/splaytree_algorithms.hpp +27 -27
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/treap_algorithms.hpp +14 -14
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/trivial_value_traits.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/unordered_set.hpp +27 -20
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/unordered_set_hook.hpp +6 -6
- data/src/cxx_supportlib/vendor-modified/boost/iterator/advance.hpp +11 -0
- data/src/cxx_supportlib/vendor-modified/boost/iterator/detail/config_def.hpp +6 -6
- data/src/cxx_supportlib/vendor-modified/boost/iterator/detail/config_undef.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/iterator/detail/enable_if.hpp +5 -5
- data/src/cxx_supportlib/vendor-modified/boost/iterator/transform_iterator.hpp +8 -4
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/bad_lexical_cast.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/converter_lexical.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/converter_lexical_streams.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/converter_numeric.hpp +1 -1
- 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/is_character.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/lcast_char_constants.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/lexical_cast/detail/widest_char.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/try_lexical_convert.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/adaptive_merge.hpp +43 -30
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/adaptive_sort.hpp +72 -56
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/adaptive_sort_merge.hpp +172 -128
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/heap_sort.hpp +19 -9
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/insertion_sort.hpp +9 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/merge.hpp +108 -146
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/merge_sort.hpp +24 -15
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/pdqsort.hpp +14 -4
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/search.hpp +79 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/set_difference.hpp +8 -2
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/move.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/predicate.hpp +10 -10
- data/src/cxx_supportlib/vendor-modified/boost/move/core.hpp +21 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/addressof.hpp +61 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/force_ptr.hpp +36 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/iterator_traits.hpp +108 -9
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/meta_utils.hpp +8 -32
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/nsec_clock.hpp +6 -3
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/reverse_iterator.hpp +40 -33
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/std_ns_begin.hpp +5 -1
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/std_ns_end.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/type_traits.hpp +1 -2
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/workaround.hpp +5 -3
- data/src/cxx_supportlib/vendor-modified/boost/move/make_unique.hpp +10 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/utility_core.hpp +31 -28
- data/src/cxx_supportlib/vendor-modified/boost/mp11/algorithm.hpp +1306 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/config.hpp +138 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_append.hpp +185 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_copy_if.hpp +48 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_count.hpp +147 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_fold.hpp +62 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_front.hpp +38 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_is_list.hpp +39 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_list.hpp +24 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_map_find.hpp +87 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_min_element.hpp +51 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_plus.hpp +81 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_remove_if.hpp +48 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_rename.hpp +41 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_void.hpp +32 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_with_index.hpp +385 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/function.hpp +222 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/integer_sequence.hpp +112 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/integral.hpp +41 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/list.hpp +304 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/set.hpp +188 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/utility.hpp +263 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/version.hpp +16 -0
- data/src/cxx_supportlib/vendor-modified/boost/mpl/and.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/assert.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/template_arity.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/yes_no.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/bitand.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/bitor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/or.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_aligned_storage.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_hash.hpp +49 -0
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_trivially_copyable_base.hpp +34 -23
- data/src/cxx_supportlib/vendor-modified/boost/optional/optional.hpp +85 -24
- data/src/cxx_supportlib/vendor-modified/boost/optional/optional_io.hpp +3 -2
- data/src/cxx_supportlib/vendor-modified/boost/pool/pool.hpp +22 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/loongarch.h +41 -0
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/sparc.h +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture.h +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/predef/language/stdc.h +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/predef/language/stdcpp.h +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/predef/other/endian.h +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/predef/version.h +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/basic_regex_parser.hpp +8 -1
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/icu.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/pattern_except.hpp +3 -2
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/perl_matcher_non_recursive.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/basic_regex_creator.hpp +4 -3
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/basic_regex_parser.hpp +23 -13
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/icu.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/mem_block_cache.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/pattern_except.hpp +3 -2
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/perl_matcher_common.hpp +6 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/perl_matcher_non_recursive.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/w32_regex_traits.hpp +235 -104
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/shared_count.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_cw_ppc.hpp +4 -2
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_impl.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/scoped_array.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/scoped_ptr.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/shared_array.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/shared_ptr.hpp +3 -6
- data/src/cxx_supportlib/vendor-modified/boost/static_assert.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/append_int.hpp +32 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/config.hpp +18 -2
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_category.hpp +31 -7
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_category_impl.hpp +78 -21
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_code.hpp +211 -42
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_condition.hpp +77 -19
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/snprintf.hpp +3 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/std_category.hpp +9 -67
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/std_category_impl.hpp +97 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/system_category_impl.hpp +5 -17
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/system_category_message.hpp +71 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/errc.hpp +7 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/system_error.hpp +30 -59
- data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/thread_data.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/thread/scoped_thread.hpp +9 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/thread_guard.hpp +5 -0
- data/src/cxx_supportlib/vendor-modified/boost/throw_exception.hpp +103 -5
- data/src/cxx_supportlib/vendor-modified/boost/token_functions.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/tuple/detail/tuple_basic.hpp +22 -21
- data/src/cxx_supportlib/vendor-modified/boost/type_index/stl_type_index.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_index/type_index_facade.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_index.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/config.hpp +4 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/intrinsics.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_complete.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_function.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_member_function_pointer.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/fca.hpp +819 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/fwd.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/implementation.hpp +1647 -2909
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/map.hpp +8 -14
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/prime_fmod.hpp +262 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/set.hpp +8 -13
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_map.hpp +301 -142
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_map_fwd.hpp +10 -1
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_set.hpp +199 -76
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_set_fwd.hpp +10 -1
- data/src/cxx_supportlib/vendor-modified/boost/utility/base_from_member.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/utility/binary.hpp +3 -2
- data/src/cxx_supportlib/vendor-modified/boost/utility/in_place_factory.hpp +6 -0
- data/src/cxx_supportlib/vendor-modified/boost/utility/result_of.hpp +13 -2
- data/src/cxx_supportlib/vendor-modified/boost/utility/string_ref.hpp +6 -2
- data/src/cxx_supportlib/vendor-modified/boost/utility/string_view.hpp +24 -3
- data/src/cxx_supportlib/vendor-modified/boost/utility/typed_in_place_factory.hpp +6 -1
- data/src/cxx_supportlib/vendor-modified/boost/utility/value_init.hpp +5 -1
- data/src/cxx_supportlib/vendor-modified/boost/version.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/jsoncpp/json-forwards.h +261 -143
- data/src/cxx_supportlib/vendor-modified/jsoncpp/json.h +947 -763
- data/src/cxx_supportlib/vendor-modified/jsoncpp/jsoncpp.cpp +1487 -1477
- data/src/ruby_supportlib/phusion_passenger/platform_info/cxx_portability.rb +1 -1
- data/src/ruby_supportlib/phusion_passenger/platform_info/ruby.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/rack/thread_handler_extension.rb +9 -0
- data/src/ruby_supportlib/phusion_passenger.rb +1 -1
- metadata +129 -14
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor_fwd.hpp +0 -42
- data/src/cxx_supportlib/vendor-modified/boost/checked_delete.hpp +0 -17
- data/src/cxx_supportlib/vendor-modified/boost/pointer_to_other.hpp +0 -55
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/indexed_bit_flag.hpp +0 -54
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_obsolete.hpp +0 -32
@@ -2,7 +2,7 @@
|
|
2
2
|
// read_until.hpp
|
3
3
|
// ~~~~~~~~~~~~~~
|
4
4
|
//
|
5
|
-
// Copyright (c) 2003-
|
5
|
+
// Copyright (c) 2003-2022 Christopher M. Kohlhoff (chris at kohlhoff dot com)
|
6
6
|
//
|
7
7
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
8
8
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
@@ -33,19 +33,34 @@
|
|
33
33
|
|
34
34
|
namespace boost {
|
35
35
|
namespace asio {
|
36
|
+
namespace detail {
|
36
37
|
|
37
|
-
|
38
|
+
char (&has_result_type_helper(...))[2];
|
39
|
+
|
40
|
+
template <typename T>
|
41
|
+
char has_result_type_helper(T*, typename T::result_type* = 0);
|
42
|
+
|
43
|
+
template <typename T>
|
44
|
+
struct has_result_type
|
38
45
|
{
|
39
|
-
|
46
|
+
enum { value = (sizeof((has_result_type_helper)((T*)(0))) == 1) };
|
47
|
+
};
|
40
48
|
|
41
|
-
|
42
|
-
|
49
|
+
#if !defined(BOOST_ASIO_NO_DYNAMIC_BUFFER_V1)
|
50
|
+
template <typename> class initiate_async_read_until_delim_v1;
|
51
|
+
template <typename> class initiate_async_read_until_delim_string_v1;
|
52
|
+
#if defined(BOOST_ASIO_HAS_BOOST_REGEX)
|
53
|
+
template <typename> class initiate_async_read_until_expr_v1;
|
54
|
+
#endif // defined(BOOST_ASIO_HAS_BOOST_REGEX)
|
55
|
+
template <typename> class initiate_async_read_until_match_v1;
|
56
|
+
#endif // !defined(BOOST_ASIO_NO_DYNAMIC_BUFFER_V1)
|
57
|
+
template <typename> class initiate_async_read_until_delim_v2;
|
58
|
+
template <typename> class initiate_async_read_until_delim_string_v2;
|
59
|
+
#if defined(BOOST_ASIO_HAS_BOOST_REGEX)
|
60
|
+
template <typename> class initiate_async_read_until_expr_v2;
|
61
|
+
#endif // defined(BOOST_ASIO_HAS_BOOST_REGEX)
|
62
|
+
template <typename> class initiate_async_read_until_match_v2;
|
43
63
|
|
44
|
-
template <typename T>
|
45
|
-
struct has_result_type
|
46
|
-
{
|
47
|
-
enum { value = (sizeof((has_result_type_helper)((T*)(0))) == 1) };
|
48
|
-
};
|
49
64
|
} // namespace detail
|
50
65
|
|
51
66
|
/// Type trait used to determine whether a type can be used as a match condition
|
@@ -1546,9 +1561,9 @@ std::size_t read_until(SyncReadStream& s, DynamicBuffer_v2 buffers,
|
|
1546
1561
|
/**
|
1547
1562
|
* This function is used to asynchronously read data into the specified dynamic
|
1548
1563
|
* buffer sequence until the dynamic buffer sequence's get area contains the
|
1549
|
-
* specified delimiter.
|
1550
|
-
*
|
1551
|
-
* is true:
|
1564
|
+
* specified delimiter. It is an initiating function for an @ref
|
1565
|
+
* asynchronous_operation, and always returns immediately. The asynchronous
|
1566
|
+
* operation will continue until one of the following conditions is true:
|
1552
1567
|
*
|
1553
1568
|
* @li The get area of the dynamic buffer sequence contains the specified
|
1554
1569
|
* delimiter.
|
@@ -1569,27 +1584,31 @@ std::size_t read_until(SyncReadStream& s, DynamicBuffer_v2 buffers,
|
|
1569
1584
|
* @param buffers The dynamic buffer sequence into which the data will be read.
|
1570
1585
|
* Although the buffers object may be copied as necessary, ownership of the
|
1571
1586
|
* underlying memory blocks is retained by the caller, which must guarantee
|
1572
|
-
* that they remain valid until the handler is called.
|
1587
|
+
* that they remain valid until the completion handler is called.
|
1573
1588
|
*
|
1574
1589
|
* @param delim The delimiter character.
|
1575
1590
|
*
|
1576
|
-
* @param
|
1577
|
-
*
|
1578
|
-
*
|
1591
|
+
* @param token The @ref completion_token that will be used to produce a
|
1592
|
+
* completion handler, which will be called when the read completes.
|
1593
|
+
* Potential completion tokens include @ref use_future, @ref use_awaitable,
|
1594
|
+
* @ref yield_context, or a function object with the correct completion
|
1595
|
+
* signature. The function signature of the completion handler must be:
|
1579
1596
|
* @code void handler(
|
1580
1597
|
* // Result of operation.
|
1581
1598
|
* const boost::system::error_code& error,
|
1582
1599
|
*
|
1583
1600
|
* // The number of bytes in the dynamic buffer sequence's
|
1584
1601
|
* // get area up to and including the delimiter.
|
1585
|
-
* // 0 if an error occurred.
|
1586
1602
|
* std::size_t bytes_transferred
|
1587
1603
|
* ); @endcode
|
1588
1604
|
* Regardless of whether the asynchronous operation completes immediately or
|
1589
|
-
* not, the handler will not be invoked from within this function.
|
1590
|
-
* immediate completion, invocation of the handler will be performed in a
|
1605
|
+
* not, the completion handler will not be invoked from within this function.
|
1606
|
+
* On immediate completion, invocation of the handler will be performed in a
|
1591
1607
|
* manner equivalent to using boost::asio::post().
|
1592
1608
|
*
|
1609
|
+
* @par Completion Signature
|
1610
|
+
* @code void(boost::system::error_code, std::size_t) @endcode
|
1611
|
+
*
|
1593
1612
|
* @note After a successful async_read_until operation, the dynamic buffer
|
1594
1613
|
* sequence may contain additional data beyond the delimiter. An application
|
1595
1614
|
* will typically leave that data in the dynamic buffer sequence for a
|
@@ -1636,14 +1655,14 @@ std::size_t read_until(SyncReadStream& s, DynamicBuffer_v2 buffers,
|
|
1636
1655
|
*/
|
1637
1656
|
template <typename AsyncReadStream, typename DynamicBuffer_v1,
|
1638
1657
|
BOOST_ASIO_COMPLETION_TOKEN_FOR(void (boost::system::error_code,
|
1639
|
-
std::size_t))
|
1658
|
+
std::size_t)) ReadToken
|
1640
1659
|
BOOST_ASIO_DEFAULT_COMPLETION_TOKEN_TYPE(
|
1641
1660
|
typename AsyncReadStream::executor_type)>
|
1642
|
-
|
1661
|
+
BOOST_ASIO_INITFN_AUTO_RESULT_TYPE_PREFIX(ReadToken,
|
1643
1662
|
void (boost::system::error_code, std::size_t))
|
1644
1663
|
async_read_until(AsyncReadStream& s,
|
1645
1664
|
BOOST_ASIO_MOVE_ARG(DynamicBuffer_v1) buffers, char delim,
|
1646
|
-
BOOST_ASIO_MOVE_ARG(
|
1665
|
+
BOOST_ASIO_MOVE_ARG(ReadToken) token
|
1647
1666
|
BOOST_ASIO_DEFAULT_COMPLETION_TOKEN(
|
1648
1667
|
typename AsyncReadStream::executor_type),
|
1649
1668
|
typename constraint<
|
@@ -1651,16 +1670,21 @@ async_read_until(AsyncReadStream& s,
|
|
1651
1670
|
>::type = 0,
|
1652
1671
|
typename constraint<
|
1653
1672
|
!is_dynamic_buffer_v2<typename decay<DynamicBuffer_v1>::type>::value
|
1654
|
-
>::type = 0)
|
1673
|
+
>::type = 0)
|
1674
|
+
BOOST_ASIO_INITFN_AUTO_RESULT_TYPE_SUFFIX((
|
1675
|
+
async_initiate<ReadToken,
|
1676
|
+
void (boost::system::error_code, std::size_t)>(
|
1677
|
+
declval<detail::initiate_async_read_until_delim_v1<AsyncReadStream> >(),
|
1678
|
+
token, BOOST_ASIO_MOVE_CAST(DynamicBuffer_v1)(buffers), delim)));
|
1655
1679
|
|
1656
1680
|
/// Start an asynchronous operation to read data into a dynamic buffer sequence
|
1657
1681
|
/// until it contains a specified delimiter.
|
1658
1682
|
/**
|
1659
1683
|
* This function is used to asynchronously read data into the specified dynamic
|
1660
1684
|
* buffer sequence until the dynamic buffer sequence's get area contains the
|
1661
|
-
* specified delimiter.
|
1662
|
-
*
|
1663
|
-
* is true:
|
1685
|
+
* specified delimiter. It is an initiating function for an @ref
|
1686
|
+
* asynchronous_operation, and always returns immediately. The asynchronous
|
1687
|
+
* operation will continue until one of the following conditions is true:
|
1664
1688
|
*
|
1665
1689
|
* @li The get area of the dynamic buffer sequence contains the specified
|
1666
1690
|
* delimiter.
|
@@ -1681,27 +1705,31 @@ async_read_until(AsyncReadStream& s,
|
|
1681
1705
|
* @param buffers The dynamic buffer sequence into which the data will be read.
|
1682
1706
|
* Although the buffers object may be copied as necessary, ownership of the
|
1683
1707
|
* underlying memory blocks is retained by the caller, which must guarantee
|
1684
|
-
* that they remain valid until the handler is called.
|
1708
|
+
* that they remain valid until the completion handler is called.
|
1685
1709
|
*
|
1686
1710
|
* @param delim The delimiter string.
|
1687
1711
|
*
|
1688
|
-
* @param
|
1689
|
-
*
|
1690
|
-
*
|
1712
|
+
* @param token The @ref completion_token that will be used to produce a
|
1713
|
+
* completion handler, which will be called when the read completes.
|
1714
|
+
* Potential completion tokens include @ref use_future, @ref use_awaitable,
|
1715
|
+
* @ref yield_context, or a function object with the correct completion
|
1716
|
+
* signature. The function signature of the completion handler must be:
|
1691
1717
|
* @code void handler(
|
1692
1718
|
* // Result of operation.
|
1693
1719
|
* const boost::system::error_code& error,
|
1694
1720
|
*
|
1695
1721
|
* // The number of bytes in the dynamic buffer sequence's
|
1696
1722
|
* // get area up to and including the delimiter.
|
1697
|
-
* // 0 if an error occurred.
|
1698
1723
|
* std::size_t bytes_transferred
|
1699
1724
|
* ); @endcode
|
1700
1725
|
* Regardless of whether the asynchronous operation completes immediately or
|
1701
|
-
* not, the handler will not be invoked from within this function.
|
1702
|
-
* immediate completion, invocation of the handler will be performed in a
|
1726
|
+
* not, the completion handler will not be invoked from within this function.
|
1727
|
+
* On immediate completion, invocation of the handler will be performed in a
|
1703
1728
|
* manner equivalent to using boost::asio::post().
|
1704
1729
|
*
|
1730
|
+
* @par Completion Signature
|
1731
|
+
* @code void(boost::system::error_code, std::size_t) @endcode
|
1732
|
+
*
|
1705
1733
|
* @note After a successful async_read_until operation, the dynamic buffer
|
1706
1734
|
* sequence may contain additional data beyond the delimiter. An application
|
1707
1735
|
* will typically leave that data in the dynamic buffer sequence for a
|
@@ -1748,15 +1776,15 @@ async_read_until(AsyncReadStream& s,
|
|
1748
1776
|
*/
|
1749
1777
|
template <typename AsyncReadStream, typename DynamicBuffer_v1,
|
1750
1778
|
BOOST_ASIO_COMPLETION_TOKEN_FOR(void (boost::system::error_code,
|
1751
|
-
std::size_t))
|
1779
|
+
std::size_t)) ReadToken
|
1752
1780
|
BOOST_ASIO_DEFAULT_COMPLETION_TOKEN_TYPE(
|
1753
1781
|
typename AsyncReadStream::executor_type)>
|
1754
|
-
|
1782
|
+
BOOST_ASIO_INITFN_AUTO_RESULT_TYPE_PREFIX(ReadToken,
|
1755
1783
|
void (boost::system::error_code, std::size_t))
|
1756
1784
|
async_read_until(AsyncReadStream& s,
|
1757
1785
|
BOOST_ASIO_MOVE_ARG(DynamicBuffer_v1) buffers,
|
1758
1786
|
BOOST_ASIO_STRING_VIEW_PARAM delim,
|
1759
|
-
BOOST_ASIO_MOVE_ARG(
|
1787
|
+
BOOST_ASIO_MOVE_ARG(ReadToken) token
|
1760
1788
|
BOOST_ASIO_DEFAULT_COMPLETION_TOKEN(
|
1761
1789
|
typename AsyncReadStream::executor_type),
|
1762
1790
|
typename constraint<
|
@@ -1764,7 +1792,14 @@ async_read_until(AsyncReadStream& s,
|
|
1764
1792
|
>::type = 0,
|
1765
1793
|
typename constraint<
|
1766
1794
|
!is_dynamic_buffer_v2<typename decay<DynamicBuffer_v1>::type>::value
|
1767
|
-
>::type = 0)
|
1795
|
+
>::type = 0)
|
1796
|
+
BOOST_ASIO_INITFN_AUTO_RESULT_TYPE_SUFFIX((
|
1797
|
+
async_initiate<ReadToken,
|
1798
|
+
void (boost::system::error_code, std::size_t)>(
|
1799
|
+
declval<detail::initiate_async_read_until_delim_string_v1<
|
1800
|
+
AsyncReadStream> >(),
|
1801
|
+
token, BOOST_ASIO_MOVE_CAST(DynamicBuffer_v1)(buffers),
|
1802
|
+
static_cast<std::string>(delim))));
|
1768
1803
|
|
1769
1804
|
#if !defined(BOOST_ASIO_NO_EXTENSIONS)
|
1770
1805
|
#if defined(BOOST_ASIO_HAS_BOOST_REGEX) \
|
@@ -1775,9 +1810,10 @@ async_read_until(AsyncReadStream& s,
|
|
1775
1810
|
/**
|
1776
1811
|
* This function is used to asynchronously read data into the specified dynamic
|
1777
1812
|
* buffer sequence until the dynamic buffer sequence's get area contains some
|
1778
|
-
* data that matches a regular expression.
|
1779
|
-
*
|
1780
|
-
* following conditions
|
1813
|
+
* data that matches a regular expression. It is an initiating function for an
|
1814
|
+
* @ref asynchronous_operation, and always returns immediately. The
|
1815
|
+
* asynchronous operation will continue until one of the following conditions
|
1816
|
+
* is true:
|
1781
1817
|
*
|
1782
1818
|
* @li A substring of the dynamic buffer sequence's get area matches the regular
|
1783
1819
|
* expression.
|
@@ -1799,13 +1835,15 @@ async_read_until(AsyncReadStream& s,
|
|
1799
1835
|
* @param buffers The dynamic buffer sequence into which the data will be read.
|
1800
1836
|
* Although the buffers object may be copied as necessary, ownership of the
|
1801
1837
|
* underlying memory blocks is retained by the caller, which must guarantee
|
1802
|
-
* that they remain valid until the handler is called.
|
1838
|
+
* that they remain valid until the completion handler is called.
|
1803
1839
|
*
|
1804
1840
|
* @param expr The regular expression.
|
1805
1841
|
*
|
1806
|
-
* @param
|
1807
|
-
*
|
1808
|
-
*
|
1842
|
+
* @param token The @ref completion_token that will be used to produce a
|
1843
|
+
* completion handler, which will be called when the read completes.
|
1844
|
+
* Potential completion tokens include @ref use_future, @ref use_awaitable,
|
1845
|
+
* @ref yield_context, or a function object with the correct completion
|
1846
|
+
* signature. The function signature of the completion handler must be:
|
1809
1847
|
* @code void handler(
|
1810
1848
|
* // Result of operation.
|
1811
1849
|
* const boost::system::error_code& error,
|
@@ -1817,10 +1855,13 @@ async_read_until(AsyncReadStream& s,
|
|
1817
1855
|
* std::size_t bytes_transferred
|
1818
1856
|
* ); @endcode
|
1819
1857
|
* Regardless of whether the asynchronous operation completes immediately or
|
1820
|
-
* not, the handler will not be invoked from within this function.
|
1821
|
-
* immediate completion, invocation of the handler will be performed in a
|
1858
|
+
* not, the completion handler will not be invoked from within this function.
|
1859
|
+
* On immediate completion, invocation of the handler will be performed in a
|
1822
1860
|
* manner equivalent to using boost::asio::post().
|
1823
1861
|
*
|
1862
|
+
* @par Completion Signature
|
1863
|
+
* @code void(boost::system::error_code, std::size_t) @endcode
|
1864
|
+
*
|
1824
1865
|
* @note After a successful async_read_until operation, the dynamic buffer
|
1825
1866
|
* sequence may contain additional data beyond that which matched the regular
|
1826
1867
|
* expression. An application will typically leave that data in the dynamic
|
@@ -1868,15 +1909,15 @@ async_read_until(AsyncReadStream& s,
|
|
1868
1909
|
*/
|
1869
1910
|
template <typename AsyncReadStream, typename DynamicBuffer_v1,
|
1870
1911
|
BOOST_ASIO_COMPLETION_TOKEN_FOR(void (boost::system::error_code,
|
1871
|
-
std::size_t))
|
1912
|
+
std::size_t)) ReadToken
|
1872
1913
|
BOOST_ASIO_DEFAULT_COMPLETION_TOKEN_TYPE(
|
1873
1914
|
typename AsyncReadStream::executor_type)>
|
1874
|
-
|
1915
|
+
BOOST_ASIO_INITFN_AUTO_RESULT_TYPE_PREFIX(ReadToken,
|
1875
1916
|
void (boost::system::error_code, std::size_t))
|
1876
1917
|
async_read_until(AsyncReadStream& s,
|
1877
1918
|
BOOST_ASIO_MOVE_ARG(DynamicBuffer_v1) buffers,
|
1878
1919
|
const boost::regex& expr,
|
1879
|
-
BOOST_ASIO_MOVE_ARG(
|
1920
|
+
BOOST_ASIO_MOVE_ARG(ReadToken) token
|
1880
1921
|
BOOST_ASIO_DEFAULT_COMPLETION_TOKEN(
|
1881
1922
|
typename AsyncReadStream::executor_type),
|
1882
1923
|
typename constraint<
|
@@ -1884,7 +1925,12 @@ async_read_until(AsyncReadStream& s,
|
|
1884
1925
|
>::type = 0,
|
1885
1926
|
typename constraint<
|
1886
1927
|
!is_dynamic_buffer_v2<typename decay<DynamicBuffer_v1>::type>::value
|
1887
|
-
>::type = 0)
|
1928
|
+
>::type = 0)
|
1929
|
+
BOOST_ASIO_INITFN_AUTO_RESULT_TYPE_SUFFIX((
|
1930
|
+
async_initiate<ReadToken,
|
1931
|
+
void (boost::system::error_code, std::size_t)>(
|
1932
|
+
declval<detail::initiate_async_read_until_expr_v1<AsyncReadStream> >(),
|
1933
|
+
token, BOOST_ASIO_MOVE_CAST(DynamicBuffer_v1)(buffers), expr)));
|
1888
1934
|
|
1889
1935
|
#endif // defined(BOOST_ASIO_HAS_BOOST_REGEX)
|
1890
1936
|
// || defined(GENERATING_DOCUMENTATION)
|
@@ -1895,9 +1941,9 @@ async_read_until(AsyncReadStream& s,
|
|
1895
1941
|
* This function is used to asynchronously read data into the specified dynamic
|
1896
1942
|
* buffer sequence until a user-defined match condition function object, when
|
1897
1943
|
* applied to the data contained in the dynamic buffer sequence, indicates a
|
1898
|
-
* successful match.
|
1899
|
-
*
|
1900
|
-
* is true:
|
1944
|
+
* successful match. It is an initiating function for an @ref
|
1945
|
+
* asynchronous_operation, and always returns immediately. The asynchronous
|
1946
|
+
* operation will continue until one of the following conditions is true:
|
1901
1947
|
*
|
1902
1948
|
* @li The match condition function object returns a std::pair where the second
|
1903
1949
|
* element evaluates to true.
|
@@ -1918,7 +1964,7 @@ async_read_until(AsyncReadStream& s,
|
|
1918
1964
|
* @param buffers The dynamic buffer sequence into which the data will be read.
|
1919
1965
|
* Although the buffers object may be copied as necessary, ownership of the
|
1920
1966
|
* underlying memory blocks is retained by the caller, which must guarantee
|
1921
|
-
* that they remain valid until the handler is called.
|
1967
|
+
* that they remain valid until the completion handler is called.
|
1922
1968
|
*
|
1923
1969
|
* @param match_condition The function object to be called to determine whether
|
1924
1970
|
* a match exists. The signature of the function object must be:
|
@@ -1935,9 +1981,11 @@ async_read_until(AsyncReadStream& s,
|
|
1935
1981
|
* @c second member of the return value is true if a match has been found, false
|
1936
1982
|
* otherwise.
|
1937
1983
|
*
|
1938
|
-
* @param
|
1939
|
-
*
|
1940
|
-
*
|
1984
|
+
* @param token The @ref completion_token that will be used to produce a
|
1985
|
+
* completion handler, which will be called when the read completes.
|
1986
|
+
* Potential completion tokens include @ref use_future, @ref use_awaitable,
|
1987
|
+
* @ref yield_context, or a function object with the correct completion
|
1988
|
+
* signature. The function signature of the completion handler must be:
|
1941
1989
|
* @code void handler(
|
1942
1990
|
* // Result of operation.
|
1943
1991
|
* const boost::system::error_code& error,
|
@@ -1948,8 +1996,8 @@ async_read_until(AsyncReadStream& s,
|
|
1948
1996
|
* std::size_t bytes_transferred
|
1949
1997
|
* ); @endcode
|
1950
1998
|
* Regardless of whether the asynchronous operation completes immediately or
|
1951
|
-
* not, the handler will not be invoked from within this function.
|
1952
|
-
* immediate completion, invocation of the handler will be performed in a
|
1999
|
+
* not, the completion handler will not be invoked from within this function.
|
2000
|
+
* On immediate completion, invocation of the handler will be performed in a
|
1953
2001
|
* manner equivalent to using boost::asio::post().
|
1954
2002
|
*
|
1955
2003
|
* @note After a successful async_read_until operation, the dynamic buffer
|
@@ -1957,6 +2005,9 @@ async_read_until(AsyncReadStream& s,
|
|
1957
2005
|
* object. An application will typically leave that data in the dynamic buffer
|
1958
2006
|
* sequence for a subsequent async_read_until operation to examine.
|
1959
2007
|
*
|
2008
|
+
* @par Completion Signature
|
2009
|
+
* @code void(boost::system::error_code, std::size_t) @endcode
|
2010
|
+
*
|
1960
2011
|
* @note The default implementation of the @c is_match_condition type trait
|
1961
2012
|
* evaluates to true for function pointers and function objects with a
|
1962
2013
|
* @c result_type typedef. It must be specialised for other user-defined
|
@@ -2031,15 +2082,15 @@ async_read_until(AsyncReadStream& s,
|
|
2031
2082
|
template <typename AsyncReadStream,
|
2032
2083
|
typename DynamicBuffer_v1, typename MatchCondition,
|
2033
2084
|
BOOST_ASIO_COMPLETION_TOKEN_FOR(void (boost::system::error_code,
|
2034
|
-
std::size_t))
|
2085
|
+
std::size_t)) ReadToken
|
2035
2086
|
BOOST_ASIO_DEFAULT_COMPLETION_TOKEN_TYPE(
|
2036
2087
|
typename AsyncReadStream::executor_type)>
|
2037
|
-
|
2088
|
+
BOOST_ASIO_INITFN_AUTO_RESULT_TYPE_PREFIX(ReadToken,
|
2038
2089
|
void (boost::system::error_code, std::size_t))
|
2039
2090
|
async_read_until(AsyncReadStream& s,
|
2040
2091
|
BOOST_ASIO_MOVE_ARG(DynamicBuffer_v1) buffers,
|
2041
2092
|
MatchCondition match_condition,
|
2042
|
-
BOOST_ASIO_MOVE_ARG(
|
2093
|
+
BOOST_ASIO_MOVE_ARG(ReadToken) token
|
2043
2094
|
BOOST_ASIO_DEFAULT_COMPLETION_TOKEN(
|
2044
2095
|
typename AsyncReadStream::executor_type),
|
2045
2096
|
typename constraint<
|
@@ -2050,7 +2101,13 @@ async_read_until(AsyncReadStream& s,
|
|
2050
2101
|
>::type = 0,
|
2051
2102
|
typename constraint<
|
2052
2103
|
!is_dynamic_buffer_v2<typename decay<DynamicBuffer_v1>::type>::value
|
2053
|
-
>::type = 0)
|
2104
|
+
>::type = 0)
|
2105
|
+
BOOST_ASIO_INITFN_AUTO_RESULT_TYPE_SUFFIX((
|
2106
|
+
async_initiate<ReadToken,
|
2107
|
+
void (boost::system::error_code, std::size_t)>(
|
2108
|
+
declval<detail::initiate_async_read_until_match_v1<AsyncReadStream> >(),
|
2109
|
+
token, BOOST_ASIO_MOVE_CAST(DynamicBuffer_v1)(buffers),
|
2110
|
+
match_condition)));
|
2054
2111
|
|
2055
2112
|
#if !defined(BOOST_ASIO_NO_IOSTREAM)
|
2056
2113
|
|
@@ -2059,8 +2116,9 @@ async_read_until(AsyncReadStream& s,
|
|
2059
2116
|
/**
|
2060
2117
|
* This function is used to asynchronously read data into the specified
|
2061
2118
|
* streambuf until the streambuf's get area contains the specified delimiter.
|
2062
|
-
*
|
2063
|
-
* will continue until one of
|
2119
|
+
* It is an initiating function for an @ref asynchronous_operation, and always
|
2120
|
+
* returns immediately. The asynchronous operation will continue until one of
|
2121
|
+
* the following conditions is true:
|
2064
2122
|
*
|
2065
2123
|
* @li The get area of the streambuf contains the specified delimiter.
|
2066
2124
|
*
|
@@ -2079,13 +2137,15 @@ async_read_until(AsyncReadStream& s,
|
|
2079
2137
|
*
|
2080
2138
|
* @param b A streambuf object into which the data will be read. Ownership of
|
2081
2139
|
* the streambuf is retained by the caller, which must guarantee that it remains
|
2082
|
-
* valid until the handler is called.
|
2140
|
+
* valid until the completion handler is called.
|
2083
2141
|
*
|
2084
2142
|
* @param delim The delimiter character.
|
2085
2143
|
*
|
2086
|
-
* @param
|
2087
|
-
*
|
2088
|
-
*
|
2144
|
+
* @param token The @ref completion_token that will be used to produce a
|
2145
|
+
* completion handler, which will be called when the read completes.
|
2146
|
+
* Potential completion tokens include @ref use_future, @ref use_awaitable,
|
2147
|
+
* @ref yield_context, or a function object with the correct completion
|
2148
|
+
* signature. The function signature of the completion handler must be:
|
2089
2149
|
* @code void handler(
|
2090
2150
|
* // Result of operation.
|
2091
2151
|
* const boost::system::error_code& error,
|
@@ -2096,10 +2156,13 @@ async_read_until(AsyncReadStream& s,
|
|
2096
2156
|
* std::size_t bytes_transferred
|
2097
2157
|
* ); @endcode
|
2098
2158
|
* Regardless of whether the asynchronous operation completes immediately or
|
2099
|
-
* not, the handler will not be invoked from within this function.
|
2100
|
-
* immediate completion, invocation of the handler will be performed in a
|
2159
|
+
* not, the completion handler will not be invoked from within this function.
|
2160
|
+
* On immediate completion, invocation of the handler will be performed in a
|
2101
2161
|
* manner equivalent to using boost::asio::post().
|
2102
2162
|
*
|
2163
|
+
* @par Completion Signature
|
2164
|
+
* @code void(boost::system::error_code, std::size_t) @endcode
|
2165
|
+
*
|
2103
2166
|
* @note After a successful async_read_until operation, the streambuf may
|
2104
2167
|
* contain additional data beyond the delimiter. An application will typically
|
2105
2168
|
* leave that data in the streambuf for a subsequent async_read_until operation
|
@@ -2145,24 +2208,28 @@ async_read_until(AsyncReadStream& s,
|
|
2145
2208
|
*/
|
2146
2209
|
template <typename AsyncReadStream, typename Allocator,
|
2147
2210
|
BOOST_ASIO_COMPLETION_TOKEN_FOR(void (boost::system::error_code,
|
2148
|
-
std::size_t))
|
2211
|
+
std::size_t)) ReadToken
|
2149
2212
|
BOOST_ASIO_DEFAULT_COMPLETION_TOKEN_TYPE(
|
2150
2213
|
typename AsyncReadStream::executor_type)>
|
2151
|
-
|
2214
|
+
BOOST_ASIO_INITFN_AUTO_RESULT_TYPE_PREFIX(ReadToken,
|
2152
2215
|
void (boost::system::error_code, std::size_t))
|
2153
2216
|
async_read_until(AsyncReadStream& s,
|
2154
2217
|
boost::asio::basic_streambuf<Allocator>& b, char delim,
|
2155
|
-
BOOST_ASIO_MOVE_ARG(
|
2218
|
+
BOOST_ASIO_MOVE_ARG(ReadToken) token
|
2156
2219
|
BOOST_ASIO_DEFAULT_COMPLETION_TOKEN(
|
2157
|
-
typename AsyncReadStream::executor_type))
|
2220
|
+
typename AsyncReadStream::executor_type))
|
2221
|
+
BOOST_ASIO_INITFN_AUTO_RESULT_TYPE_SUFFIX((
|
2222
|
+
async_read_until(s, basic_streambuf_ref<Allocator>(b),
|
2223
|
+
delim, BOOST_ASIO_MOVE_CAST(ReadToken)(token))));
|
2158
2224
|
|
2159
2225
|
/// Start an asynchronous operation to read data into a streambuf until it
|
2160
2226
|
/// contains a specified delimiter.
|
2161
2227
|
/**
|
2162
2228
|
* This function is used to asynchronously read data into the specified
|
2163
2229
|
* streambuf until the streambuf's get area contains the specified delimiter.
|
2164
|
-
*
|
2165
|
-
* will continue until one of
|
2230
|
+
* It is an initiating function for an @ref asynchronous_operation, and always
|
2231
|
+
* returns immediately. The asynchronous operation will continue until one of
|
2232
|
+
* the following conditions is true:
|
2166
2233
|
*
|
2167
2234
|
* @li The get area of the streambuf contains the specified delimiter.
|
2168
2235
|
*
|
@@ -2181,13 +2248,15 @@ async_read_until(AsyncReadStream& s,
|
|
2181
2248
|
*
|
2182
2249
|
* @param b A streambuf object into which the data will be read. Ownership of
|
2183
2250
|
* the streambuf is retained by the caller, which must guarantee that it remains
|
2184
|
-
* valid until the handler is called.
|
2251
|
+
* valid until the completion handler is called.
|
2185
2252
|
*
|
2186
2253
|
* @param delim The delimiter string.
|
2187
2254
|
*
|
2188
|
-
* @param
|
2189
|
-
*
|
2190
|
-
*
|
2255
|
+
* @param token The @ref completion_token that will be used to produce a
|
2256
|
+
* completion handler, which will be called when the read completes.
|
2257
|
+
* Potential completion tokens include @ref use_future, @ref use_awaitable,
|
2258
|
+
* @ref yield_context, or a function object with the correct completion
|
2259
|
+
* signature. The function signature of the completion handler must be:
|
2191
2260
|
* @code void handler(
|
2192
2261
|
* // Result of operation.
|
2193
2262
|
* const boost::system::error_code& error,
|
@@ -2198,10 +2267,13 @@ async_read_until(AsyncReadStream& s,
|
|
2198
2267
|
* std::size_t bytes_transferred
|
2199
2268
|
* ); @endcode
|
2200
2269
|
* Regardless of whether the asynchronous operation completes immediately or
|
2201
|
-
* not, the handler will not be invoked from within this function.
|
2202
|
-
* immediate completion, invocation of the handler will be performed in a
|
2270
|
+
* not, the completion handler will not be invoked from within this function.
|
2271
|
+
* On immediate completion, invocation of the handler will be performed in a
|
2203
2272
|
* manner equivalent to using boost::asio::post().
|
2204
2273
|
*
|
2274
|
+
* @par Completion Signature
|
2275
|
+
* @code void(boost::system::error_code, std::size_t) @endcode
|
2276
|
+
*
|
2205
2277
|
* @note After a successful async_read_until operation, the streambuf may
|
2206
2278
|
* contain additional data beyond the delimiter. An application will typically
|
2207
2279
|
* leave that data in the streambuf for a subsequent async_read_until operation
|
@@ -2247,17 +2319,20 @@ async_read_until(AsyncReadStream& s,
|
|
2247
2319
|
*/
|
2248
2320
|
template <typename AsyncReadStream, typename Allocator,
|
2249
2321
|
BOOST_ASIO_COMPLETION_TOKEN_FOR(void (boost::system::error_code,
|
2250
|
-
std::size_t))
|
2322
|
+
std::size_t)) ReadToken
|
2251
2323
|
BOOST_ASIO_DEFAULT_COMPLETION_TOKEN_TYPE(
|
2252
2324
|
typename AsyncReadStream::executor_type)>
|
2253
|
-
|
2325
|
+
BOOST_ASIO_INITFN_AUTO_RESULT_TYPE_PREFIX(ReadToken,
|
2254
2326
|
void (boost::system::error_code, std::size_t))
|
2255
2327
|
async_read_until(AsyncReadStream& s,
|
2256
2328
|
boost::asio::basic_streambuf<Allocator>& b,
|
2257
2329
|
BOOST_ASIO_STRING_VIEW_PARAM delim,
|
2258
|
-
BOOST_ASIO_MOVE_ARG(
|
2330
|
+
BOOST_ASIO_MOVE_ARG(ReadToken) token
|
2259
2331
|
BOOST_ASIO_DEFAULT_COMPLETION_TOKEN(
|
2260
|
-
typename AsyncReadStream::executor_type))
|
2332
|
+
typename AsyncReadStream::executor_type))
|
2333
|
+
BOOST_ASIO_INITFN_AUTO_RESULT_TYPE_SUFFIX((
|
2334
|
+
async_read_until(s, basic_streambuf_ref<Allocator>(b),
|
2335
|
+
delim, BOOST_ASIO_MOVE_CAST(ReadToken)(token))));
|
2261
2336
|
|
2262
2337
|
#if defined(BOOST_ASIO_HAS_BOOST_REGEX) \
|
2263
2338
|
|| defined(GENERATING_DOCUMENTATION)
|
@@ -2267,9 +2342,9 @@ async_read_until(AsyncReadStream& s,
|
|
2267
2342
|
/**
|
2268
2343
|
* This function is used to asynchronously read data into the specified
|
2269
2344
|
* streambuf until the streambuf's get area contains some data that matches a
|
2270
|
-
* regular expression.
|
2271
|
-
*
|
2272
|
-
* is true:
|
2345
|
+
* regular expression. It is an initiating function for an @ref
|
2346
|
+
* asynchronous_operation, and always returns immediately. The asynchronous
|
2347
|
+
* operation will continue until one of the following conditions is true:
|
2273
2348
|
*
|
2274
2349
|
* @li A substring of the streambuf's get area matches the regular expression.
|
2275
2350
|
*
|
@@ -2289,13 +2364,15 @@ async_read_until(AsyncReadStream& s,
|
|
2289
2364
|
*
|
2290
2365
|
* @param b A streambuf object into which the data will be read. Ownership of
|
2291
2366
|
* the streambuf is retained by the caller, which must guarantee that it remains
|
2292
|
-
* valid until the handler is called.
|
2367
|
+
* valid until the completion handler is called.
|
2293
2368
|
*
|
2294
2369
|
* @param expr The regular expression.
|
2295
2370
|
*
|
2296
|
-
* @param
|
2297
|
-
*
|
2298
|
-
*
|
2371
|
+
* @param token The @ref completion_token that will be used to produce a
|
2372
|
+
* completion handler, which will be called when the read completes.
|
2373
|
+
* Potential completion tokens include @ref use_future, @ref use_awaitable,
|
2374
|
+
* @ref yield_context, or a function object with the correct completion
|
2375
|
+
* signature. The function signature of the completion handler must be:
|
2299
2376
|
* @code void handler(
|
2300
2377
|
* // Result of operation.
|
2301
2378
|
* const boost::system::error_code& error,
|
@@ -2307,10 +2384,13 @@ async_read_until(AsyncReadStream& s,
|
|
2307
2384
|
* std::size_t bytes_transferred
|
2308
2385
|
* ); @endcode
|
2309
2386
|
* Regardless of whether the asynchronous operation completes immediately or
|
2310
|
-
* not, the handler will not be invoked from within this function.
|
2311
|
-
* immediate completion, invocation of the handler will be performed in a
|
2387
|
+
* not, the completion handler will not be invoked from within this function.
|
2388
|
+
* On immediate completion, invocation of the handler will be performed in a
|
2312
2389
|
* manner equivalent to using boost::asio::post().
|
2313
2390
|
*
|
2391
|
+
* @par Completion Signature
|
2392
|
+
* @code void(boost::system::error_code, std::size_t) @endcode
|
2393
|
+
*
|
2314
2394
|
* @note After a successful async_read_until operation, the streambuf may
|
2315
2395
|
* contain additional data beyond that which matched the regular expression. An
|
2316
2396
|
* application will typically leave that data in the streambuf for a subsequent
|
@@ -2357,16 +2437,19 @@ async_read_until(AsyncReadStream& s,
|
|
2357
2437
|
*/
|
2358
2438
|
template <typename AsyncReadStream, typename Allocator,
|
2359
2439
|
BOOST_ASIO_COMPLETION_TOKEN_FOR(void (boost::system::error_code,
|
2360
|
-
std::size_t))
|
2440
|
+
std::size_t)) ReadToken
|
2361
2441
|
BOOST_ASIO_DEFAULT_COMPLETION_TOKEN_TYPE(
|
2362
2442
|
typename AsyncReadStream::executor_type)>
|
2363
|
-
|
2443
|
+
BOOST_ASIO_INITFN_AUTO_RESULT_TYPE_PREFIX(ReadToken,
|
2364
2444
|
void (boost::system::error_code, std::size_t))
|
2365
2445
|
async_read_until(AsyncReadStream& s,
|
2366
2446
|
boost::asio::basic_streambuf<Allocator>& b, const boost::regex& expr,
|
2367
|
-
BOOST_ASIO_MOVE_ARG(
|
2447
|
+
BOOST_ASIO_MOVE_ARG(ReadToken) token
|
2368
2448
|
BOOST_ASIO_DEFAULT_COMPLETION_TOKEN(
|
2369
|
-
typename AsyncReadStream::executor_type))
|
2449
|
+
typename AsyncReadStream::executor_type))
|
2450
|
+
BOOST_ASIO_INITFN_AUTO_RESULT_TYPE_SUFFIX((
|
2451
|
+
async_read_until(s, basic_streambuf_ref<Allocator>(b),
|
2452
|
+
expr, BOOST_ASIO_MOVE_CAST(ReadToken)(token))));
|
2370
2453
|
|
2371
2454
|
#endif // defined(BOOST_ASIO_HAS_BOOST_REGEX)
|
2372
2455
|
// || defined(GENERATING_DOCUMENTATION)
|
@@ -2376,9 +2459,10 @@ async_read_until(AsyncReadStream& s,
|
|
2376
2459
|
/**
|
2377
2460
|
* This function is used to asynchronously read data into the specified
|
2378
2461
|
* streambuf until a user-defined match condition function object, when applied
|
2379
|
-
* to the data contained in the streambuf, indicates a successful match.
|
2380
|
-
*
|
2381
|
-
*
|
2462
|
+
* to the data contained in the streambuf, indicates a successful match. It is
|
2463
|
+
* an initiating function for an @ref asynchronous_operation, and always
|
2464
|
+
* returns immediately. The asynchronous operation will continue until one of
|
2465
|
+
* the following conditions is true:
|
2382
2466
|
*
|
2383
2467
|
* @li The match condition function object returns a std::pair where the second
|
2384
2468
|
* element evaluates to true.
|
@@ -2413,9 +2497,11 @@ async_read_until(AsyncReadStream& s,
|
|
2413
2497
|
* @c second member of the return value is true if a match has been found, false
|
2414
2498
|
* otherwise.
|
2415
2499
|
*
|
2416
|
-
* @param
|
2417
|
-
*
|
2418
|
-
*
|
2500
|
+
* @param token The @ref completion_token that will be used to produce a
|
2501
|
+
* completion handler, which will be called when the read completes.
|
2502
|
+
* Potential completion tokens include @ref use_future, @ref use_awaitable,
|
2503
|
+
* @ref yield_context, or a function object with the correct completion
|
2504
|
+
* signature. The function signature of the completion handler must be:
|
2419
2505
|
* @code void handler(
|
2420
2506
|
* // Result of operation.
|
2421
2507
|
* const boost::system::error_code& error,
|
@@ -2426,8 +2512,8 @@ async_read_until(AsyncReadStream& s,
|
|
2426
2512
|
* std::size_t bytes_transferred
|
2427
2513
|
* ); @endcode
|
2428
2514
|
* Regardless of whether the asynchronous operation completes immediately or
|
2429
|
-
* not, the handler will not be invoked from within this function.
|
2430
|
-
* immediate completion, invocation of the handler will be performed in a
|
2515
|
+
* not, the completion handler will not be invoked from within this function.
|
2516
|
+
* On immediate completion, invocation of the handler will be performed in a
|
2431
2517
|
* manner equivalent to using boost::asio::post().
|
2432
2518
|
*
|
2433
2519
|
* @note After a successful async_read_until operation, the streambuf may
|
@@ -2435,6 +2521,9 @@ async_read_until(AsyncReadStream& s,
|
|
2435
2521
|
* application will typically leave that data in the streambuf for a subsequent
|
2436
2522
|
* async_read_until operation to examine.
|
2437
2523
|
*
|
2524
|
+
* @par Completion Signature
|
2525
|
+
* @code void(boost::system::error_code, std::size_t) @endcode
|
2526
|
+
*
|
2438
2527
|
* @note The default implementation of the @c is_match_condition type trait
|
2439
2528
|
* evaluates to true for function pointers and function objects with a
|
2440
2529
|
* @c result_type typedef. It must be specialised for other user-defined
|
@@ -2507,18 +2596,21 @@ async_read_until(AsyncReadStream& s,
|
|
2507
2596
|
*/
|
2508
2597
|
template <typename AsyncReadStream, typename Allocator, typename MatchCondition,
|
2509
2598
|
BOOST_ASIO_COMPLETION_TOKEN_FOR(void (boost::system::error_code,
|
2510
|
-
std::size_t))
|
2599
|
+
std::size_t)) ReadToken
|
2511
2600
|
BOOST_ASIO_DEFAULT_COMPLETION_TOKEN_TYPE(
|
2512
2601
|
typename AsyncReadStream::executor_type)>
|
2513
|
-
|
2602
|
+
BOOST_ASIO_INITFN_AUTO_RESULT_TYPE_PREFIX(ReadToken,
|
2514
2603
|
void (boost::system::error_code, std::size_t))
|
2515
2604
|
async_read_until(AsyncReadStream& s,
|
2516
2605
|
boost::asio::basic_streambuf<Allocator>& b,
|
2517
2606
|
MatchCondition match_condition,
|
2518
|
-
BOOST_ASIO_MOVE_ARG(
|
2607
|
+
BOOST_ASIO_MOVE_ARG(ReadToken) token
|
2519
2608
|
BOOST_ASIO_DEFAULT_COMPLETION_TOKEN(
|
2520
2609
|
typename AsyncReadStream::executor_type),
|
2521
|
-
typename constraint<is_match_condition<MatchCondition>::value>::type = 0)
|
2610
|
+
typename constraint<is_match_condition<MatchCondition>::value>::type = 0)
|
2611
|
+
BOOST_ASIO_INITFN_AUTO_RESULT_TYPE_SUFFIX((
|
2612
|
+
async_read_until(s, basic_streambuf_ref<Allocator>(b),
|
2613
|
+
match_condition, BOOST_ASIO_MOVE_CAST(ReadToken)(token))));
|
2522
2614
|
|
2523
2615
|
#endif // !defined(BOOST_ASIO_NO_IOSTREAM)
|
2524
2616
|
#endif // !defined(BOOST_ASIO_NO_EXTENSIONS)
|
@@ -2529,9 +2621,9 @@ async_read_until(AsyncReadStream& s,
|
|
2529
2621
|
/**
|
2530
2622
|
* This function is used to asynchronously read data into the specified dynamic
|
2531
2623
|
* buffer sequence until the dynamic buffer sequence's get area contains the
|
2532
|
-
* specified delimiter.
|
2533
|
-
*
|
2534
|
-
* is true:
|
2624
|
+
* specified delimiter. It is an initiating function for an @ref
|
2625
|
+
* asynchronous_operation, and always returns immediately. The asynchronous
|
2626
|
+
* operation will continue until one of the following conditions is true:
|
2535
2627
|
*
|
2536
2628
|
* @li The get area of the dynamic buffer sequence contains the specified
|
2537
2629
|
* delimiter.
|
@@ -2552,13 +2644,15 @@ async_read_until(AsyncReadStream& s,
|
|
2552
2644
|
* @param buffers The dynamic buffer sequence into which the data will be read.
|
2553
2645
|
* Although the buffers object may be copied as necessary, ownership of the
|
2554
2646
|
* underlying memory blocks is retained by the caller, which must guarantee
|
2555
|
-
* that they remain valid until the handler is called.
|
2647
|
+
* that they remain valid until the completion handler is called.
|
2556
2648
|
*
|
2557
2649
|
* @param delim The delimiter character.
|
2558
2650
|
*
|
2559
|
-
* @param
|
2560
|
-
*
|
2561
|
-
*
|
2651
|
+
* @param token The @ref completion_token that will be used to produce a
|
2652
|
+
* completion handler, which will be called when the read completes.
|
2653
|
+
* Potential completion tokens include @ref use_future, @ref use_awaitable,
|
2654
|
+
* @ref yield_context, or a function object with the correct completion
|
2655
|
+
* signature. The function signature of the completion handler must be:
|
2562
2656
|
* @code void handler(
|
2563
2657
|
* // Result of operation.
|
2564
2658
|
* const boost::system::error_code& error,
|
@@ -2569,10 +2663,13 @@ async_read_until(AsyncReadStream& s,
|
|
2569
2663
|
* std::size_t bytes_transferred
|
2570
2664
|
* ); @endcode
|
2571
2665
|
* Regardless of whether the asynchronous operation completes immediately or
|
2572
|
-
* not, the handler will not be invoked from within this function.
|
2573
|
-
* immediate completion, invocation of the handler will be performed in a
|
2666
|
+
* not, the completion handler will not be invoked from within this function.
|
2667
|
+
* On immediate completion, invocation of the handler will be performed in a
|
2574
2668
|
* manner equivalent to using boost::asio::post().
|
2575
2669
|
*
|
2670
|
+
* @par Completion Signature
|
2671
|
+
* @code void(boost::system::error_code, std::size_t) @endcode
|
2672
|
+
*
|
2576
2673
|
* @note After a successful async_read_until operation, the dynamic buffer
|
2577
2674
|
* sequence may contain additional data beyond the delimiter. An application
|
2578
2675
|
* will typically leave that data in the dynamic buffer sequence for a
|
@@ -2619,27 +2716,32 @@ async_read_until(AsyncReadStream& s,
|
|
2619
2716
|
*/
|
2620
2717
|
template <typename AsyncReadStream, typename DynamicBuffer_v2,
|
2621
2718
|
BOOST_ASIO_COMPLETION_TOKEN_FOR(void (boost::system::error_code,
|
2622
|
-
std::size_t))
|
2719
|
+
std::size_t)) ReadToken
|
2623
2720
|
BOOST_ASIO_DEFAULT_COMPLETION_TOKEN_TYPE(
|
2624
2721
|
typename AsyncReadStream::executor_type)>
|
2625
|
-
|
2722
|
+
BOOST_ASIO_INITFN_AUTO_RESULT_TYPE_PREFIX(ReadToken,
|
2626
2723
|
void (boost::system::error_code, std::size_t))
|
2627
2724
|
async_read_until(AsyncReadStream& s, DynamicBuffer_v2 buffers, char delim,
|
2628
|
-
BOOST_ASIO_MOVE_ARG(
|
2725
|
+
BOOST_ASIO_MOVE_ARG(ReadToken) token
|
2629
2726
|
BOOST_ASIO_DEFAULT_COMPLETION_TOKEN(
|
2630
2727
|
typename AsyncReadStream::executor_type),
|
2631
2728
|
typename constraint<
|
2632
2729
|
is_dynamic_buffer_v2<DynamicBuffer_v2>::value
|
2633
|
-
>::type = 0)
|
2730
|
+
>::type = 0)
|
2731
|
+
BOOST_ASIO_INITFN_AUTO_RESULT_TYPE_SUFFIX((
|
2732
|
+
async_initiate<ReadToken,
|
2733
|
+
void (boost::system::error_code, std::size_t)>(
|
2734
|
+
declval<detail::initiate_async_read_until_delim_v2<AsyncReadStream> >(),
|
2735
|
+
token, BOOST_ASIO_MOVE_CAST(DynamicBuffer_v2)(buffers), delim)));
|
2634
2736
|
|
2635
2737
|
/// Start an asynchronous operation to read data into a dynamic buffer sequence
|
2636
2738
|
/// until it contains a specified delimiter.
|
2637
2739
|
/**
|
2638
2740
|
* This function is used to asynchronously read data into the specified dynamic
|
2639
2741
|
* buffer sequence until the dynamic buffer sequence's get area contains the
|
2640
|
-
* specified delimiter.
|
2641
|
-
*
|
2642
|
-
* is true:
|
2742
|
+
* specified delimiter. It is an initiating function for an @ref
|
2743
|
+
* asynchronous_operation, and always returns immediately. The asynchronous
|
2744
|
+
* operation will continue until one of the following conditions is true:
|
2643
2745
|
*
|
2644
2746
|
* @li The get area of the dynamic buffer sequence contains the specified
|
2645
2747
|
* delimiter.
|
@@ -2660,27 +2762,31 @@ async_read_until(AsyncReadStream& s, DynamicBuffer_v2 buffers, char delim,
|
|
2660
2762
|
* @param buffers The dynamic buffer sequence into which the data will be read.
|
2661
2763
|
* Although the buffers object may be copied as necessary, ownership of the
|
2662
2764
|
* underlying memory blocks is retained by the caller, which must guarantee
|
2663
|
-
* that they remain valid until the handler is called.
|
2765
|
+
* that they remain valid until the completion handler is called.
|
2664
2766
|
*
|
2665
2767
|
* @param delim The delimiter string.
|
2666
2768
|
*
|
2667
|
-
* @param
|
2668
|
-
*
|
2669
|
-
*
|
2769
|
+
* @param token The @ref completion_token that will be used to produce a
|
2770
|
+
* completion handler, which will be called when the read completes.
|
2771
|
+
* Potential completion tokens include @ref use_future, @ref use_awaitable,
|
2772
|
+
* @ref yield_context, or a function object with the correct completion
|
2773
|
+
* signature. The function signature of the completion handler must be:
|
2670
2774
|
* @code void handler(
|
2671
2775
|
* // Result of operation.
|
2672
2776
|
* const boost::system::error_code& error,
|
2673
2777
|
*
|
2674
2778
|
* // The number of bytes in the dynamic buffer sequence's
|
2675
2779
|
* // get area up to and including the delimiter.
|
2676
|
-
* // 0 if an error occurred.
|
2677
2780
|
* std::size_t bytes_transferred
|
2678
2781
|
* ); @endcode
|
2679
2782
|
* Regardless of whether the asynchronous operation completes immediately or
|
2680
|
-
* not, the handler will not be invoked from within this function.
|
2681
|
-
* immediate completion, invocation of the handler will be performed in a
|
2783
|
+
* not, the completion handler will not be invoked from within this function.
|
2784
|
+
* On immediate completion, invocation of the handler will be performed in a
|
2682
2785
|
* manner equivalent to using boost::asio::post().
|
2683
2786
|
*
|
2787
|
+
* @par Completion Signature
|
2788
|
+
* @code void(boost::system::error_code, std::size_t) @endcode
|
2789
|
+
*
|
2684
2790
|
* @note After a successful async_read_until operation, the dynamic buffer
|
2685
2791
|
* sequence may contain additional data beyond the delimiter. An application
|
2686
2792
|
* will typically leave that data in the dynamic buffer sequence for a
|
@@ -2727,19 +2833,26 @@ async_read_until(AsyncReadStream& s, DynamicBuffer_v2 buffers, char delim,
|
|
2727
2833
|
*/
|
2728
2834
|
template <typename AsyncReadStream, typename DynamicBuffer_v2,
|
2729
2835
|
BOOST_ASIO_COMPLETION_TOKEN_FOR(void (boost::system::error_code,
|
2730
|
-
std::size_t))
|
2836
|
+
std::size_t)) ReadToken
|
2731
2837
|
BOOST_ASIO_DEFAULT_COMPLETION_TOKEN_TYPE(
|
2732
2838
|
typename AsyncReadStream::executor_type)>
|
2733
|
-
|
2839
|
+
BOOST_ASIO_INITFN_AUTO_RESULT_TYPE_PREFIX(ReadToken,
|
2734
2840
|
void (boost::system::error_code, std::size_t))
|
2735
2841
|
async_read_until(AsyncReadStream& s, DynamicBuffer_v2 buffers,
|
2736
2842
|
BOOST_ASIO_STRING_VIEW_PARAM delim,
|
2737
|
-
BOOST_ASIO_MOVE_ARG(
|
2843
|
+
BOOST_ASIO_MOVE_ARG(ReadToken) token
|
2738
2844
|
BOOST_ASIO_DEFAULT_COMPLETION_TOKEN(
|
2739
2845
|
typename AsyncReadStream::executor_type),
|
2740
2846
|
typename constraint<
|
2741
2847
|
is_dynamic_buffer_v2<DynamicBuffer_v2>::value
|
2742
|
-
>::type = 0)
|
2848
|
+
>::type = 0)
|
2849
|
+
BOOST_ASIO_INITFN_AUTO_RESULT_TYPE_SUFFIX((
|
2850
|
+
async_initiate<ReadToken,
|
2851
|
+
void (boost::system::error_code, std::size_t)>(
|
2852
|
+
declval<detail::initiate_async_read_until_delim_string_v2<
|
2853
|
+
AsyncReadStream> >(),
|
2854
|
+
token, BOOST_ASIO_MOVE_CAST(DynamicBuffer_v2)(buffers),
|
2855
|
+
static_cast<std::string>(delim))));
|
2743
2856
|
|
2744
2857
|
#if !defined(BOOST_ASIO_NO_EXTENSIONS)
|
2745
2858
|
#if defined(BOOST_ASIO_HAS_BOOST_REGEX) \
|
@@ -2750,9 +2863,10 @@ async_read_until(AsyncReadStream& s, DynamicBuffer_v2 buffers,
|
|
2750
2863
|
/**
|
2751
2864
|
* This function is used to asynchronously read data into the specified dynamic
|
2752
2865
|
* buffer sequence until the dynamic buffer sequence's get area contains some
|
2753
|
-
* data that matches a regular expression.
|
2754
|
-
*
|
2755
|
-
* following conditions
|
2866
|
+
* data that matches a regular expression. It is an initiating function for an
|
2867
|
+
* @ref asynchronous_operation, and always returns immediately. The
|
2868
|
+
* asynchronous operation will continue until one of the following conditions
|
2869
|
+
* is true:
|
2756
2870
|
*
|
2757
2871
|
* @li A substring of the dynamic buffer sequence's get area matches the regular
|
2758
2872
|
* expression.
|
@@ -2774,13 +2888,15 @@ async_read_until(AsyncReadStream& s, DynamicBuffer_v2 buffers,
|
|
2774
2888
|
* @param buffers The dynamic buffer sequence into which the data will be read.
|
2775
2889
|
* Although the buffers object may be copied as necessary, ownership of the
|
2776
2890
|
* underlying memory blocks is retained by the caller, which must guarantee
|
2777
|
-
* that they remain valid until the handler is called.
|
2891
|
+
* that they remain valid until the completion handler is called.
|
2778
2892
|
*
|
2779
2893
|
* @param expr The regular expression.
|
2780
2894
|
*
|
2781
|
-
* @param
|
2782
|
-
*
|
2783
|
-
*
|
2895
|
+
* @param token The @ref completion_token that will be used to produce a
|
2896
|
+
* completion handler, which will be called when the read completes.
|
2897
|
+
* Potential completion tokens include @ref use_future, @ref use_awaitable,
|
2898
|
+
* @ref yield_context, or a function object with the correct completion
|
2899
|
+
* signature. The function signature of the completion handler must be:
|
2784
2900
|
* @code void handler(
|
2785
2901
|
* // Result of operation.
|
2786
2902
|
* const boost::system::error_code& error,
|
@@ -2792,10 +2908,13 @@ async_read_until(AsyncReadStream& s, DynamicBuffer_v2 buffers,
|
|
2792
2908
|
* std::size_t bytes_transferred
|
2793
2909
|
* ); @endcode
|
2794
2910
|
* Regardless of whether the asynchronous operation completes immediately or
|
2795
|
-
* not, the handler will not be invoked from within this function.
|
2796
|
-
* immediate completion, invocation of the handler will be performed in a
|
2911
|
+
* not, the completion handler will not be invoked from within this function.
|
2912
|
+
* On immediate completion, invocation of the handler will be performed in a
|
2797
2913
|
* manner equivalent to using boost::asio::post().
|
2798
2914
|
*
|
2915
|
+
* @par Completion Signature
|
2916
|
+
* @code void(boost::system::error_code, std::size_t) @endcode
|
2917
|
+
*
|
2799
2918
|
* @note After a successful async_read_until operation, the dynamic buffer
|
2800
2919
|
* sequence may contain additional data beyond that which matched the regular
|
2801
2920
|
* expression. An application will typically leave that data in the dynamic
|
@@ -2843,19 +2962,24 @@ async_read_until(AsyncReadStream& s, DynamicBuffer_v2 buffers,
|
|
2843
2962
|
*/
|
2844
2963
|
template <typename AsyncReadStream, typename DynamicBuffer_v2,
|
2845
2964
|
BOOST_ASIO_COMPLETION_TOKEN_FOR(void (boost::system::error_code,
|
2846
|
-
std::size_t))
|
2965
|
+
std::size_t)) ReadToken
|
2847
2966
|
BOOST_ASIO_DEFAULT_COMPLETION_TOKEN_TYPE(
|
2848
2967
|
typename AsyncReadStream::executor_type)>
|
2849
|
-
|
2968
|
+
BOOST_ASIO_INITFN_AUTO_RESULT_TYPE_PREFIX(ReadToken,
|
2850
2969
|
void (boost::system::error_code, std::size_t))
|
2851
2970
|
async_read_until(AsyncReadStream& s, DynamicBuffer_v2 buffers,
|
2852
2971
|
const boost::regex& expr,
|
2853
|
-
BOOST_ASIO_MOVE_ARG(
|
2972
|
+
BOOST_ASIO_MOVE_ARG(ReadToken) token
|
2854
2973
|
BOOST_ASIO_DEFAULT_COMPLETION_TOKEN(
|
2855
2974
|
typename AsyncReadStream::executor_type),
|
2856
2975
|
typename constraint<
|
2857
2976
|
is_dynamic_buffer_v2<DynamicBuffer_v2>::value
|
2858
|
-
>::type = 0)
|
2977
|
+
>::type = 0)
|
2978
|
+
BOOST_ASIO_INITFN_AUTO_RESULT_TYPE_SUFFIX((
|
2979
|
+
async_initiate<ReadToken,
|
2980
|
+
void (boost::system::error_code, std::size_t)>(
|
2981
|
+
declval<detail::initiate_async_read_until_expr_v2<AsyncReadStream> >(),
|
2982
|
+
token, BOOST_ASIO_MOVE_CAST(DynamicBuffer_v2)(buffers), expr)));
|
2859
2983
|
|
2860
2984
|
#endif // defined(BOOST_ASIO_HAS_BOOST_REGEX)
|
2861
2985
|
// || defined(GENERATING_DOCUMENTATION)
|
@@ -2866,9 +2990,9 @@ async_read_until(AsyncReadStream& s, DynamicBuffer_v2 buffers,
|
|
2866
2990
|
* This function is used to asynchronously read data into the specified dynamic
|
2867
2991
|
* buffer sequence until a user-defined match condition function object, when
|
2868
2992
|
* applied to the data contained in the dynamic buffer sequence, indicates a
|
2869
|
-
* successful match.
|
2870
|
-
*
|
2871
|
-
* is true:
|
2993
|
+
* successful match. It is an initiating function for an @ref
|
2994
|
+
* asynchronous_operation, and always returns immediately. The asynchronous
|
2995
|
+
* operation will continue until one of the following conditions is true:
|
2872
2996
|
*
|
2873
2997
|
* @li The match condition function object returns a std::pair where the second
|
2874
2998
|
* element evaluates to true.
|
@@ -2889,7 +3013,7 @@ async_read_until(AsyncReadStream& s, DynamicBuffer_v2 buffers,
|
|
2889
3013
|
* @param buffers The dynamic buffer sequence into which the data will be read.
|
2890
3014
|
* Although the buffers object may be copied as necessary, ownership of the
|
2891
3015
|
* underlying memory blocks is retained by the caller, which must guarantee
|
2892
|
-
* that they remain valid until the handler is called.
|
3016
|
+
* that they remain valid until the completion handler is called.
|
2893
3017
|
*
|
2894
3018
|
* @param match_condition The function object to be called to determine whether
|
2895
3019
|
* a match exists. The signature of the function object must be:
|
@@ -2906,9 +3030,11 @@ async_read_until(AsyncReadStream& s, DynamicBuffer_v2 buffers,
|
|
2906
3030
|
* @c second member of the return value is true if a match has been found, false
|
2907
3031
|
* otherwise.
|
2908
3032
|
*
|
2909
|
-
* @param
|
2910
|
-
*
|
2911
|
-
*
|
3033
|
+
* @param token The @ref completion_token that will be used to produce a
|
3034
|
+
* completion handler, which will be called when the read completes.
|
3035
|
+
* Potential completion tokens include @ref use_future, @ref use_awaitable,
|
3036
|
+
* @ref yield_context, or a function object with the correct completion
|
3037
|
+
* signature. The function signature of the completion handler must be:
|
2912
3038
|
* @code void handler(
|
2913
3039
|
* // Result of operation.
|
2914
3040
|
* const boost::system::error_code& error,
|
@@ -2919,8 +3045,8 @@ async_read_until(AsyncReadStream& s, DynamicBuffer_v2 buffers,
|
|
2919
3045
|
* std::size_t bytes_transferred
|
2920
3046
|
* ); @endcode
|
2921
3047
|
* Regardless of whether the asynchronous operation completes immediately or
|
2922
|
-
* not, the handler will not be invoked from within this function.
|
2923
|
-
* immediate completion, invocation of the handler will be performed in a
|
3048
|
+
* not, the completion handler will not be invoked from within this function.
|
3049
|
+
* On immediate completion, invocation of the handler will be performed in a
|
2924
3050
|
* manner equivalent to using boost::asio::post().
|
2925
3051
|
*
|
2926
3052
|
* @note After a successful async_read_until operation, the dynamic buffer
|
@@ -2928,6 +3054,9 @@ async_read_until(AsyncReadStream& s, DynamicBuffer_v2 buffers,
|
|
2928
3054
|
* object. An application will typically leave that data in the dynamic buffer
|
2929
3055
|
* sequence for a subsequent async_read_until operation to examine.
|
2930
3056
|
*
|
3057
|
+
* @par Completion Signature
|
3058
|
+
* @code void(boost::system::error_code, std::size_t) @endcode
|
3059
|
+
*
|
2931
3060
|
* @note The default implementation of the @c is_match_condition type trait
|
2932
3061
|
* evaluates to true for function pointers and function objects with a
|
2933
3062
|
* @c result_type typedef. It must be specialised for other user-defined
|
@@ -3002,14 +3131,14 @@ async_read_until(AsyncReadStream& s, DynamicBuffer_v2 buffers,
|
|
3002
3131
|
template <typename AsyncReadStream,
|
3003
3132
|
typename DynamicBuffer_v2, typename MatchCondition,
|
3004
3133
|
BOOST_ASIO_COMPLETION_TOKEN_FOR(void (boost::system::error_code,
|
3005
|
-
std::size_t))
|
3134
|
+
std::size_t)) ReadToken
|
3006
3135
|
BOOST_ASIO_DEFAULT_COMPLETION_TOKEN_TYPE(
|
3007
3136
|
typename AsyncReadStream::executor_type)>
|
3008
|
-
|
3137
|
+
BOOST_ASIO_INITFN_AUTO_RESULT_TYPE_PREFIX(ReadToken,
|
3009
3138
|
void (boost::system::error_code, std::size_t))
|
3010
3139
|
async_read_until(AsyncReadStream& s, DynamicBuffer_v2 buffers,
|
3011
3140
|
MatchCondition match_condition,
|
3012
|
-
BOOST_ASIO_MOVE_ARG(
|
3141
|
+
BOOST_ASIO_MOVE_ARG(ReadToken) token
|
3013
3142
|
BOOST_ASIO_DEFAULT_COMPLETION_TOKEN(
|
3014
3143
|
typename AsyncReadStream::executor_type),
|
3015
3144
|
typename constraint<
|
@@ -3017,7 +3146,13 @@ async_read_until(AsyncReadStream& s, DynamicBuffer_v2 buffers,
|
|
3017
3146
|
>::type = 0,
|
3018
3147
|
typename constraint<
|
3019
3148
|
is_dynamic_buffer_v2<DynamicBuffer_v2>::value
|
3020
|
-
>::type = 0)
|
3149
|
+
>::type = 0)
|
3150
|
+
BOOST_ASIO_INITFN_AUTO_RESULT_TYPE_SUFFIX((
|
3151
|
+
async_initiate<ReadToken,
|
3152
|
+
void (boost::system::error_code, std::size_t)>(
|
3153
|
+
declval<detail::initiate_async_read_until_match_v2<AsyncReadStream> >(),
|
3154
|
+
token, BOOST_ASIO_MOVE_CAST(DynamicBuffer_v2)(buffers),
|
3155
|
+
match_condition)));
|
3021
3156
|
|
3022
3157
|
#endif // !defined(BOOST_ASIO_NO_EXTENSIONS)
|
3023
3158
|
|