passenger 5.1.12 → 5.2.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of passenger might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CHANGELOG +18 -1
- data/Rakefile +4 -1
- data/build/agent.rb +2 -2
- data/build/apache2.rb +17 -10
- data/build/basics.rb +18 -4
- data/build/common_library.rb +7 -3
- data/build/cxx_tests.rb +2 -7
- data/build/misc.rb +3 -1
- data/build/nginx.rb +11 -5
- data/build/oxt_tests.rb +0 -3
- data/build/packaging.rb +3 -2
- data/build/schema_printer.rb +103 -0
- data/build/support/cplusplus.rb +2 -2
- data/build/support/cxx_dependency_map.rb +2575 -868
- data/dev/ci/lib/functions.sh +1 -1
- data/dev/ci/lib/set-container-envvars.sh +1 -1
- data/dev/ci/lib/setup-container.sh +1 -1
- data/dev/ci/run-tests-natively +1 -1
- data/dev/ci/run-tests-with-docker +1 -1
- data/dev/ci/scripts/debug-console-wrapper.sh +1 -1
- data/dev/ci/scripts/docker-entrypoint-stage2.sh +1 -1
- data/dev/ci/scripts/docker-entrypoint.sh +1 -1
- data/dev/ci/scripts/inituidgid +1 -1
- data/dev/ci/scripts/run-tests-natively-stage2.sh +1 -1
- data/dev/ci/scripts/setup-host-natively.sh +1 -1
- data/dev/ci/setup-host +1 -1
- data/dev/ci/tests/apache2/run +1 -1
- data/dev/ci/tests/apache2/setup +1 -1
- data/dev/ci/tests/cxx/run +1 -1
- data/dev/ci/tests/cxx/setup +1 -1
- data/dev/ci/tests/debian/Jenkinsfile +0 -1
- data/dev/ci/tests/debian/run +1 -1
- data/dev/ci/tests/nginx-dynamic/run +1 -1
- data/dev/ci/tests/nginx-dynamic/setup +1 -1
- data/dev/ci/tests/nginx/run +1 -1
- data/dev/ci/tests/nginx/setup +1 -1
- data/dev/ci/tests/nodejs/run +1 -1
- data/dev/ci/tests/nodejs/setup +1 -1
- data/dev/ci/tests/rpm/run +1 -1
- data/dev/ci/tests/ruby/run +1 -1
- data/dev/ci/tests/ruby/setup +1 -1
- data/dev/ci/tests/source-packaging/run +1 -1
- data/dev/ci/tests/source-packaging/setup +1 -1
- data/dev/ci/tests/standalone/run +1 -1
- data/dev/ci/tests/standalone/setup +1 -1
- data/dev/configkit-schemas/index.json +1708 -0
- data/dev/configkit-schemas/update_schema_inline_comments.rb +118 -0
- data/dev/copy_boost_headers +13 -1
- data/dev/index_cxx_dependencies.rb +20 -7
- data/dev/vagrant/provision.sh +1 -1
- data/resources/mime.types +1 -0
- data/resources/templates/standalone/http.erb +1 -6
- data/src/agent/Core/AdminPanelConnector.h +550 -0
- data/src/agent/Core/ApiServer.h +159 -97
- data/src/agent/Core/ApplicationPool/Group.h +2 -0
- data/src/agent/Core/ApplicationPool/Group/InternalUtils.cpp +3 -2
- data/src/agent/Core/ApplicationPool/Group/StateInspection.cpp +109 -0
- data/src/agent/Core/ApplicationPool/Implementation.cpp +5 -3
- data/src/agent/Core/ApplicationPool/Options.h +5 -6
- data/src/agent/Core/ApplicationPool/Pool.h +59 -2
- data/src/agent/Core/ApplicationPool/Pool/GeneralUtils.cpp +3 -3
- data/src/agent/Core/ApplicationPool/Pool/InitializationAndShutdown.cpp +2 -2
- data/src/agent/Core/ApplicationPool/Pool/Miscellaneous.cpp +6 -0
- data/src/agent/Core/ApplicationPool/Pool/StateInspection.cpp +129 -0
- data/src/agent/Core/Config.h +475 -0
- data/src/agent/Core/ConfigChange.cpp +349 -0
- data/src/agent/Core/ConfigChange.h +54 -0
- data/src/agent/Core/Controller.h +35 -3
- data/src/agent/Core/Controller/CheckoutSession.cpp +1 -1
- data/src/agent/Core/Controller/Config.cpp +0 -2
- data/src/agent/Core/Controller/Config.h +168 -104
- data/src/agent/Core/Controller/ForwardResponse.cpp +1 -1
- data/src/agent/Core/Controller/InitRequest.cpp +14 -15
- data/src/agent/Core/Controller/InitializationAndShutdown.cpp +34 -44
- data/src/agent/Core/Controller/Request.h +0 -1
- data/src/agent/Core/CoreMain.cpp +236 -349
- data/src/agent/Core/OptionParser.h +75 -89
- data/src/agent/Core/SecurityUpdateChecker.h +263 -100
- data/src/agent/Core/SpawningKit/Config.h +6 -2
- data/src/agent/Core/SpawningKit/Spawner.h +0 -45
- data/src/agent/Core/SpawningKit/UserSwitchingRules.h +1 -0
- data/src/agent/Shared/ApiAccountUtils.h +318 -0
- data/src/agent/Shared/ApiServerUtils.h +3 -104
- data/src/agent/Shared/Fundamentals/Initialization.cpp +81 -44
- data/src/agent/Shared/Fundamentals/Initialization.h +12 -7
- data/src/agent/TempDirToucher/TempDirToucherMain.cpp +21 -0
- data/src/agent/Watchdog/AgentWatcher.cpp +1 -1
- data/src/agent/Watchdog/ApiServer.h +100 -14
- data/src/agent/Watchdog/Config.h +340 -0
- data/src/agent/Watchdog/CoreWatcher.cpp +27 -13
- data/src/agent/Watchdog/InstanceDirToucher.cpp +1 -1
- data/src/agent/Watchdog/WatchdogMain.cpp +190 -206
- data/src/apache2_module/Bucket.cpp +4 -0
- data/src/apache2_module/Bucket.h +7 -3
- data/src/apache2_module/CBindings.cpp +49 -0
- data/src/apache2_module/Config.cpp +242 -0
- data/src/apache2_module/Config.h +109 -0
- data/src/apache2_module/ConfigGeneral/AutoGeneratedDefinitions.cpp +485 -0
- data/src/apache2_module/{ConfigurationCommands.cpp.cxxcodebuilder → ConfigGeneral/AutoGeneratedDefinitions.cpp.cxxcodebuilder} +29 -15
- data/src/apache2_module/ConfigGeneral/AutoGeneratedManifestDefaultsInitialization.cpp +298 -0
- data/src/apache2_module/ConfigGeneral/AutoGeneratedManifestDefaultsInitialization.cpp.cxxcodebuilder +171 -0
- data/src/apache2_module/ConfigGeneral/AutoGeneratedSetterFuncs.cpp +854 -0
- data/src/apache2_module/ConfigGeneral/AutoGeneratedSetterFuncs.cpp.cxxcodebuilder +188 -0
- data/src/apache2_module/ConfigGeneral/ManifestGeneration.h +610 -0
- data/src/apache2_module/ConfigGeneral/SetterFuncs.h +65 -0
- data/src/apache2_module/DirConfig/AutoGeneratedCreateFunction.cpp +174 -0
- data/src/apache2_module/{MergeDirConfig.cpp.cxxcodebuilder → DirConfig/AutoGeneratedCreateFunction.cpp.cxxcodebuilder} +54 -32
- data/src/apache2_module/DirConfig/AutoGeneratedHeaderSerialization.cpp +113 -0
- data/src/apache2_module/{SetHeaders.cpp.cxxcodebuilder → DirConfig/AutoGeneratedHeaderSerialization.cpp.cxxcodebuilder} +34 -23
- data/src/apache2_module/DirConfig/AutoGeneratedManifestGeneration.cpp +426 -0
- data/src/apache2_module/DirConfig/AutoGeneratedManifestGeneration.cpp.cxxcodebuilder +165 -0
- data/src/apache2_module/DirConfig/AutoGeneratedMergeFunction.cpp +269 -0
- data/src/apache2_module/DirConfig/AutoGeneratedMergeFunction.cpp.cxxcodebuilder +148 -0
- data/src/apache2_module/DirConfig/AutoGeneratedStruct.h +534 -0
- data/src/apache2_module/DirConfig/AutoGeneratedStruct.h.cxxcodebuilder +230 -0
- data/src/apache2_module/DirectoryMapper.h +19 -16
- data/src/apache2_module/Hooks.cpp +124 -138
- data/src/apache2_module/Hooks.h +9 -14
- data/src/apache2_module/ServerConfig/AutoGeneratedManifestGeneration.cpp +263 -0
- data/src/apache2_module/ServerConfig/AutoGeneratedManifestGeneration.cpp.cxxcodebuilder +152 -0
- data/src/apache2_module/ServerConfig/AutoGeneratedStruct.h +299 -0
- data/src/apache2_module/{ConfigurationFields.hpp.cxxcodebuilder → ServerConfig/AutoGeneratedStruct.h.cxxcodebuilder} +105 -18
- data/src/apache2_module/Utils.h +215 -0
- data/src/apache2_module/mod_passenger.c +16 -8
- data/src/cxx_supportlib/AppTypes.h +2 -0
- data/src/cxx_supportlib/ConfigKit/ConfigKit.h +1 -1
- data/src/cxx_supportlib/ConfigKit/DummyTranslator.h +8 -8
- data/src/cxx_supportlib/ConfigKit/IN_PRACTICE.md +7 -41
- data/src/cxx_supportlib/ConfigKit/PrefixTranslator.h +12 -66
- data/src/cxx_supportlib/ConfigKit/Schema.h +62 -11
- data/src/cxx_supportlib/ConfigKit/{ValidationUtils.h → SchemaUtils.h} +12 -3
- data/src/cxx_supportlib/ConfigKit/Store.h +17 -9
- data/src/cxx_supportlib/ConfigKit/SubComponentUtils.h +2 -1
- data/src/cxx_supportlib/ConfigKit/TableTranslator.h +13 -70
- data/src/cxx_supportlib/ConfigKit/Translator.h +125 -0
- data/src/cxx_supportlib/Constants.h +1 -3
- data/src/cxx_supportlib/FileTools/FileManip.cpp +297 -0
- data/src/cxx_supportlib/FileTools/FileManip.h +162 -0
- data/src/cxx_supportlib/{Utils → FileTools}/LargeFiles.cpp +6 -3
- data/src/cxx_supportlib/{Utils → FileTools}/LargeFiles.h +7 -5
- data/src/cxx_supportlib/FileTools/PathManip.cpp +240 -0
- data/src/cxx_supportlib/FileTools/PathManip.h +91 -0
- data/src/cxx_supportlib/FileTools/PathManipCBindings.cpp +62 -0
- data/src/{apache2_module/Configuration.h → cxx_supportlib/FileTools/PathManipCBindings.h} +12 -19
- data/src/cxx_supportlib/Hooks.h +19 -16
- data/src/cxx_supportlib/InstanceDirectory.h +11 -0
- data/src/cxx_supportlib/JsonTools/Autocast.h +79 -0
- data/src/cxx_supportlib/JsonTools/CBindings.cpp +364 -0
- data/src/cxx_supportlib/JsonTools/CBindings.h +101 -0
- data/src/cxx_supportlib/LoggingKit/Config.h +13 -0
- data/src/cxx_supportlib/LoggingKit/Context.h +5 -2
- data/src/cxx_supportlib/LoggingKit/Forward.h +0 -1
- data/src/cxx_supportlib/LoggingKit/Implementation.cpp +12 -4
- data/src/cxx_supportlib/ResourceLocator.h +15 -0
- data/src/cxx_supportlib/ServerKit/Config.h +156 -0
- data/src/cxx_supportlib/ServerKit/Context.h +59 -38
- data/src/cxx_supportlib/ServerKit/FileBufferedChannel.h +3 -2
- data/src/cxx_supportlib/ServerKit/HttpHeaderParser.h +2 -2
- data/src/cxx_supportlib/ServerKit/HttpServer.h +16 -2
- data/src/cxx_supportlib/ServerKit/Server.h +32 -15
- data/src/cxx_supportlib/Utils.cpp +0 -441
- data/src/cxx_supportlib/Utils.h +0 -158
- data/src/cxx_supportlib/Utils/Curl.h +1 -0
- data/src/cxx_supportlib/Utils/ProcessMetricsCollector.h +1 -0
- data/src/cxx_supportlib/Utils/StrIntUtilsNoStrictAliasing.cpp +2 -0
- data/src/cxx_supportlib/Utils/VariantMap.h +31 -0
- data/src/cxx_supportlib/WatchdogLauncher.cpp +7 -79
- data/src/cxx_supportlib/WatchdogLauncher.h +50 -53
- data/src/cxx_supportlib/WebSocketCommandReverseServer.h +981 -0
- data/src/cxx_supportlib/oxt/macros.hpp +9 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/COPYING +145 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/changelog.md +342 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/readme.md +49 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/base64/base64.hpp +178 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/client.hpp +33 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/close.hpp +342 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/asio.hpp +131 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/asio_ssl.hpp +39 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/chrono.hpp +68 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/connection_hdl.hpp +52 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/cpp11.hpp +162 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/functional.hpp +105 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/md5.hpp +448 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/memory.hpp +89 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/network.hpp +106 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/platforms.hpp +46 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/random.hpp +82 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/regex.hpp +59 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/stdint.hpp +73 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/system_error.hpp +84 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/thread.hpp +84 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/time.hpp +56 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/type_traits.hpp +65 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/concurrency/basic.hpp +46 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/concurrency/none.hpp +80 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/config/asio.hpp +77 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/config/asio_client.hpp +77 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/config/asio_no_tls.hpp +73 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/config/asio_no_tls_client.hpp +73 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/config/boost_config.hpp +72 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/config/core.hpp +285 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/config/core_client.hpp +294 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/config/debug.hpp +286 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/config/debug_asio.hpp +77 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/config/debug_asio_no_tls.hpp +73 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/config/minimal_client.hpp +72 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/config/minimal_server.hpp +312 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/connection.hpp +1651 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/connection_base.hpp +38 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/endpoint.hpp +700 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/endpoint_base.hpp +38 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/error.hpp +277 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/extensions/extension.hpp +102 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/extensions/permessage_deflate/disabled.hpp +128 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/extensions/permessage_deflate/enabled.hpp +752 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/frame.hpp +861 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/http/constants.hpp +308 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/http/impl/parser.hpp +196 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/http/impl/request.hpp +191 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/http/impl/response.hpp +266 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/http/parser.hpp +619 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/http/request.hpp +124 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/http/response.hpp +188 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/impl/connection_impl.hpp +2372 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/impl/endpoint_impl.hpp +269 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/impl/utilities_impl.hpp +87 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/logger/basic.hpp +199 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/logger/levels.hpp +203 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/logger/stub.hpp +119 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/logger/syslog.hpp +146 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/message_buffer/alloc.hpp +105 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/message_buffer/message.hpp +340 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/message_buffer/pool.hpp +229 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/processors/base.hpp +299 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/processors/hybi00.hpp +462 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/processors/hybi07.hpp +78 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/processors/hybi08.hpp +83 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/processors/hybi13.hpp +1056 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/processors/processor.hpp +407 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/random/none.hpp +60 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/random/random_device.hpp +80 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/roles/client_endpoint.hpp +173 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/roles/server_endpoint.hpp +190 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/server.hpp +33 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/sha1/sha1.hpp +189 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/asio/base.hpp +232 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/asio/connection.hpp +1204 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/asio/endpoint.hpp +1147 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/asio/security/base.hpp +159 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/asio/security/none.hpp +370 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/asio/security/tls.hpp +484 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/base/connection.hpp +238 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/base/endpoint.hpp +77 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/debug/base.hpp +104 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/debug/connection.hpp +412 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/debug/endpoint.hpp +140 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/iostream/base.hpp +133 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/iostream/connection.hpp +714 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/iostream/endpoint.hpp +222 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/stub/base.hpp +95 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/stub/connection.hpp +286 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/stub/endpoint.hpp +140 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/uri.hpp +355 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/utf8_validator.hpp +154 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/utilities.hpp +182 -0
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/version.hpp +61 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio.hpp +121 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/async_result.hpp +96 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_datagram_socket.hpp +951 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_deadline_timer.hpp +520 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_io_object.hpp +258 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_raw_socket.hpp +942 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_seq_packet_socket.hpp +567 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_serial_port.hpp +697 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_signal_set.hpp +386 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket.hpp +1519 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket_acceptor.hpp +1137 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket_iostream.hpp +288 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket_streambuf.hpp +569 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_stream_socket.hpp +854 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_streambuf.hpp +371 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_streambuf_fwd.hpp +35 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_waitable_timer.hpp +521 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffer.hpp +2241 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_read_stream.hpp +246 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_read_stream_fwd.hpp +27 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_stream.hpp +260 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_stream_fwd.hpp +27 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_write_stream.hpp +238 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_write_stream_fwd.hpp +27 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffers_iterator.hpp +483 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/completion_condition.hpp +220 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/connect.hpp +825 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/coroutine.hpp +330 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/datagram_socket_service.hpp +438 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/deadline_timer.hpp +40 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/deadline_timer_service.hpp +173 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/addressof.hpp +40 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/array.hpp +40 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/array_fwd.hpp +34 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/assert.hpp +32 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/atomic_count.hpp +47 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/base_from_completion_cond.hpp +70 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/bind_handler.hpp +491 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/buffer_resize_guard.hpp +68 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/buffer_sequence_adapter.hpp +385 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/buffered_stream_storage.hpp +128 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/call_stack.hpp +127 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/chrono_time_traits.hpp +192 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/completion_handler.hpp +83 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/config.hpp +1050 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/consuming_buffers.hpp +294 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/cstdint.hpp +48 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/date_time_fwd.hpp +34 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/deadline_timer_service.hpp +229 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/dependent_type.hpp +38 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/descriptor_ops.hpp +119 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/descriptor_read_op.hpp +121 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/descriptor_write_op.hpp +121 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/dev_poll_reactor.hpp +208 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/epoll_reactor.hpp +244 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/event.hpp +50 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/eventfd_select_interrupter.hpp +85 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/fd_set_adapter.hpp +41 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/fenced_block.hpp +82 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/function.hpp +40 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/gcc_arm_fenced_block.hpp +91 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/gcc_hppa_fenced_block.hpp +68 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/gcc_sync_fenced_block.hpp +65 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/gcc_x86_fenced_block.hpp +99 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_alloc_helpers.hpp +82 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_cont_helpers.hpp +45 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_invoke_helpers.hpp +57 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_tracking.hpp +161 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_type_requirements.hpp +480 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/hash_map.hpp +333 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/buffer_sequence_adapter.ipp +120 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/descriptor_ops.ipp +453 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/dev_poll_reactor.hpp +80 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/dev_poll_reactor.ipp +432 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/epoll_reactor.hpp +78 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/epoll_reactor.ipp +688 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/eventfd_select_interrupter.ipp +167 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/handler_tracking.ipp +307 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/kqueue_reactor.hpp +82 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/kqueue_reactor.ipp +498 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/pipe_select_interrupter.ipp +126 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/posix_event.ipp +49 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/posix_mutex.ipp +48 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/posix_thread.ipp +76 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/posix_tss_ptr.ipp +48 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/reactive_descriptor_service.ipp +210 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/reactive_serial_port_service.ipp +153 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/reactive_socket_service_base.ipp +269 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/resolver_service_base.ipp +132 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/select_reactor.hpp +89 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/select_reactor.ipp +315 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/service_registry.hpp +90 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/service_registry.ipp +190 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/signal_set_service.ipp +649 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/socket_ops.ipp +3470 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/socket_select_interrupter.ipp +178 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/strand_service.hpp +120 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/strand_service.ipp +178 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/task_io_service.hpp +80 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/task_io_service.ipp +476 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/throw_error.ipp +47 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/timer_queue_ptime.ipp +86 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/timer_queue_set.ipp +103 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_control.hpp +136 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/keyword_tss_ptr.hpp +72 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/kqueue_reactor.hpp +222 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/limits.hpp +26 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/local_free_on_block_exit.hpp +61 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/macos_fenced_block.hpp +63 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/memory.hpp +31 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/mutex.hpp +50 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/noncopyable.hpp +45 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_event.hpp +90 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_fenced_block.hpp +47 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_mutex.hpp +66 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_reactor.hpp +69 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_signal_blocker.hpp +71 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_socket_service.hpp +500 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_static_mutex.hpp +62 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_thread.hpp +63 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_tss_ptr.hpp +70 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/object_pool.hpp +148 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/old_win_sdk_compat.hpp +216 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/op_queue.hpp +158 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/operation.hpp +40 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/pipe_select_interrupter.hpp +91 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/pop_options.hpp +131 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_event.hpp +128 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_fd_set_adapter.hpp +120 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_mutex.hpp +78 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_signal_blocker.hpp +87 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_static_mutex.hpp +66 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_thread.hpp +107 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_tss_ptr.hpp +81 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/push_options.hpp +166 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_descriptor_service.hpp +324 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_null_buffers_op.hpp +90 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_serial_port_service.hpp +236 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_accept_op.hpp +138 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_connect_op.hpp +108 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_recv_op.hpp +125 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_recvfrom_op.hpp +135 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_recvmsg_op.hpp +127 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_send_op.hpp +122 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_sendto_op.hpp +125 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_service.hpp +460 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_service_base.hpp +452 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor.hpp +32 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor_fwd.hpp +42 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor_op.hpp +63 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor_op_queue.hpp +170 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/regex_fwd.hpp +35 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolve_endpoint_op.hpp +123 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolve_op.hpp +133 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolver_service.hpp +131 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolver_service_base.hpp +131 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scoped_lock.hpp +103 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scoped_ptr.hpp +81 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/select_interrupter.hpp +48 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/select_reactor.hpp +221 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/service_registry.hpp +146 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/shared_ptr.hpp +40 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_blocker.hpp +46 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_handler.hpp +84 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_init.hpp +49 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_op.hpp +51 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_set_service.hpp +218 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_holder.hpp +100 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_ops.hpp +336 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_option.hpp +318 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_select_interrupter.hpp +93 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_types.hpp +410 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/solaris_fenced_block.hpp +63 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/static_mutex.hpp +54 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_event.hpp +178 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_fenced_block.hpp +64 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_mutex.hpp +75 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_static_mutex.hpp +83 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_thread.hpp +67 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/strand_service.hpp +144 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/task_io_service.hpp +203 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/task_io_service_operation.hpp +78 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/task_io_service_thread_info.hpp +42 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/thread.hpp +58 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/thread_info_base.hpp +93 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/throw_error.hpp +55 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/throw_exception.hpp +53 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue.hpp +333 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue_base.hpp +70 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue_ptime.hpp +95 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue_set.hpp +68 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_scheduler.hpp +35 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_scheduler_fwd.hpp +42 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/tss_ptr.hpp +71 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/type_traits.hpp +60 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/variadic_templates.hpp +63 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/wait_handler.hpp +85 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/wait_op.hpp +47 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/weak_ptr.hpp +40 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/win_iocp_serial_port_service.hpp +230 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/winsock_init.hpp +130 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/wrapped_handler.hpp +293 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/error.hpp +345 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/basic_endpoint.hpp +195 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/datagram_protocol.hpp +125 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/detail/endpoint.hpp +135 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/detail/impl/endpoint.ipp +111 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/raw_protocol.hpp +123 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/seq_packet_protocol.hpp +124 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/stream_protocol.hpp +129 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/handler_alloc_hook.hpp +83 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/handler_continuation_hook.hpp +56 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/handler_invoke_hook.hpp +87 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/handler_type.hpp +114 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/high_resolution_timer.hpp +65 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/buffered_read_stream.hpp +360 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/buffered_write_stream.hpp +340 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/connect.hpp +432 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/error.ipp +130 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/handler_alloc_hook.ipp +79 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/io_service.hpp +156 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/io_service.ipp +157 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read.hpp +755 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read_at.hpp +812 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read_until.hpp +1149 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/serial_port_base.hpp +61 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/serial_port_base.ipp +556 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/spawn.hpp +355 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/src.cpp +25 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/src.hpp +73 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/use_future.hpp +179 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/write.hpp +767 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/write_at.hpp +827 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/io_service.hpp +772 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address.hpp +202 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v4.hpp +243 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v6.hpp +248 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_endpoint.hpp +265 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver.hpp +270 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver_entry.hpp +96 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver_iterator.hpp +262 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver_query.hpp +246 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/detail/endpoint.hpp +141 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/detail/impl/endpoint.ipp +206 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/detail/socket_option.hpp +571 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/host_name.hpp +44 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/icmp.hpp +117 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address.hpp +55 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address.ipp +228 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address_v4.hpp +55 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address_v4.ipp +180 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address_v6.hpp +55 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address_v6.ipp +300 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/basic_endpoint.hpp +57 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/host_name.ipp +56 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/multicast.hpp +193 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/resolver_query_base.hpp +132 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/resolver_service.hpp +178 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/tcp.hpp +157 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/udp.hpp +113 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/unicast.hpp +72 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/v6_only.hpp +71 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/is_read_buffered.hpp +61 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/is_write_buffered.hpp +61 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/basic_endpoint.hpp +241 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/connect_pair.hpp +106 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/datagram_protocol.hpp +82 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/detail/endpoint.hpp +135 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/detail/impl/endpoint.ipp +130 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/stream_protocol.hpp +92 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/placeholders.hpp +125 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/basic_descriptor.hpp +492 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/basic_stream_descriptor.hpp +364 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/descriptor_base.hpp +99 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/stream_descriptor.hpp +39 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/stream_descriptor_service.hpp +262 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/raw_socket_service.hpp +438 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/read.hpp +633 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/read_at.hpp +666 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/read_until.hpp +925 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/seq_packet_socket_service.hpp +386 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/serial_port.hpp +38 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/serial_port_base.hpp +169 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/serial_port_service.hpp +255 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/signal_set.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/signal_set_service.hpp +136 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/socket_acceptor_service.hpp +308 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/socket_base.hpp +522 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/spawn.hpp +267 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/basic_context.hpp +42 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/context.hpp +789 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/context_base.hpp +194 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/context_service.hpp +42 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/buffered_handshake_op.hpp +112 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/engine.hpp +166 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/handshake_op.hpp +70 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/impl/engine.ipp +327 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/impl/openssl_init.ipp +166 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/io.hpp +351 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/openssl_init.hpp +103 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/openssl_types.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/password_callback.hpp +74 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/read_op.hpp +75 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/shutdown_op.hpp +62 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/stream_core.hpp +128 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/verify_callback.hpp +70 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/write_op.hpp +75 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/error.hpp +115 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/context.hpp +73 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/context.ipp +1177 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/error.ipp +102 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/rfc2818_verification.ipp +168 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/src.hpp +28 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/old/basic_context.hpp +436 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/old/context_service.hpp +176 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/old/detail/openssl_context_service.hpp +396 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/old/detail/openssl_operation.hpp +526 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/old/detail/openssl_stream_service.hpp +573 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/old/stream.hpp +503 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/old/stream_service.hpp +186 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/rfc2818_verification.hpp +102 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/stream.hpp +758 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/stream_base.hpp +54 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/stream_service.hpp +42 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/verify_context.hpp +75 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/verify_mode.hpp +65 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/steady_timer.hpp +63 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/strand.hpp +254 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/stream_socket_service.hpp +382 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/streambuf.hpp +35 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/system_timer.hpp +59 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/time_traits.hpp +88 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/unyield.hpp +21 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/use_future.hpp +94 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/version.hpp +23 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/wait_traits.hpp +43 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/waitable_timer_service.hpp +170 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_handle.hpp +283 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_object_handle.hpp +180 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_random_access_handle.hpp +378 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_stream_handle.hpp +361 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/object_handle.hpp +40 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/object_handle_service.hpp +179 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/overlapped_ptr.hpp +118 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/random_access_handle.hpp +39 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/random_access_handle_service.hpp +222 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/stream_handle.hpp +39 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/stream_handle_service.hpp +220 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/write.hpp +620 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/write_at.hpp +672 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/yield.hpp +23 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono.hpp +20 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/chrono.hpp +15 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/chrono_io.hpp +34 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/inlined/chrono.hpp +46 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/inlined/mac/chrono.hpp +242 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/inlined/mac/process_cpu_clocks.hpp +356 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/inlined/mac/thread_clock.hpp +92 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/inlined/posix/chrono.hpp +121 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/inlined/posix/process_cpu_clocks.hpp +354 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/inlined/posix/thread_clock.hpp +92 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/inlined/process_cpu_clocks.hpp +46 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/inlined/thread_clock.hpp +46 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/no_warning/signed_unsigned_cmp.hpp +54 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/scan_keyword.hpp +163 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/floor.hpp +36 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/include.hpp +23 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/duration_get.hpp +593 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/duration_io.hpp +295 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/duration_put.hpp +317 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/duration_style.hpp +35 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/duration_units.hpp +1003 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/ios_base_state.hpp +152 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/time_point_get.hpp +330 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/time_point_io.hpp +1243 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/time_point_put.hpp +261 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/time_point_units.hpp +260 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/timezone.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/utility/ios_base_state_ptr.hpp +437 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/utility/manip_base.hpp +101 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/utility/to_string.hpp +50 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io_v1/chrono_io.hpp +637 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/process_cpu_clocks.hpp +525 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/round.hpp +59 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/thread_clock.hpp +75 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/typeof/boost/chrono/chrono.hpp +32 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/typeof/boost/ratio.hpp +24 -0
- data/src/cxx_supportlib/vendor-modified/boost/detail/atomic_count.hpp +21 -0
- data/src/cxx_supportlib/vendor-modified/boost/integer/common_factor.hpp +16 -0
- data/src/cxx_supportlib/vendor-modified/boost/integer/common_factor_rt.hpp +460 -0
- data/src/cxx_supportlib/vendor-modified/boost/integer/integer_log2.hpp +112 -0
- data/src/cxx_supportlib/vendor-modified/boost/integer/integer_mask.hpp +126 -0
- data/src/cxx_supportlib/vendor-modified/boost/integer/static_min_max.hpp +51 -0
- data/src/cxx_supportlib/vendor-modified/boost/libs/chrono/src/chrono.cpp +15 -0
- data/src/cxx_supportlib/vendor-modified/boost/libs/chrono/src/process_cpu_clocks.cpp +18 -0
- data/src/cxx_supportlib/vendor-modified/boost/libs/chrono/src/thread_clock.cpp +19 -0
- data/src/cxx_supportlib/vendor-modified/boost/libs/random/src/random_device.cpp +250 -0
- data/src/cxx_supportlib/vendor-modified/boost/pointer_cast.hpp +121 -0
- data/src/cxx_supportlib/vendor-modified/boost/random.hpp +91 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/additive_combine.hpp +283 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/bernoulli_distribution.hpp +197 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/beta_distribution.hpp +184 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/binomial_distribution.hpp +434 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/cauchy_distribution.hpp +214 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/chi_squared_distribution.hpp +209 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/auto_link.hpp +40 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/config.hpp +18 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/const_mod.hpp +216 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/disable_warnings.hpp +29 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/enable_warnings.hpp +22 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/generator_bits.hpp +36 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/generator_seed_seq.hpp +40 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/int_float_pair.hpp +121 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/integer_log2.hpp +84 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/iterator_mixin.hpp +45 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/large_arithmetic.hpp +122 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/operators.hpp +84 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/polynomial.hpp +384 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/ptr_helper.hpp +67 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/seed.hpp +115 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/seed_impl.hpp +398 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/signed_unsigned_tools.hpp +89 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/uniform_int_float.hpp +76 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/vector_io.hpp +75 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/discard_block.hpp +241 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/discrete_distribution.hpp +636 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/exponential_distribution.hpp +386 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/extreme_value_distribution.hpp +177 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/fisher_f_distribution.hpp +183 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/gamma_distribution.hpp +292 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/generate_canonical.hpp +96 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/geometric_distribution.hpp +267 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/hyperexponential_distribution.hpp +883 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/independent_bits.hpp +271 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/inversive_congruential.hpp +267 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/lagged_fibonacci.hpp +537 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/laplace_distribution.hpp +175 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/linear_congruential.hpp +466 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/linear_feedback_shift.hpp +217 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/lognormal_distribution.hpp +254 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/mersenne_twister.hpp +682 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/negative_binomial_distribution.hpp +220 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/non_central_chi_squared_distribution.hpp +221 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/normal_distribution.hpp +374 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/piecewise_constant_distribution.hpp +466 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/piecewise_linear_distribution.hpp +531 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/poisson_distribution.hpp +360 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/random_device.hpp +143 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/random_number_generator.hpp +73 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/ranlux.hpp +99 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/seed_seq.hpp +118 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/shuffle_order.hpp +269 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/shuffle_output.hpp +51 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/student_t_distribution.hpp +180 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/subtract_with_carry.hpp +613 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/taus88.hpp +45 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/traits.hpp +107 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/triangle_distribution.hpp +232 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/uniform_01.hpp +257 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/uniform_int.hpp +99 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/uniform_int_distribution.hpp +419 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/uniform_on_sphere.hpp +284 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/uniform_real.hpp +82 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/uniform_real_distribution.hpp +241 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/uniform_smallint.hpp +307 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/variate_generator.hpp +122 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/weibull_distribution.hpp +177 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/xor_combine.hpp +208 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio.hpp +14 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/detail/ratio_io.hpp +1342 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/include.hpp +16 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/abs.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/arithmetic.hpp +22 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/comparison.hpp +19 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/divides.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/equal_to.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/gcd.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/greater.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/greater_equal.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/lcm.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/less.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/less_equal.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/minus.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/negate.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/not_equal_to.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/numeric_cast.hpp +31 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/plus.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/rational_c_tag.hpp +25 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/rational_constant.hpp +15 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/sign.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/times.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/ratio_io.hpp +1076 -0
- data/src/cxx_supportlib/vendor-modified/boost/rational.hpp +1002 -0
- data/src/cxx_supportlib/vendor-modified/modp_b64.cpp +11 -0
- data/src/helper-scripts/rack-preloader.rb +1 -1
- data/src/nginx_module/{ConfigurationCommands.c → ConfigGeneral/AutoGeneratedDefinitions.c} +351 -134
- data/src/nginx_module/{ConfigurationCommands.c.cxxcodebuilder → ConfigGeneral/AutoGeneratedDefinitions.c.cxxcodebuilder} +14 -25
- data/src/nginx_module/ConfigGeneral/AutoGeneratedManifestDefaultsInitialization.c +396 -0
- data/src/nginx_module/ConfigGeneral/AutoGeneratedManifestDefaultsInitialization.c.cxxcodebuilder +160 -0
- data/src/nginx_module/ConfigGeneral/AutoGeneratedSetterFuncs.c +831 -0
- data/src/nginx_module/ConfigGeneral/AutoGeneratedSetterFuncs.c.cxxcodebuilder +168 -0
- data/src/nginx_module/ConfigGeneral/ManifestGeneration.c +887 -0
- data/src/nginx_module/ConfigGeneral/ManifestGeneration.h +100 -0
- data/src/nginx_module/Configuration.c +165 -621
- data/src/nginx_module/Configuration.h +43 -33
- data/src/nginx_module/ContentHandler.c +46 -40
- data/src/nginx_module/LocationConfig/AutoGeneratedCreateFunction.c +282 -0
- data/src/nginx_module/{CreateLocationConfig.c.cxxcodebuilder → LocationConfig/AutoGeneratedCreateFunction.c.cxxcodebuilder} +43 -17
- data/src/nginx_module/{CacheLocationConfig.c → LocationConfig/AutoGeneratedHeaderSerialization.c} +148 -180
- data/src/nginx_module/{CacheLocationConfig.c.cxxcodebuilder → LocationConfig/AutoGeneratedHeaderSerialization.c.cxxcodebuilder} +13 -11
- data/src/nginx_module/LocationConfig/AutoGeneratedManifestGeneration.c +595 -0
- data/src/nginx_module/LocationConfig/AutoGeneratedManifestGeneration.c.cxxcodebuilder +190 -0
- data/src/nginx_module/{MergeLocationConfig.c → LocationConfig/AutoGeneratedMergeFunction.c} +32 -42
- data/src/nginx_module/{MergeLocationConfig.c.cxxcodebuilder → LocationConfig/AutoGeneratedMergeFunction.c.cxxcodebuilder} +18 -11
- data/src/nginx_module/LocationConfig/AutoGeneratedStruct.h +220 -0
- data/src/nginx_module/{LocationConfig.h.cxxcodebuilder → LocationConfig/AutoGeneratedStruct.h.cxxcodebuilder} +70 -48
- data/src/nginx_module/MainConfig/AutoGeneratedCreateFunction.c +163 -0
- data/src/nginx_module/MainConfig/AutoGeneratedCreateFunction.c.cxxcodebuilder +125 -0
- data/src/nginx_module/MainConfig/AutoGeneratedManifestGeneration.c +303 -0
- data/src/nginx_module/MainConfig/AutoGeneratedManifestGeneration.c.cxxcodebuilder +173 -0
- data/src/nginx_module/MainConfig/AutoGeneratedStruct.h +133 -0
- data/src/nginx_module/MainConfig/AutoGeneratedStruct.h.cxxcodebuilder +154 -0
- data/src/nginx_module/config +13 -4
- data/src/nginx_module/ngx_http_passenger_module.c +154 -84
- data/src/ruby_supportlib/phusion_passenger.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/apache2/config_options.rb +613 -131
- data/src/ruby_supportlib/phusion_passenger/apache2/config_utils.rb +52 -0
- data/src/ruby_supportlib/phusion_passenger/common_library.rb +18 -4
- data/src/ruby_supportlib/phusion_passenger/config/main.rb +2 -0
- data/src/ruby_supportlib/phusion_passenger/config/system_properties_command.rb +104 -0
- data/src/ruby_supportlib/phusion_passenger/constants.rb +0 -2
- data/src/ruby_supportlib/phusion_passenger/nginx/config_options.rb +470 -138
- data/src/ruby_supportlib/phusion_passenger/packaging.rb +1 -0
- data/src/ruby_supportlib/phusion_passenger/platform_info.rb +17 -0
- data/src/ruby_supportlib/phusion_passenger/platform_info/apache.rb +11 -1
- data/src/ruby_supportlib/phusion_passenger/platform_info/compiler.rb +7 -7
- data/src/ruby_supportlib/phusion_passenger/platform_info/networking.rb +293 -0
- data/src/ruby_supportlib/phusion_passenger/standalone/config_options_list.rb +8 -54
- data/src/ruby_supportlib/phusion_passenger/standalone/start_command.rb +1 -5
- data/src/ruby_supportlib/phusion_passenger/standalone/start_command/builtin_engine.rb +4 -7
- data/src/ruby_supportlib/phusion_passenger/vendor/daemon_controller.rb +1 -1
- data/src/schema_printer/SchemaPrinterMain.cpp +78 -0
- data/src/schema_printer/SchemaPrinterMain.cpp.cxxcodebuilder +116 -0
- metadata +671 -30
- data/src/apache2_module/Configuration.cpp +0 -737
- data/src/apache2_module/Configuration.hpp +0 -274
- data/src/apache2_module/ConfigurationCommands.cpp +0 -199
- data/src/apache2_module/ConfigurationFields.hpp +0 -187
- data/src/apache2_module/ConfigurationSetters.cpp +0 -436
- data/src/apache2_module/ConfigurationSetters.cpp.cxxcodebuilder +0 -144
- data/src/apache2_module/CreateDirConfig.cpp +0 -68
- data/src/apache2_module/CreateDirConfig.cpp.cxxcodebuilder +0 -81
- data/src/apache2_module/MergeDirConfig.cpp +0 -155
- data/src/apache2_module/SetHeaders.cpp +0 -111
- data/src/nginx_module/CreateLocationConfig.c +0 -100
- data/src/nginx_module/LocationConfig.h +0 -95
@@ -0,0 +1,190 @@
|
|
1
|
+
//
|
2
|
+
// detail/impl/service_registry.ipp
|
3
|
+
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
4
|
+
//
|
5
|
+
// Copyright (c) 2003-2017 Christopher M. Kohlhoff (chris at kohlhoff dot com)
|
6
|
+
//
|
7
|
+
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
8
|
+
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
9
|
+
//
|
10
|
+
|
11
|
+
#ifndef BOOST_ASIO_DETAIL_IMPL_SERVICE_REGISTRY_IPP
|
12
|
+
#define BOOST_ASIO_DETAIL_IMPL_SERVICE_REGISTRY_IPP
|
13
|
+
|
14
|
+
#if defined(_MSC_VER) && (_MSC_VER >= 1200)
|
15
|
+
# pragma once
|
16
|
+
#endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
|
17
|
+
|
18
|
+
#include <boost/asio/detail/config.hpp>
|
19
|
+
#include <vector>
|
20
|
+
#include <boost/asio/detail/service_registry.hpp>
|
21
|
+
#include <boost/asio/detail/throw_exception.hpp>
|
22
|
+
|
23
|
+
#include <boost/asio/detail/push_options.hpp>
|
24
|
+
|
25
|
+
namespace boost {
|
26
|
+
namespace asio {
|
27
|
+
namespace detail {
|
28
|
+
|
29
|
+
service_registry::~service_registry()
|
30
|
+
{
|
31
|
+
// Shutdown all services. This must be done in a separate loop before the
|
32
|
+
// services are destroyed since the destructors of user-defined handler
|
33
|
+
// objects may try to access other service objects.
|
34
|
+
boost::asio::io_service::service* service = first_service_;
|
35
|
+
while (service)
|
36
|
+
{
|
37
|
+
service->shutdown_service();
|
38
|
+
service = service->next_;
|
39
|
+
}
|
40
|
+
|
41
|
+
// Destroy all services.
|
42
|
+
while (first_service_)
|
43
|
+
{
|
44
|
+
boost::asio::io_service::service* next_service = first_service_->next_;
|
45
|
+
destroy(first_service_);
|
46
|
+
first_service_ = next_service;
|
47
|
+
}
|
48
|
+
}
|
49
|
+
|
50
|
+
void service_registry::notify_fork(boost::asio::io_service::fork_event fork_ev)
|
51
|
+
{
|
52
|
+
// Make a copy of all of the services while holding the lock. We don't want
|
53
|
+
// to hold the lock while calling into each service, as it may try to call
|
54
|
+
// back into this class.
|
55
|
+
std::vector<boost::asio::io_service::service*> services;
|
56
|
+
{
|
57
|
+
boost::asio::detail::mutex::scoped_lock lock(mutex_);
|
58
|
+
boost::asio::io_service::service* service = first_service_;
|
59
|
+
while (service)
|
60
|
+
{
|
61
|
+
services.push_back(service);
|
62
|
+
service = service->next_;
|
63
|
+
}
|
64
|
+
}
|
65
|
+
|
66
|
+
// If processing the fork_prepare event, we want to go in reverse order of
|
67
|
+
// service registration, which happens to be the existing order of the
|
68
|
+
// services in the vector. For the other events we want to go in the other
|
69
|
+
// direction.
|
70
|
+
std::size_t num_services = services.size();
|
71
|
+
if (fork_ev == boost::asio::io_service::fork_prepare)
|
72
|
+
for (std::size_t i = 0; i < num_services; ++i)
|
73
|
+
services[i]->fork_service(fork_ev);
|
74
|
+
else
|
75
|
+
for (std::size_t i = num_services; i > 0; --i)
|
76
|
+
services[i - 1]->fork_service(fork_ev);
|
77
|
+
}
|
78
|
+
|
79
|
+
void service_registry::init_key(boost::asio::io_service::service::key& key,
|
80
|
+
const boost::asio::io_service::id& id)
|
81
|
+
{
|
82
|
+
key.type_info_ = 0;
|
83
|
+
key.id_ = &id;
|
84
|
+
}
|
85
|
+
|
86
|
+
bool service_registry::keys_match(
|
87
|
+
const boost::asio::io_service::service::key& key1,
|
88
|
+
const boost::asio::io_service::service::key& key2)
|
89
|
+
{
|
90
|
+
if (key1.id_ && key2.id_)
|
91
|
+
if (key1.id_ == key2.id_)
|
92
|
+
return true;
|
93
|
+
if (key1.type_info_ && key2.type_info_)
|
94
|
+
if (*key1.type_info_ == *key2.type_info_)
|
95
|
+
return true;
|
96
|
+
return false;
|
97
|
+
}
|
98
|
+
|
99
|
+
void service_registry::destroy(boost::asio::io_service::service* service)
|
100
|
+
{
|
101
|
+
delete service;
|
102
|
+
}
|
103
|
+
|
104
|
+
boost::asio::io_service::service* service_registry::do_use_service(
|
105
|
+
const boost::asio::io_service::service::key& key,
|
106
|
+
factory_type factory)
|
107
|
+
{
|
108
|
+
boost::asio::detail::mutex::scoped_lock lock(mutex_);
|
109
|
+
|
110
|
+
// First see if there is an existing service object with the given key.
|
111
|
+
boost::asio::io_service::service* service = first_service_;
|
112
|
+
while (service)
|
113
|
+
{
|
114
|
+
if (keys_match(service->key_, key))
|
115
|
+
return service;
|
116
|
+
service = service->next_;
|
117
|
+
}
|
118
|
+
|
119
|
+
// Create a new service object. The service registry's mutex is not locked
|
120
|
+
// at this time to allow for nested calls into this function from the new
|
121
|
+
// service's constructor.
|
122
|
+
lock.unlock();
|
123
|
+
auto_service_ptr new_service = { factory(owner_) };
|
124
|
+
new_service.ptr_->key_ = key;
|
125
|
+
lock.lock();
|
126
|
+
|
127
|
+
// Check that nobody else created another service object of the same type
|
128
|
+
// while the lock was released.
|
129
|
+
service = first_service_;
|
130
|
+
while (service)
|
131
|
+
{
|
132
|
+
if (keys_match(service->key_, key))
|
133
|
+
return service;
|
134
|
+
service = service->next_;
|
135
|
+
}
|
136
|
+
|
137
|
+
// Service was successfully initialised, pass ownership to registry.
|
138
|
+
new_service.ptr_->next_ = first_service_;
|
139
|
+
first_service_ = new_service.ptr_;
|
140
|
+
new_service.ptr_ = 0;
|
141
|
+
return first_service_;
|
142
|
+
}
|
143
|
+
|
144
|
+
void service_registry::do_add_service(
|
145
|
+
const boost::asio::io_service::service::key& key,
|
146
|
+
boost::asio::io_service::service* new_service)
|
147
|
+
{
|
148
|
+
if (&owner_ != &new_service->get_io_service())
|
149
|
+
boost::asio::detail::throw_exception(invalid_service_owner());
|
150
|
+
|
151
|
+
boost::asio::detail::mutex::scoped_lock lock(mutex_);
|
152
|
+
|
153
|
+
// Check if there is an existing service object with the given key.
|
154
|
+
boost::asio::io_service::service* service = first_service_;
|
155
|
+
while (service)
|
156
|
+
{
|
157
|
+
if (keys_match(service->key_, key))
|
158
|
+
boost::asio::detail::throw_exception(service_already_exists());
|
159
|
+
service = service->next_;
|
160
|
+
}
|
161
|
+
|
162
|
+
// Take ownership of the service object.
|
163
|
+
new_service->key_ = key;
|
164
|
+
new_service->next_ = first_service_;
|
165
|
+
first_service_ = new_service;
|
166
|
+
}
|
167
|
+
|
168
|
+
bool service_registry::do_has_service(
|
169
|
+
const boost::asio::io_service::service::key& key) const
|
170
|
+
{
|
171
|
+
boost::asio::detail::mutex::scoped_lock lock(mutex_);
|
172
|
+
|
173
|
+
boost::asio::io_service::service* service = first_service_;
|
174
|
+
while (service)
|
175
|
+
{
|
176
|
+
if (keys_match(service->key_, key))
|
177
|
+
return true;
|
178
|
+
service = service->next_;
|
179
|
+
}
|
180
|
+
|
181
|
+
return false;
|
182
|
+
}
|
183
|
+
|
184
|
+
} // namespace detail
|
185
|
+
} // namespace asio
|
186
|
+
} // namespace boost
|
187
|
+
|
188
|
+
#include <boost/asio/detail/pop_options.hpp>
|
189
|
+
|
190
|
+
#endif // BOOST_ASIO_DETAIL_IMPL_SERVICE_REGISTRY_IPP
|
@@ -0,0 +1,649 @@
|
|
1
|
+
//
|
2
|
+
// detail/impl/signal_set_service.ipp
|
3
|
+
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
4
|
+
//
|
5
|
+
// Copyright (c) 2003-2017 Christopher M. Kohlhoff (chris at kohlhoff dot com)
|
6
|
+
//
|
7
|
+
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
8
|
+
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
9
|
+
//
|
10
|
+
|
11
|
+
#ifndef BOOST_ASIO_DETAIL_IMPL_SIGNAL_SET_SERVICE_IPP
|
12
|
+
#define BOOST_ASIO_DETAIL_IMPL_SIGNAL_SET_SERVICE_IPP
|
13
|
+
|
14
|
+
#if defined(_MSC_VER) && (_MSC_VER >= 1200)
|
15
|
+
# pragma once
|
16
|
+
#endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
|
17
|
+
|
18
|
+
#include <boost/asio/detail/config.hpp>
|
19
|
+
|
20
|
+
#include <cstring>
|
21
|
+
#include <boost/asio/detail/reactor.hpp>
|
22
|
+
#include <boost/asio/detail/signal_blocker.hpp>
|
23
|
+
#include <boost/asio/detail/signal_set_service.hpp>
|
24
|
+
#include <boost/asio/detail/static_mutex.hpp>
|
25
|
+
|
26
|
+
#include <boost/asio/detail/push_options.hpp>
|
27
|
+
|
28
|
+
namespace boost {
|
29
|
+
namespace asio {
|
30
|
+
namespace detail {
|
31
|
+
|
32
|
+
struct signal_state
|
33
|
+
{
|
34
|
+
// Mutex used for protecting global state.
|
35
|
+
static_mutex mutex_;
|
36
|
+
|
37
|
+
// The read end of the pipe used for signal notifications.
|
38
|
+
int read_descriptor_;
|
39
|
+
|
40
|
+
// The write end of the pipe used for signal notifications.
|
41
|
+
int write_descriptor_;
|
42
|
+
|
43
|
+
// Whether the signal state has been prepared for a fork.
|
44
|
+
bool fork_prepared_;
|
45
|
+
|
46
|
+
// The head of a linked list of all signal_set_service instances.
|
47
|
+
class signal_set_service* service_list_;
|
48
|
+
|
49
|
+
// A count of the number of objects that are registered for each signal.
|
50
|
+
std::size_t registration_count_[max_signal_number];
|
51
|
+
};
|
52
|
+
|
53
|
+
signal_state* get_signal_state()
|
54
|
+
{
|
55
|
+
static signal_state state = {
|
56
|
+
BOOST_ASIO_STATIC_MUTEX_INIT, -1, -1, false, 0, { 0 } };
|
57
|
+
return &state;
|
58
|
+
}
|
59
|
+
|
60
|
+
void boost_asio_signal_handler(int signal_number)
|
61
|
+
{
|
62
|
+
#if defined(BOOST_ASIO_WINDOWS) \
|
63
|
+
|| defined(BOOST_ASIO_WINDOWS_RUNTIME) \
|
64
|
+
|| defined(__CYGWIN__)
|
65
|
+
signal_set_service::deliver_signal(signal_number);
|
66
|
+
#else // defined(BOOST_ASIO_WINDOWS)
|
67
|
+
// || defined(BOOST_ASIO_WINDOWS_RUNTIME)
|
68
|
+
// || defined(__CYGWIN__)
|
69
|
+
int saved_errno = errno;
|
70
|
+
signal_state* state = get_signal_state();
|
71
|
+
signed_size_type result = ::write(state->write_descriptor_,
|
72
|
+
&signal_number, sizeof(signal_number));
|
73
|
+
(void)result;
|
74
|
+
errno = saved_errno;
|
75
|
+
#endif // defined(BOOST_ASIO_WINDOWS)
|
76
|
+
// || defined(BOOST_ASIO_WINDOWS_RUNTIME)
|
77
|
+
// || defined(__CYGWIN__)
|
78
|
+
|
79
|
+
#if defined(BOOST_ASIO_HAS_SIGNAL) && !defined(BOOST_ASIO_HAS_SIGACTION)
|
80
|
+
::signal(signal_number, boost_asio_signal_handler);
|
81
|
+
#endif // defined(BOOST_ASIO_HAS_SIGNAL) && !defined(BOOST_ASIO_HAS_SIGACTION)
|
82
|
+
}
|
83
|
+
|
84
|
+
#if !defined(BOOST_ASIO_WINDOWS) \
|
85
|
+
&& !defined(BOOST_ASIO_WINDOWS_RUNTIME) \
|
86
|
+
&& !defined(__CYGWIN__)
|
87
|
+
class signal_set_service::pipe_read_op : public reactor_op
|
88
|
+
{
|
89
|
+
public:
|
90
|
+
pipe_read_op()
|
91
|
+
: reactor_op(&pipe_read_op::do_perform, pipe_read_op::do_complete)
|
92
|
+
{
|
93
|
+
}
|
94
|
+
|
95
|
+
static bool do_perform(reactor_op*)
|
96
|
+
{
|
97
|
+
signal_state* state = get_signal_state();
|
98
|
+
|
99
|
+
int fd = state->read_descriptor_;
|
100
|
+
int signal_number = 0;
|
101
|
+
while (::read(fd, &signal_number, sizeof(int)) == sizeof(int))
|
102
|
+
if (signal_number >= 0 && signal_number < max_signal_number)
|
103
|
+
signal_set_service::deliver_signal(signal_number);
|
104
|
+
|
105
|
+
return false;
|
106
|
+
}
|
107
|
+
|
108
|
+
static void do_complete(io_service_impl* /*owner*/, operation* base,
|
109
|
+
const boost::system::error_code& /*ec*/,
|
110
|
+
std::size_t /*bytes_transferred*/)
|
111
|
+
{
|
112
|
+
pipe_read_op* o(static_cast<pipe_read_op*>(base));
|
113
|
+
delete o;
|
114
|
+
}
|
115
|
+
};
|
116
|
+
#endif // !defined(BOOST_ASIO_WINDOWS)
|
117
|
+
// && !defined(BOOST_ASIO_WINDOWS_RUNTIME)
|
118
|
+
// && !defined(__CYGWIN__)
|
119
|
+
|
120
|
+
signal_set_service::signal_set_service(
|
121
|
+
boost::asio::io_service& io_service)
|
122
|
+
: io_service_(boost::asio::use_service<io_service_impl>(io_service)),
|
123
|
+
#if !defined(BOOST_ASIO_WINDOWS) \
|
124
|
+
&& !defined(BOOST_ASIO_WINDOWS_RUNTIME) \
|
125
|
+
&& !defined(__CYGWIN__)
|
126
|
+
reactor_(boost::asio::use_service<reactor>(io_service)),
|
127
|
+
#endif // !defined(BOOST_ASIO_WINDOWS)
|
128
|
+
// && !defined(BOOST_ASIO_WINDOWS_RUNTIME)
|
129
|
+
// && !defined(__CYGWIN__)
|
130
|
+
next_(0),
|
131
|
+
prev_(0)
|
132
|
+
{
|
133
|
+
get_signal_state()->mutex_.init();
|
134
|
+
|
135
|
+
#if !defined(BOOST_ASIO_WINDOWS) \
|
136
|
+
&& !defined(BOOST_ASIO_WINDOWS_RUNTIME) \
|
137
|
+
&& !defined(__CYGWIN__)
|
138
|
+
reactor_.init_task();
|
139
|
+
#endif // !defined(BOOST_ASIO_WINDOWS)
|
140
|
+
// && !defined(BOOST_ASIO_WINDOWS_RUNTIME)
|
141
|
+
// && !defined(__CYGWIN__)
|
142
|
+
|
143
|
+
for (int i = 0; i < max_signal_number; ++i)
|
144
|
+
registrations_[i] = 0;
|
145
|
+
|
146
|
+
add_service(this);
|
147
|
+
}
|
148
|
+
|
149
|
+
signal_set_service::~signal_set_service()
|
150
|
+
{
|
151
|
+
remove_service(this);
|
152
|
+
}
|
153
|
+
|
154
|
+
void signal_set_service::shutdown_service()
|
155
|
+
{
|
156
|
+
remove_service(this);
|
157
|
+
|
158
|
+
op_queue<operation> ops;
|
159
|
+
|
160
|
+
for (int i = 0; i < max_signal_number; ++i)
|
161
|
+
{
|
162
|
+
registration* reg = registrations_[i];
|
163
|
+
while (reg)
|
164
|
+
{
|
165
|
+
ops.push(*reg->queue_);
|
166
|
+
reg = reg->next_in_table_;
|
167
|
+
}
|
168
|
+
}
|
169
|
+
|
170
|
+
io_service_.abandon_operations(ops);
|
171
|
+
}
|
172
|
+
|
173
|
+
void signal_set_service::fork_service(
|
174
|
+
boost::asio::io_service::fork_event fork_ev)
|
175
|
+
{
|
176
|
+
#if !defined(BOOST_ASIO_WINDOWS) \
|
177
|
+
&& !defined(BOOST_ASIO_WINDOWS_RUNTIME) \
|
178
|
+
&& !defined(__CYGWIN__)
|
179
|
+
signal_state* state = get_signal_state();
|
180
|
+
static_mutex::scoped_lock lock(state->mutex_);
|
181
|
+
|
182
|
+
switch (fork_ev)
|
183
|
+
{
|
184
|
+
case boost::asio::io_service::fork_prepare:
|
185
|
+
{
|
186
|
+
int read_descriptor = state->read_descriptor_;
|
187
|
+
state->fork_prepared_ = true;
|
188
|
+
lock.unlock();
|
189
|
+
reactor_.deregister_internal_descriptor(read_descriptor, reactor_data_);
|
190
|
+
}
|
191
|
+
break;
|
192
|
+
case boost::asio::io_service::fork_parent:
|
193
|
+
if (state->fork_prepared_)
|
194
|
+
{
|
195
|
+
int read_descriptor = state->read_descriptor_;
|
196
|
+
state->fork_prepared_ = false;
|
197
|
+
lock.unlock();
|
198
|
+
reactor_.register_internal_descriptor(reactor::read_op,
|
199
|
+
read_descriptor, reactor_data_, new pipe_read_op);
|
200
|
+
}
|
201
|
+
break;
|
202
|
+
case boost::asio::io_service::fork_child:
|
203
|
+
if (state->fork_prepared_)
|
204
|
+
{
|
205
|
+
boost::asio::detail::signal_blocker blocker;
|
206
|
+
close_descriptors();
|
207
|
+
open_descriptors();
|
208
|
+
int read_descriptor = state->read_descriptor_;
|
209
|
+
state->fork_prepared_ = false;
|
210
|
+
lock.unlock();
|
211
|
+
reactor_.register_internal_descriptor(reactor::read_op,
|
212
|
+
read_descriptor, reactor_data_, new pipe_read_op);
|
213
|
+
}
|
214
|
+
break;
|
215
|
+
default:
|
216
|
+
break;
|
217
|
+
}
|
218
|
+
#else // !defined(BOOST_ASIO_WINDOWS)
|
219
|
+
// && !defined(BOOST_ASIO_WINDOWS_RUNTIME)
|
220
|
+
// && !defined(__CYGWIN__)
|
221
|
+
(void)fork_ev;
|
222
|
+
#endif // !defined(BOOST_ASIO_WINDOWS)
|
223
|
+
// && !defined(BOOST_ASIO_WINDOWS_RUNTIME)
|
224
|
+
// && !defined(__CYGWIN__)
|
225
|
+
}
|
226
|
+
|
227
|
+
void signal_set_service::construct(
|
228
|
+
signal_set_service::implementation_type& impl)
|
229
|
+
{
|
230
|
+
impl.signals_ = 0;
|
231
|
+
}
|
232
|
+
|
233
|
+
void signal_set_service::destroy(
|
234
|
+
signal_set_service::implementation_type& impl)
|
235
|
+
{
|
236
|
+
boost::system::error_code ignored_ec;
|
237
|
+
clear(impl, ignored_ec);
|
238
|
+
cancel(impl, ignored_ec);
|
239
|
+
}
|
240
|
+
|
241
|
+
boost::system::error_code signal_set_service::add(
|
242
|
+
signal_set_service::implementation_type& impl,
|
243
|
+
int signal_number, boost::system::error_code& ec)
|
244
|
+
{
|
245
|
+
// Check that the signal number is valid.
|
246
|
+
if (signal_number < 0 || signal_number >= max_signal_number)
|
247
|
+
{
|
248
|
+
ec = boost::asio::error::invalid_argument;
|
249
|
+
return ec;
|
250
|
+
}
|
251
|
+
|
252
|
+
signal_state* state = get_signal_state();
|
253
|
+
static_mutex::scoped_lock lock(state->mutex_);
|
254
|
+
|
255
|
+
// Find the appropriate place to insert the registration.
|
256
|
+
registration** insertion_point = &impl.signals_;
|
257
|
+
registration* next = impl.signals_;
|
258
|
+
while (next && next->signal_number_ < signal_number)
|
259
|
+
{
|
260
|
+
insertion_point = &next->next_in_set_;
|
261
|
+
next = next->next_in_set_;
|
262
|
+
}
|
263
|
+
|
264
|
+
// Only do something if the signal is not already registered.
|
265
|
+
if (next == 0 || next->signal_number_ != signal_number)
|
266
|
+
{
|
267
|
+
registration* new_registration = new registration;
|
268
|
+
|
269
|
+
#if defined(BOOST_ASIO_HAS_SIGNAL) || defined(BOOST_ASIO_HAS_SIGACTION)
|
270
|
+
// Register for the signal if we're the first.
|
271
|
+
if (state->registration_count_[signal_number] == 0)
|
272
|
+
{
|
273
|
+
# if defined(BOOST_ASIO_HAS_SIGACTION)
|
274
|
+
using namespace std; // For memset.
|
275
|
+
struct sigaction sa;
|
276
|
+
memset(&sa, 0, sizeof(sa));
|
277
|
+
sa.sa_handler = boost_asio_signal_handler;
|
278
|
+
sigfillset(&sa.sa_mask);
|
279
|
+
if (::sigaction(signal_number, &sa, 0) == -1)
|
280
|
+
# else // defined(BOOST_ASIO_HAS_SIGACTION)
|
281
|
+
if (::signal(signal_number, boost_asio_signal_handler) == SIG_ERR)
|
282
|
+
# endif // defined(BOOST_ASIO_HAS_SIGACTION)
|
283
|
+
{
|
284
|
+
# if defined(BOOST_ASIO_WINDOWS) || defined(__CYGWIN__)
|
285
|
+
ec = boost::asio::error::invalid_argument;
|
286
|
+
# else // defined(BOOST_ASIO_WINDOWS) || defined(__CYGWIN__)
|
287
|
+
ec = boost::system::error_code(errno,
|
288
|
+
boost::asio::error::get_system_category());
|
289
|
+
# endif // defined(BOOST_ASIO_WINDOWS) || defined(__CYGWIN__)
|
290
|
+
delete new_registration;
|
291
|
+
return ec;
|
292
|
+
}
|
293
|
+
}
|
294
|
+
#endif // defined(BOOST_ASIO_HAS_SIGNAL) || defined(BOOST_ASIO_HAS_SIGACTION)
|
295
|
+
|
296
|
+
// Record the new registration in the set.
|
297
|
+
new_registration->signal_number_ = signal_number;
|
298
|
+
new_registration->queue_ = &impl.queue_;
|
299
|
+
new_registration->next_in_set_ = next;
|
300
|
+
*insertion_point = new_registration;
|
301
|
+
|
302
|
+
// Insert registration into the registration table.
|
303
|
+
new_registration->next_in_table_ = registrations_[signal_number];
|
304
|
+
if (registrations_[signal_number])
|
305
|
+
registrations_[signal_number]->prev_in_table_ = new_registration;
|
306
|
+
registrations_[signal_number] = new_registration;
|
307
|
+
|
308
|
+
++state->registration_count_[signal_number];
|
309
|
+
}
|
310
|
+
|
311
|
+
ec = boost::system::error_code();
|
312
|
+
return ec;
|
313
|
+
}
|
314
|
+
|
315
|
+
boost::system::error_code signal_set_service::remove(
|
316
|
+
signal_set_service::implementation_type& impl,
|
317
|
+
int signal_number, boost::system::error_code& ec)
|
318
|
+
{
|
319
|
+
// Check that the signal number is valid.
|
320
|
+
if (signal_number < 0 || signal_number >= max_signal_number)
|
321
|
+
{
|
322
|
+
ec = boost::asio::error::invalid_argument;
|
323
|
+
return ec;
|
324
|
+
}
|
325
|
+
|
326
|
+
signal_state* state = get_signal_state();
|
327
|
+
static_mutex::scoped_lock lock(state->mutex_);
|
328
|
+
|
329
|
+
// Find the signal number in the list of registrations.
|
330
|
+
registration** deletion_point = &impl.signals_;
|
331
|
+
registration* reg = impl.signals_;
|
332
|
+
while (reg && reg->signal_number_ < signal_number)
|
333
|
+
{
|
334
|
+
deletion_point = ®->next_in_set_;
|
335
|
+
reg = reg->next_in_set_;
|
336
|
+
}
|
337
|
+
|
338
|
+
if (reg != 0 && reg->signal_number_ == signal_number)
|
339
|
+
{
|
340
|
+
#if defined(BOOST_ASIO_HAS_SIGNAL) || defined(BOOST_ASIO_HAS_SIGACTION)
|
341
|
+
// Set signal handler back to the default if we're the last.
|
342
|
+
if (state->registration_count_[signal_number] == 1)
|
343
|
+
{
|
344
|
+
# if defined(BOOST_ASIO_HAS_SIGACTION)
|
345
|
+
using namespace std; // For memset.
|
346
|
+
struct sigaction sa;
|
347
|
+
memset(&sa, 0, sizeof(sa));
|
348
|
+
sa.sa_handler = SIG_DFL;
|
349
|
+
if (::sigaction(signal_number, &sa, 0) == -1)
|
350
|
+
# else // defined(BOOST_ASIO_HAS_SIGACTION)
|
351
|
+
if (::signal(signal_number, SIG_DFL) == SIG_ERR)
|
352
|
+
# endif // defined(BOOST_ASIO_HAS_SIGACTION)
|
353
|
+
{
|
354
|
+
# if defined(BOOST_ASIO_WINDOWS) || defined(__CYGWIN__)
|
355
|
+
ec = boost::asio::error::invalid_argument;
|
356
|
+
# else // defined(BOOST_ASIO_WINDOWS) || defined(__CYGWIN__)
|
357
|
+
ec = boost::system::error_code(errno,
|
358
|
+
boost::asio::error::get_system_category());
|
359
|
+
# endif // defined(BOOST_ASIO_WINDOWS) || defined(__CYGWIN__)
|
360
|
+
return ec;
|
361
|
+
}
|
362
|
+
}
|
363
|
+
#endif // defined(BOOST_ASIO_HAS_SIGNAL) || defined(BOOST_ASIO_HAS_SIGACTION)
|
364
|
+
|
365
|
+
// Remove the registration from the set.
|
366
|
+
*deletion_point = reg->next_in_set_;
|
367
|
+
|
368
|
+
// Remove the registration from the registration table.
|
369
|
+
if (registrations_[signal_number] == reg)
|
370
|
+
registrations_[signal_number] = reg->next_in_table_;
|
371
|
+
if (reg->prev_in_table_)
|
372
|
+
reg->prev_in_table_->next_in_table_ = reg->next_in_table_;
|
373
|
+
if (reg->next_in_table_)
|
374
|
+
reg->next_in_table_->prev_in_table_ = reg->prev_in_table_;
|
375
|
+
|
376
|
+
--state->registration_count_[signal_number];
|
377
|
+
|
378
|
+
delete reg;
|
379
|
+
}
|
380
|
+
|
381
|
+
ec = boost::system::error_code();
|
382
|
+
return ec;
|
383
|
+
}
|
384
|
+
|
385
|
+
boost::system::error_code signal_set_service::clear(
|
386
|
+
signal_set_service::implementation_type& impl,
|
387
|
+
boost::system::error_code& ec)
|
388
|
+
{
|
389
|
+
signal_state* state = get_signal_state();
|
390
|
+
static_mutex::scoped_lock lock(state->mutex_);
|
391
|
+
|
392
|
+
while (registration* reg = impl.signals_)
|
393
|
+
{
|
394
|
+
#if defined(BOOST_ASIO_HAS_SIGNAL) || defined(BOOST_ASIO_HAS_SIGACTION)
|
395
|
+
// Set signal handler back to the default if we're the last.
|
396
|
+
if (state->registration_count_[reg->signal_number_] == 1)
|
397
|
+
{
|
398
|
+
# if defined(BOOST_ASIO_HAS_SIGACTION)
|
399
|
+
using namespace std; // For memset.
|
400
|
+
struct sigaction sa;
|
401
|
+
memset(&sa, 0, sizeof(sa));
|
402
|
+
sa.sa_handler = SIG_DFL;
|
403
|
+
if (::sigaction(reg->signal_number_, &sa, 0) == -1)
|
404
|
+
# else // defined(BOOST_ASIO_HAS_SIGACTION)
|
405
|
+
if (::signal(reg->signal_number_, SIG_DFL) == SIG_ERR)
|
406
|
+
# endif // defined(BOOST_ASIO_HAS_SIGACTION)
|
407
|
+
{
|
408
|
+
# if defined(BOOST_ASIO_WINDOWS) || defined(__CYGWIN__)
|
409
|
+
ec = boost::asio::error::invalid_argument;
|
410
|
+
# else // defined(BOOST_ASIO_WINDOWS) || defined(__CYGWIN__)
|
411
|
+
ec = boost::system::error_code(errno,
|
412
|
+
boost::asio::error::get_system_category());
|
413
|
+
# endif // defined(BOOST_ASIO_WINDOWS) || defined(__CYGWIN__)
|
414
|
+
return ec;
|
415
|
+
}
|
416
|
+
}
|
417
|
+
#endif // defined(BOOST_ASIO_HAS_SIGNAL) || defined(BOOST_ASIO_HAS_SIGACTION)
|
418
|
+
|
419
|
+
// Remove the registration from the registration table.
|
420
|
+
if (registrations_[reg->signal_number_] == reg)
|
421
|
+
registrations_[reg->signal_number_] = reg->next_in_table_;
|
422
|
+
if (reg->prev_in_table_)
|
423
|
+
reg->prev_in_table_->next_in_table_ = reg->next_in_table_;
|
424
|
+
if (reg->next_in_table_)
|
425
|
+
reg->next_in_table_->prev_in_table_ = reg->prev_in_table_;
|
426
|
+
|
427
|
+
--state->registration_count_[reg->signal_number_];
|
428
|
+
|
429
|
+
impl.signals_ = reg->next_in_set_;
|
430
|
+
delete reg;
|
431
|
+
}
|
432
|
+
|
433
|
+
ec = boost::system::error_code();
|
434
|
+
return ec;
|
435
|
+
}
|
436
|
+
|
437
|
+
boost::system::error_code signal_set_service::cancel(
|
438
|
+
signal_set_service::implementation_type& impl,
|
439
|
+
boost::system::error_code& ec)
|
440
|
+
{
|
441
|
+
BOOST_ASIO_HANDLER_OPERATION(("signal_set", &impl, "cancel"));
|
442
|
+
|
443
|
+
op_queue<operation> ops;
|
444
|
+
{
|
445
|
+
signal_state* state = get_signal_state();
|
446
|
+
static_mutex::scoped_lock lock(state->mutex_);
|
447
|
+
|
448
|
+
while (signal_op* op = impl.queue_.front())
|
449
|
+
{
|
450
|
+
op->ec_ = boost::asio::error::operation_aborted;
|
451
|
+
impl.queue_.pop();
|
452
|
+
ops.push(op);
|
453
|
+
}
|
454
|
+
}
|
455
|
+
|
456
|
+
io_service_.post_deferred_completions(ops);
|
457
|
+
|
458
|
+
ec = boost::system::error_code();
|
459
|
+
return ec;
|
460
|
+
}
|
461
|
+
|
462
|
+
void signal_set_service::deliver_signal(int signal_number)
|
463
|
+
{
|
464
|
+
signal_state* state = get_signal_state();
|
465
|
+
static_mutex::scoped_lock lock(state->mutex_);
|
466
|
+
|
467
|
+
signal_set_service* service = state->service_list_;
|
468
|
+
while (service)
|
469
|
+
{
|
470
|
+
op_queue<operation> ops;
|
471
|
+
|
472
|
+
registration* reg = service->registrations_[signal_number];
|
473
|
+
while (reg)
|
474
|
+
{
|
475
|
+
if (reg->queue_->empty())
|
476
|
+
{
|
477
|
+
++reg->undelivered_;
|
478
|
+
}
|
479
|
+
else
|
480
|
+
{
|
481
|
+
while (signal_op* op = reg->queue_->front())
|
482
|
+
{
|
483
|
+
op->signal_number_ = signal_number;
|
484
|
+
reg->queue_->pop();
|
485
|
+
ops.push(op);
|
486
|
+
}
|
487
|
+
}
|
488
|
+
|
489
|
+
reg = reg->next_in_table_;
|
490
|
+
}
|
491
|
+
|
492
|
+
service->io_service_.post_deferred_completions(ops);
|
493
|
+
|
494
|
+
service = service->next_;
|
495
|
+
}
|
496
|
+
}
|
497
|
+
|
498
|
+
void signal_set_service::add_service(signal_set_service* service)
|
499
|
+
{
|
500
|
+
signal_state* state = get_signal_state();
|
501
|
+
static_mutex::scoped_lock lock(state->mutex_);
|
502
|
+
|
503
|
+
#if !defined(BOOST_ASIO_WINDOWS) && !defined(__CYGWIN__)
|
504
|
+
// If this is the first service to be created, open a new pipe.
|
505
|
+
if (state->service_list_ == 0)
|
506
|
+
open_descriptors();
|
507
|
+
#endif // !defined(BOOST_ASIO_WINDOWS) && !defined(__CYGWIN__)
|
508
|
+
|
509
|
+
// Insert service into linked list of all services.
|
510
|
+
service->next_ = state->service_list_;
|
511
|
+
service->prev_ = 0;
|
512
|
+
if (state->service_list_)
|
513
|
+
state->service_list_->prev_ = service;
|
514
|
+
state->service_list_ = service;
|
515
|
+
|
516
|
+
#if !defined(BOOST_ASIO_WINDOWS) \
|
517
|
+
&& !defined(BOOST_ASIO_WINDOWS_RUNTIME) \
|
518
|
+
&& !defined(__CYGWIN__)
|
519
|
+
// Register for pipe readiness notifications.
|
520
|
+
int read_descriptor = state->read_descriptor_;
|
521
|
+
lock.unlock();
|
522
|
+
service->reactor_.register_internal_descriptor(reactor::read_op,
|
523
|
+
read_descriptor, service->reactor_data_, new pipe_read_op);
|
524
|
+
#endif // !defined(BOOST_ASIO_WINDOWS)
|
525
|
+
// && !defined(BOOST_ASIO_WINDOWS_RUNTIME)
|
526
|
+
// && !defined(__CYGWIN__)
|
527
|
+
}
|
528
|
+
|
529
|
+
void signal_set_service::remove_service(signal_set_service* service)
|
530
|
+
{
|
531
|
+
signal_state* state = get_signal_state();
|
532
|
+
static_mutex::scoped_lock lock(state->mutex_);
|
533
|
+
|
534
|
+
if (service->next_ || service->prev_ || state->service_list_ == service)
|
535
|
+
{
|
536
|
+
#if !defined(BOOST_ASIO_WINDOWS) \
|
537
|
+
&& !defined(BOOST_ASIO_WINDOWS_RUNTIME) \
|
538
|
+
&& !defined(__CYGWIN__)
|
539
|
+
// Disable the pipe readiness notifications.
|
540
|
+
int read_descriptor = state->read_descriptor_;
|
541
|
+
lock.unlock();
|
542
|
+
service->reactor_.deregister_descriptor(
|
543
|
+
read_descriptor, service->reactor_data_, false);
|
544
|
+
lock.lock();
|
545
|
+
#endif // !defined(BOOST_ASIO_WINDOWS)
|
546
|
+
// && !defined(BOOST_ASIO_WINDOWS_RUNTIME)
|
547
|
+
// && !defined(__CYGWIN__)
|
548
|
+
|
549
|
+
// Remove service from linked list of all services.
|
550
|
+
if (state->service_list_ == service)
|
551
|
+
state->service_list_ = service->next_;
|
552
|
+
if (service->prev_)
|
553
|
+
service->prev_->next_ = service->next_;
|
554
|
+
if (service->next_)
|
555
|
+
service->next_->prev_= service->prev_;
|
556
|
+
service->next_ = 0;
|
557
|
+
service->prev_ = 0;
|
558
|
+
|
559
|
+
#if !defined(BOOST_ASIO_WINDOWS) && !defined(__CYGWIN__)
|
560
|
+
// If this is the last service to be removed, close the pipe.
|
561
|
+
if (state->service_list_ == 0)
|
562
|
+
close_descriptors();
|
563
|
+
#endif // !defined(BOOST_ASIO_WINDOWS) && !defined(__CYGWIN__)
|
564
|
+
}
|
565
|
+
}
|
566
|
+
|
567
|
+
void signal_set_service::open_descriptors()
|
568
|
+
{
|
569
|
+
#if !defined(BOOST_ASIO_WINDOWS) \
|
570
|
+
&& !defined(BOOST_ASIO_WINDOWS_RUNTIME) \
|
571
|
+
&& !defined(__CYGWIN__)
|
572
|
+
signal_state* state = get_signal_state();
|
573
|
+
|
574
|
+
int pipe_fds[2];
|
575
|
+
if (::pipe(pipe_fds) == 0)
|
576
|
+
{
|
577
|
+
state->read_descriptor_ = pipe_fds[0];
|
578
|
+
::fcntl(state->read_descriptor_, F_SETFL, O_NONBLOCK);
|
579
|
+
|
580
|
+
state->write_descriptor_ = pipe_fds[1];
|
581
|
+
::fcntl(state->write_descriptor_, F_SETFL, O_NONBLOCK);
|
582
|
+
|
583
|
+
#if defined(FD_CLOEXEC)
|
584
|
+
::fcntl(state->read_descriptor_, F_SETFD, FD_CLOEXEC);
|
585
|
+
::fcntl(state->write_descriptor_, F_SETFD, FD_CLOEXEC);
|
586
|
+
#endif // defined(FD_CLOEXEC)
|
587
|
+
}
|
588
|
+
else
|
589
|
+
{
|
590
|
+
boost::system::error_code ec(errno,
|
591
|
+
boost::asio::error::get_system_category());
|
592
|
+
boost::asio::detail::throw_error(ec, "signal_set_service pipe");
|
593
|
+
}
|
594
|
+
#endif // !defined(BOOST_ASIO_WINDOWS)
|
595
|
+
// && !defined(BOOST_ASIO_WINDOWS_RUNTIME)
|
596
|
+
// && !defined(__CYGWIN__)
|
597
|
+
}
|
598
|
+
|
599
|
+
void signal_set_service::close_descriptors()
|
600
|
+
{
|
601
|
+
#if !defined(BOOST_ASIO_WINDOWS) \
|
602
|
+
&& !defined(BOOST_ASIO_WINDOWS_RUNTIME) \
|
603
|
+
&& !defined(__CYGWIN__)
|
604
|
+
signal_state* state = get_signal_state();
|
605
|
+
|
606
|
+
if (state->read_descriptor_ != -1)
|
607
|
+
::close(state->read_descriptor_);
|
608
|
+
state->read_descriptor_ = -1;
|
609
|
+
|
610
|
+
if (state->write_descriptor_ != -1)
|
611
|
+
::close(state->write_descriptor_);
|
612
|
+
state->write_descriptor_ = -1;
|
613
|
+
#endif // !defined(BOOST_ASIO_WINDOWS)
|
614
|
+
// && !defined(BOOST_ASIO_WINDOWS_RUNTIME)
|
615
|
+
// && !defined(__CYGWIN__)
|
616
|
+
}
|
617
|
+
|
618
|
+
void signal_set_service::start_wait_op(
|
619
|
+
signal_set_service::implementation_type& impl, signal_op* op)
|
620
|
+
{
|
621
|
+
io_service_.work_started();
|
622
|
+
|
623
|
+
signal_state* state = get_signal_state();
|
624
|
+
static_mutex::scoped_lock lock(state->mutex_);
|
625
|
+
|
626
|
+
registration* reg = impl.signals_;
|
627
|
+
while (reg)
|
628
|
+
{
|
629
|
+
if (reg->undelivered_ > 0)
|
630
|
+
{
|
631
|
+
--reg->undelivered_;
|
632
|
+
op->signal_number_ = reg->signal_number_;
|
633
|
+
io_service_.post_deferred_completion(op);
|
634
|
+
return;
|
635
|
+
}
|
636
|
+
|
637
|
+
reg = reg->next_in_set_;
|
638
|
+
}
|
639
|
+
|
640
|
+
impl.queue_.push(op);
|
641
|
+
}
|
642
|
+
|
643
|
+
} // namespace detail
|
644
|
+
} // namespace asio
|
645
|
+
} // namespace boost
|
646
|
+
|
647
|
+
#include <boost/asio/detail/pop_options.hpp>
|
648
|
+
|
649
|
+
#endif // BOOST_ASIO_DETAIL_IMPL_SIGNAL_SET_SERVICE_IPP
|