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,140 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (c) 2014, Peter Thorson. All rights reserved.
|
3
|
+
*
|
4
|
+
* Redistribution and use in source and binary forms, with or without
|
5
|
+
* modification, are permitted provided that the following conditions are met:
|
6
|
+
* * Redistributions of source code must retain the above copyright
|
7
|
+
* notice, this list of conditions and the following disclaimer.
|
8
|
+
* * Redistributions in binary form must reproduce the above copyright
|
9
|
+
* notice, this list of conditions and the following disclaimer in the
|
10
|
+
* documentation and/or other materials provided with the distribution.
|
11
|
+
* * Neither the name of the WebSocket++ Project nor the
|
12
|
+
* names of its contributors may be used to endorse or promote products
|
13
|
+
* derived from this software without specific prior written permission.
|
14
|
+
*
|
15
|
+
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
16
|
+
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
17
|
+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
18
|
+
* ARE DISCLAIMED. IN NO EVENT SHALL PETER THORSON BE LIABLE FOR ANY
|
19
|
+
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
20
|
+
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
21
|
+
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
22
|
+
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
23
|
+
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
24
|
+
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
25
|
+
*
|
26
|
+
*/
|
27
|
+
|
28
|
+
#ifndef WEBSOCKETPP_TRANSPORT_DEBUG_HPP
|
29
|
+
#define WEBSOCKETPP_TRANSPORT_DEBUG_HPP
|
30
|
+
|
31
|
+
#include <websocketpp/common/memory.hpp>
|
32
|
+
#include <websocketpp/logger/levels.hpp>
|
33
|
+
|
34
|
+
#include <websocketpp/transport/base/endpoint.hpp>
|
35
|
+
#include <websocketpp/transport/debug/connection.hpp>
|
36
|
+
|
37
|
+
namespace websocketpp {
|
38
|
+
namespace transport {
|
39
|
+
namespace debug {
|
40
|
+
|
41
|
+
template <typename config>
|
42
|
+
class endpoint {
|
43
|
+
public:
|
44
|
+
/// Type of this endpoint transport component
|
45
|
+
typedef endpoint type;
|
46
|
+
/// Type of a pointer to this endpoint transport component
|
47
|
+
typedef lib::shared_ptr<type> ptr;
|
48
|
+
|
49
|
+
/// Type of this endpoint's concurrency policy
|
50
|
+
typedef typename config::concurrency_type concurrency_type;
|
51
|
+
/// Type of this endpoint's error logging policy
|
52
|
+
typedef typename config::elog_type elog_type;
|
53
|
+
/// Type of this endpoint's access logging policy
|
54
|
+
typedef typename config::alog_type alog_type;
|
55
|
+
|
56
|
+
/// Type of this endpoint transport component's associated connection
|
57
|
+
/// transport component.
|
58
|
+
typedef debug::connection<config> transport_con_type;
|
59
|
+
/// Type of a shared pointer to this endpoint transport component's
|
60
|
+
/// associated connection transport component
|
61
|
+
typedef typename transport_con_type::ptr transport_con_ptr;
|
62
|
+
|
63
|
+
// generate and manage our own io_service
|
64
|
+
explicit endpoint()
|
65
|
+
{
|
66
|
+
//std::cout << "transport::iostream::endpoint constructor" << std::endl;
|
67
|
+
}
|
68
|
+
|
69
|
+
/// Set whether or not endpoint can create secure connections
|
70
|
+
/**
|
71
|
+
* TODO: docs
|
72
|
+
*
|
73
|
+
* Setting this value only indicates whether or not the endpoint is capable
|
74
|
+
* of producing and managing secure connections. Connections produced by
|
75
|
+
* this endpoint must also be individually flagged as secure if they are.
|
76
|
+
*
|
77
|
+
* @since 0.3.0-alpha4
|
78
|
+
*
|
79
|
+
* @param value Whether or not the endpoint can create secure connections.
|
80
|
+
*/
|
81
|
+
void set_secure(bool) {}
|
82
|
+
|
83
|
+
/// Tests whether or not the underlying transport is secure
|
84
|
+
/**
|
85
|
+
* TODO: docs
|
86
|
+
*
|
87
|
+
* @return Whether or not the underlying transport is secure
|
88
|
+
*/
|
89
|
+
bool is_secure() const {
|
90
|
+
return false;
|
91
|
+
}
|
92
|
+
protected:
|
93
|
+
/// Initialize logging
|
94
|
+
/**
|
95
|
+
* The loggers are located in the main endpoint class. As such, the
|
96
|
+
* transport doesn't have direct access to them. This method is called
|
97
|
+
* by the endpoint constructor to allow shared logging from the transport
|
98
|
+
* component. These are raw pointers to member variables of the endpoint.
|
99
|
+
* In particular, they cannot be used in the transport constructor as they
|
100
|
+
* haven't been constructed yet, and cannot be used in the transport
|
101
|
+
* destructor as they will have been destroyed by then.
|
102
|
+
*
|
103
|
+
* @param a A pointer to the access logger to use.
|
104
|
+
* @param e A pointer to the error logger to use.
|
105
|
+
*/
|
106
|
+
void init_logging(alog_type *, elog_type *) {}
|
107
|
+
|
108
|
+
/// Initiate a new connection
|
109
|
+
/**
|
110
|
+
* @param tcon A pointer to the transport connection component of the
|
111
|
+
* connection to connect.
|
112
|
+
* @param u A URI pointer to the URI to connect to.
|
113
|
+
* @param cb The function to call back with the results when complete.
|
114
|
+
*/
|
115
|
+
void async_connect(transport_con_ptr, uri_ptr, connect_handler cb) {
|
116
|
+
cb(lib::error_code());
|
117
|
+
}
|
118
|
+
|
119
|
+
/// Initialize a connection
|
120
|
+
/**
|
121
|
+
* Init is called by an endpoint once for each newly created connection.
|
122
|
+
* It's purpose is to give the transport policy the chance to perform any
|
123
|
+
* transport specific initialization that couldn't be done via the default
|
124
|
+
* constructor.
|
125
|
+
*
|
126
|
+
* @param tcon A pointer to the transport portion of the connection.
|
127
|
+
* @return A status code indicating the success or failure of the operation
|
128
|
+
*/
|
129
|
+
lib::error_code init(transport_con_ptr) {
|
130
|
+
return lib::error_code();
|
131
|
+
}
|
132
|
+
private:
|
133
|
+
|
134
|
+
};
|
135
|
+
|
136
|
+
} // namespace debug
|
137
|
+
} // namespace transport
|
138
|
+
} // namespace websocketpp
|
139
|
+
|
140
|
+
#endif // WEBSOCKETPP_TRANSPORT_DEBUG_HPP
|
@@ -0,0 +1,133 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (c) 2014, Peter Thorson. All rights reserved.
|
3
|
+
*
|
4
|
+
* Redistribution and use in source and binary forms, with or without
|
5
|
+
* modification, are permitted provided that the following conditions are met:
|
6
|
+
* * Redistributions of source code must retain the above copyright
|
7
|
+
* notice, this list of conditions and the following disclaimer.
|
8
|
+
* * Redistributions in binary form must reproduce the above copyright
|
9
|
+
* notice, this list of conditions and the following disclaimer in the
|
10
|
+
* documentation and/or other materials provided with the distribution.
|
11
|
+
* * Neither the name of the WebSocket++ Project nor the
|
12
|
+
* names of its contributors may be used to endorse or promote products
|
13
|
+
* derived from this software without specific prior written permission.
|
14
|
+
*
|
15
|
+
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
16
|
+
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
17
|
+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
18
|
+
* ARE DISCLAIMED. IN NO EVENT SHALL PETER THORSON BE LIABLE FOR ANY
|
19
|
+
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
20
|
+
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
21
|
+
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
22
|
+
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
23
|
+
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
24
|
+
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
25
|
+
*
|
26
|
+
*/
|
27
|
+
|
28
|
+
#ifndef WEBSOCKETPP_TRANSPORT_IOSTREAM_BASE_HPP
|
29
|
+
#define WEBSOCKETPP_TRANSPORT_IOSTREAM_BASE_HPP
|
30
|
+
|
31
|
+
#include <websocketpp/common/system_error.hpp>
|
32
|
+
#include <websocketpp/common/cpp11.hpp>
|
33
|
+
#include <websocketpp/common/functional.hpp>
|
34
|
+
#include <websocketpp/common/connection_hdl.hpp>
|
35
|
+
|
36
|
+
#include <websocketpp/transport/base/connection.hpp>
|
37
|
+
|
38
|
+
#include <string>
|
39
|
+
#include <vector>
|
40
|
+
|
41
|
+
namespace websocketpp {
|
42
|
+
namespace transport {
|
43
|
+
/// Transport policy that uses STL iostream for I/O and does not support timers
|
44
|
+
namespace iostream {
|
45
|
+
|
46
|
+
/// The type and signature of the callback used by iostream transport to write
|
47
|
+
typedef lib::function<lib::error_code(connection_hdl, char const *, size_t)>
|
48
|
+
write_handler;
|
49
|
+
|
50
|
+
/// The type and signature of the callback used by iostream transport to perform
|
51
|
+
/// vectored writes.
|
52
|
+
/**
|
53
|
+
* If a vectored write handler is not set the standard write handler will be
|
54
|
+
* called multiple times.
|
55
|
+
*/
|
56
|
+
typedef lib::function<lib::error_code(connection_hdl, std::vector<transport::buffer> const
|
57
|
+
& bufs)> vector_write_handler;
|
58
|
+
|
59
|
+
/// The type and signature of the callback used by iostream transport to signal
|
60
|
+
/// a transport shutdown.
|
61
|
+
typedef lib::function<lib::error_code(connection_hdl)> shutdown_handler;
|
62
|
+
|
63
|
+
/// iostream transport errors
|
64
|
+
namespace error {
|
65
|
+
enum value {
|
66
|
+
/// Catch-all error for transport policy errors that don't fit in other
|
67
|
+
/// categories
|
68
|
+
general = 1,
|
69
|
+
|
70
|
+
/// async_read_at_least call requested more bytes than buffer can store
|
71
|
+
invalid_num_bytes,
|
72
|
+
|
73
|
+
/// async_read called while another async_read was in progress
|
74
|
+
double_read,
|
75
|
+
|
76
|
+
/// An operation that requires an output stream was attempted before
|
77
|
+
/// setting one.
|
78
|
+
output_stream_required,
|
79
|
+
|
80
|
+
/// stream error
|
81
|
+
bad_stream
|
82
|
+
};
|
83
|
+
|
84
|
+
/// iostream transport error category
|
85
|
+
class category : public lib::error_category {
|
86
|
+
public:
|
87
|
+
category() {}
|
88
|
+
|
89
|
+
char const * name() const _WEBSOCKETPP_NOEXCEPT_TOKEN_ {
|
90
|
+
return "websocketpp.transport.iostream";
|
91
|
+
}
|
92
|
+
|
93
|
+
std::string message(int value) const {
|
94
|
+
switch(value) {
|
95
|
+
case general:
|
96
|
+
return "Generic iostream transport policy error";
|
97
|
+
case invalid_num_bytes:
|
98
|
+
return "async_read_at_least call requested more bytes than buffer can store";
|
99
|
+
case double_read:
|
100
|
+
return "Async read already in progress";
|
101
|
+
case output_stream_required:
|
102
|
+
return "An output stream to be set before async_write can be used";
|
103
|
+
case bad_stream:
|
104
|
+
return "A stream operation returned ios::bad";
|
105
|
+
default:
|
106
|
+
return "Unknown";
|
107
|
+
}
|
108
|
+
}
|
109
|
+
};
|
110
|
+
|
111
|
+
/// Get a reference to a static copy of the iostream transport error category
|
112
|
+
inline lib::error_category const & get_category() {
|
113
|
+
static category instance;
|
114
|
+
return instance;
|
115
|
+
}
|
116
|
+
|
117
|
+
/// Get an error code with the given value and the iostream transport category
|
118
|
+
inline lib::error_code make_error_code(error::value e) {
|
119
|
+
return lib::error_code(static_cast<int>(e), get_category());
|
120
|
+
}
|
121
|
+
|
122
|
+
} // namespace error
|
123
|
+
} // namespace iostream
|
124
|
+
} // namespace transport
|
125
|
+
} // namespace websocketpp
|
126
|
+
_WEBSOCKETPP_ERROR_CODE_ENUM_NS_START_
|
127
|
+
template<> struct is_error_code_enum<websocketpp::transport::iostream::error::value>
|
128
|
+
{
|
129
|
+
static bool const value = true;
|
130
|
+
};
|
131
|
+
_WEBSOCKETPP_ERROR_CODE_ENUM_NS_END_
|
132
|
+
|
133
|
+
#endif // WEBSOCKETPP_TRANSPORT_IOSTREAM_BASE_HPP
|
@@ -0,0 +1,714 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (c) 2014, Peter Thorson. All rights reserved.
|
3
|
+
*
|
4
|
+
* Redistribution and use in source and binary forms, with or without
|
5
|
+
* modification, are permitted provided that the following conditions are met:
|
6
|
+
* * Redistributions of source code must retain the above copyright
|
7
|
+
* notice, this list of conditions and the following disclaimer.
|
8
|
+
* * Redistributions in binary form must reproduce the above copyright
|
9
|
+
* notice, this list of conditions and the following disclaimer in the
|
10
|
+
* documentation and/or other materials provided with the distribution.
|
11
|
+
* * Neither the name of the WebSocket++ Project nor the
|
12
|
+
* names of its contributors may be used to endorse or promote products
|
13
|
+
* derived from this software without specific prior written permission.
|
14
|
+
*
|
15
|
+
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
16
|
+
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
17
|
+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
18
|
+
* ARE DISCLAIMED. IN NO EVENT SHALL PETER THORSON BE LIABLE FOR ANY
|
19
|
+
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
20
|
+
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
21
|
+
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
22
|
+
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
23
|
+
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
24
|
+
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
25
|
+
*
|
26
|
+
*/
|
27
|
+
|
28
|
+
#ifndef WEBSOCKETPP_TRANSPORT_IOSTREAM_CON_HPP
|
29
|
+
#define WEBSOCKETPP_TRANSPORT_IOSTREAM_CON_HPP
|
30
|
+
|
31
|
+
#include <websocketpp/transport/iostream/base.hpp>
|
32
|
+
|
33
|
+
#include <websocketpp/transport/base/connection.hpp>
|
34
|
+
|
35
|
+
#include <websocketpp/uri.hpp>
|
36
|
+
|
37
|
+
#include <websocketpp/logger/levels.hpp>
|
38
|
+
|
39
|
+
#include <websocketpp/common/connection_hdl.hpp>
|
40
|
+
#include <websocketpp/common/memory.hpp>
|
41
|
+
#include <websocketpp/common/platforms.hpp>
|
42
|
+
|
43
|
+
#include <algorithm>
|
44
|
+
#include <iostream>
|
45
|
+
#include <sstream>
|
46
|
+
#include <string>
|
47
|
+
#include <vector>
|
48
|
+
|
49
|
+
namespace websocketpp {
|
50
|
+
namespace transport {
|
51
|
+
namespace iostream {
|
52
|
+
|
53
|
+
/// Empty timer class to stub out for timer functionality that iostream
|
54
|
+
/// transport doesn't support
|
55
|
+
struct timer {
|
56
|
+
void cancel() {}
|
57
|
+
};
|
58
|
+
|
59
|
+
template <typename config>
|
60
|
+
class connection : public lib::enable_shared_from_this< connection<config> > {
|
61
|
+
public:
|
62
|
+
/// Type of this connection transport component
|
63
|
+
typedef connection<config> type;
|
64
|
+
/// Type of a shared pointer to this connection transport component
|
65
|
+
typedef lib::shared_ptr<type> ptr;
|
66
|
+
|
67
|
+
/// transport concurrency policy
|
68
|
+
typedef typename config::concurrency_type concurrency_type;
|
69
|
+
/// Type of this transport's access logging policy
|
70
|
+
typedef typename config::alog_type alog_type;
|
71
|
+
/// Type of this transport's error logging policy
|
72
|
+
typedef typename config::elog_type elog_type;
|
73
|
+
|
74
|
+
// Concurrency policy types
|
75
|
+
typedef typename concurrency_type::scoped_lock_type scoped_lock_type;
|
76
|
+
typedef typename concurrency_type::mutex_type mutex_type;
|
77
|
+
|
78
|
+
typedef lib::shared_ptr<timer> timer_ptr;
|
79
|
+
|
80
|
+
explicit connection(bool is_server, alog_type & alog, elog_type & elog)
|
81
|
+
: m_output_stream(NULL)
|
82
|
+
, m_reading(false)
|
83
|
+
, m_is_server(is_server)
|
84
|
+
, m_is_secure(false)
|
85
|
+
, m_alog(alog)
|
86
|
+
, m_elog(elog)
|
87
|
+
, m_remote_endpoint("iostream transport")
|
88
|
+
{
|
89
|
+
m_alog.write(log::alevel::devel,"iostream con transport constructor");
|
90
|
+
}
|
91
|
+
|
92
|
+
/// Get a shared pointer to this component
|
93
|
+
ptr get_shared() {
|
94
|
+
return type::shared_from_this();
|
95
|
+
}
|
96
|
+
|
97
|
+
/// Register a std::ostream with the transport for writing output
|
98
|
+
/**
|
99
|
+
* Register a std::ostream with the transport. All future writes will be
|
100
|
+
* done to this output stream.
|
101
|
+
*
|
102
|
+
* @param o A pointer to the ostream to use for output.
|
103
|
+
*/
|
104
|
+
void register_ostream(std::ostream * o) {
|
105
|
+
// TODO: lock transport state?
|
106
|
+
scoped_lock_type lock(m_read_mutex);
|
107
|
+
m_output_stream = o;
|
108
|
+
}
|
109
|
+
|
110
|
+
/// Set uri hook
|
111
|
+
/**
|
112
|
+
* Called by the endpoint as a connection is being established to provide
|
113
|
+
* the uri being connected to to the transport layer.
|
114
|
+
*
|
115
|
+
* This transport policy doesn't use the uri so it is ignored.
|
116
|
+
*
|
117
|
+
* @since 0.6.0
|
118
|
+
*
|
119
|
+
* @param u The uri to set
|
120
|
+
*/
|
121
|
+
void set_uri(uri_ptr) {}
|
122
|
+
|
123
|
+
/// Overloaded stream input operator
|
124
|
+
/**
|
125
|
+
* Attempts to read input from the given stream into the transport. Bytes
|
126
|
+
* will be extracted from the input stream to fulfill any pending reads.
|
127
|
+
* Input in this manner will only read until the current read buffer has
|
128
|
+
* been filled. Then it will signal the library to process the input. If the
|
129
|
+
* library's input handler adds a new async_read, additional bytes will be
|
130
|
+
* read, otherwise the input operation will end.
|
131
|
+
*
|
132
|
+
* When this function returns one of the following conditions is true:
|
133
|
+
* - There is no outstanding read operation
|
134
|
+
* - There are no more bytes available in the input stream
|
135
|
+
*
|
136
|
+
* You can use tellg() on the input stream to determine if all of the input
|
137
|
+
* bytes were read or not.
|
138
|
+
*
|
139
|
+
* If there is no pending read operation when the input method is called, it
|
140
|
+
* will return immediately and tellg() will not have changed.
|
141
|
+
*/
|
142
|
+
friend std::istream & operator>> (std::istream & in, type & t) {
|
143
|
+
// this serializes calls to external read.
|
144
|
+
scoped_lock_type lock(t.m_read_mutex);
|
145
|
+
|
146
|
+
t.read(in);
|
147
|
+
|
148
|
+
return in;
|
149
|
+
}
|
150
|
+
|
151
|
+
/// Manual input supply (read some)
|
152
|
+
/**
|
153
|
+
* Copies bytes from buf into WebSocket++'s input buffers. Bytes will be
|
154
|
+
* copied from the supplied buffer to fulfill any pending library reads. It
|
155
|
+
* will return the number of bytes successfully processed. If there are no
|
156
|
+
* pending reads read_some will return immediately. Not all of the bytes may
|
157
|
+
* be able to be read in one call.
|
158
|
+
*
|
159
|
+
* @since 0.3.0-alpha4
|
160
|
+
*
|
161
|
+
* @param buf Char buffer to read into the websocket
|
162
|
+
* @param len Length of buf
|
163
|
+
* @return The number of characters from buf actually read.
|
164
|
+
*/
|
165
|
+
size_t read_some(char const * buf, size_t len) {
|
166
|
+
// this serializes calls to external read.
|
167
|
+
scoped_lock_type lock(m_read_mutex);
|
168
|
+
|
169
|
+
return this->read_some_impl(buf,len);
|
170
|
+
}
|
171
|
+
|
172
|
+
/// Manual input supply (read all)
|
173
|
+
/**
|
174
|
+
* Similar to read_some, but continues to read until all bytes in the
|
175
|
+
* supplied buffer have been read or the connection runs out of read
|
176
|
+
* requests.
|
177
|
+
*
|
178
|
+
* This method still may not read all of the bytes in the input buffer. if
|
179
|
+
* it doesn't it indicates that the connection was most likely closed or
|
180
|
+
* is in an error state where it is no longer accepting new input.
|
181
|
+
*
|
182
|
+
* @since 0.3.0
|
183
|
+
*
|
184
|
+
* @param buf Char buffer to read into the websocket
|
185
|
+
* @param len Length of buf
|
186
|
+
* @return The number of characters from buf actually read.
|
187
|
+
*/
|
188
|
+
size_t read_all(char const * buf, size_t len) {
|
189
|
+
// this serializes calls to external read.
|
190
|
+
scoped_lock_type lock(m_read_mutex);
|
191
|
+
|
192
|
+
size_t total_read = 0;
|
193
|
+
size_t temp_read = 0;
|
194
|
+
|
195
|
+
do {
|
196
|
+
temp_read = this->read_some_impl(buf+total_read,len-total_read);
|
197
|
+
total_read += temp_read;
|
198
|
+
} while (temp_read != 0 && total_read < len);
|
199
|
+
|
200
|
+
return total_read;
|
201
|
+
}
|
202
|
+
|
203
|
+
/// Manual input supply (DEPRECATED)
|
204
|
+
/**
|
205
|
+
* @deprecated DEPRECATED in favor of read_some()
|
206
|
+
* @see read_some()
|
207
|
+
*/
|
208
|
+
size_t readsome(char const * buf, size_t len) {
|
209
|
+
return this->read_some(buf,len);
|
210
|
+
}
|
211
|
+
|
212
|
+
/// Signal EOF
|
213
|
+
/**
|
214
|
+
* Signals to the transport that data stream being read has reached EOF and
|
215
|
+
* that no more bytes may be read or written to/from the transport.
|
216
|
+
*
|
217
|
+
* @since 0.3.0-alpha4
|
218
|
+
*/
|
219
|
+
void eof() {
|
220
|
+
// this serializes calls to external read.
|
221
|
+
scoped_lock_type lock(m_read_mutex);
|
222
|
+
|
223
|
+
if (m_reading) {
|
224
|
+
complete_read(make_error_code(transport::error::eof));
|
225
|
+
}
|
226
|
+
}
|
227
|
+
|
228
|
+
/// Signal transport error
|
229
|
+
/**
|
230
|
+
* Signals to the transport that a fatal data stream error has occurred and
|
231
|
+
* that no more bytes may be read or written to/from the transport.
|
232
|
+
*
|
233
|
+
* @since 0.3.0-alpha4
|
234
|
+
*/
|
235
|
+
void fatal_error() {
|
236
|
+
// this serializes calls to external read.
|
237
|
+
scoped_lock_type lock(m_read_mutex);
|
238
|
+
|
239
|
+
if (m_reading) {
|
240
|
+
complete_read(make_error_code(transport::error::pass_through));
|
241
|
+
}
|
242
|
+
}
|
243
|
+
|
244
|
+
/// Set whether or not this connection is secure
|
245
|
+
/**
|
246
|
+
* The iostream transport does not provide any security features. As such
|
247
|
+
* it defaults to returning false when `is_secure` is called. However, the
|
248
|
+
* iostream transport may be used to wrap an external socket API that may
|
249
|
+
* provide secure transport. This method allows that external API to flag
|
250
|
+
* whether or not this connection is secure so that users of the WebSocket++
|
251
|
+
* API will get more accurate information.
|
252
|
+
*
|
253
|
+
* @since 0.3.0-alpha4
|
254
|
+
*
|
255
|
+
* @param value Whether or not this connection is secure.
|
256
|
+
*/
|
257
|
+
void set_secure(bool value) {
|
258
|
+
m_is_secure = value;
|
259
|
+
}
|
260
|
+
|
261
|
+
/// Tests whether or not the underlying transport is secure
|
262
|
+
/**
|
263
|
+
* iostream transport will return false always because it has no information
|
264
|
+
* about the ultimate remote endpoint. This may or may not be accurate
|
265
|
+
* depending on the real source of bytes being input. The `set_secure`
|
266
|
+
* method may be used to flag connections that are secured by an external
|
267
|
+
* API
|
268
|
+
*
|
269
|
+
* @return Whether or not the underlying transport is secure
|
270
|
+
*/
|
271
|
+
bool is_secure() const {
|
272
|
+
return m_is_secure;
|
273
|
+
}
|
274
|
+
|
275
|
+
/// Set human readable remote endpoint address
|
276
|
+
/**
|
277
|
+
* Sets the remote endpoint address returned by `get_remote_endpoint`. This
|
278
|
+
* value should be a human readable string that describes the remote
|
279
|
+
* endpoint. Typically an IP address or hostname, perhaps with a port. But
|
280
|
+
* may be something else depending on the nature of the underlying
|
281
|
+
* transport.
|
282
|
+
*
|
283
|
+
* If none is set the default is "iostream transport".
|
284
|
+
*
|
285
|
+
* @since 0.3.0-alpha4
|
286
|
+
*
|
287
|
+
* @param value The remote endpoint address to set.
|
288
|
+
*/
|
289
|
+
void set_remote_endpoint(std::string value) {
|
290
|
+
m_remote_endpoint = value;
|
291
|
+
}
|
292
|
+
|
293
|
+
/// Get human readable remote endpoint address
|
294
|
+
/**
|
295
|
+
* The iostream transport has no information about the ultimate remote
|
296
|
+
* endpoint. It will return the string "iostream transport". The
|
297
|
+
* `set_remote_endpoint` method may be used by external network code to set
|
298
|
+
* a more accurate value.
|
299
|
+
*
|
300
|
+
* This value is used in access and error logs and is available to the end
|
301
|
+
* application for including in user facing interfaces and messages.
|
302
|
+
*
|
303
|
+
* @return A string identifying the address of the remote endpoint
|
304
|
+
*/
|
305
|
+
std::string get_remote_endpoint() const {
|
306
|
+
return m_remote_endpoint;
|
307
|
+
}
|
308
|
+
|
309
|
+
/// Get the connection handle
|
310
|
+
/**
|
311
|
+
* @return The handle for this connection.
|
312
|
+
*/
|
313
|
+
connection_hdl get_handle() const {
|
314
|
+
return m_connection_hdl;
|
315
|
+
}
|
316
|
+
|
317
|
+
/// Call back a function after a period of time.
|
318
|
+
/**
|
319
|
+
* Timers are not implemented in this transport. The timer pointer will
|
320
|
+
* always be empty. The handler will never be called.
|
321
|
+
*
|
322
|
+
* @param duration Length of time to wait in milliseconds
|
323
|
+
* @param callback The function to call back when the timer has expired
|
324
|
+
* @return A handle that can be used to cancel the timer if it is no longer
|
325
|
+
* needed.
|
326
|
+
*/
|
327
|
+
timer_ptr set_timer(long, timer_handler) {
|
328
|
+
return timer_ptr();
|
329
|
+
}
|
330
|
+
|
331
|
+
/// Sets the write handler
|
332
|
+
/**
|
333
|
+
* The write handler is called when the iostream transport receives data
|
334
|
+
* that needs to be written to the appropriate output location. This handler
|
335
|
+
* can be used in place of registering an ostream for output.
|
336
|
+
*
|
337
|
+
* The signature of the handler is
|
338
|
+
* `lib::error_code (connection_hdl, char const *, size_t)` The
|
339
|
+
* code returned will be reported and logged by the core library.
|
340
|
+
*
|
341
|
+
* See also, set_vector_write_handler, for an optional write handler that
|
342
|
+
* allows more efficient handling of multiple writes at once.
|
343
|
+
*
|
344
|
+
* @see set_vector_write_handler
|
345
|
+
*
|
346
|
+
* @since 0.5.0
|
347
|
+
*
|
348
|
+
* @param h The handler to call when data is to be written.
|
349
|
+
*/
|
350
|
+
void set_write_handler(write_handler h) {
|
351
|
+
m_write_handler = h;
|
352
|
+
}
|
353
|
+
|
354
|
+
/// Sets the vectored write handler
|
355
|
+
/**
|
356
|
+
* The vectored write handler is called when the iostream transport receives
|
357
|
+
* multiple chunks of data that need to be written to the appropriate output
|
358
|
+
* location. This handler can be used in conjunction with the write_handler
|
359
|
+
* in place of registering an ostream for output.
|
360
|
+
*
|
361
|
+
* The sequence of buffers represents bytes that should be written
|
362
|
+
* consecutively and it is suggested to group the buffers into as few next
|
363
|
+
* layer packets as possible. Vector write is used to allow implementations
|
364
|
+
* that support it to coalesce writes into a single TCP packet or TLS
|
365
|
+
* segment for improved efficiency.
|
366
|
+
*
|
367
|
+
* This is an optional handler. If it is not defined then multiple calls
|
368
|
+
* will be made to the standard write handler.
|
369
|
+
*
|
370
|
+
* The signature of the handler is
|
371
|
+
* `lib::error_code (connection_hdl, std::vector<websocketpp::transport::buffer>
|
372
|
+
* const & bufs)`. The code returned will be reported and logged by the core
|
373
|
+
* library. The `websocketpp::transport::buffer` type is a struct with two
|
374
|
+
* data members. buf (char const *) and len (size_t).
|
375
|
+
*
|
376
|
+
* @since 0.6.0
|
377
|
+
*
|
378
|
+
* @param h The handler to call when vectored data is to be written.
|
379
|
+
*/
|
380
|
+
void set_vector_write_handler(vector_write_handler h) {
|
381
|
+
m_vector_write_handler = h;
|
382
|
+
}
|
383
|
+
|
384
|
+
/// Sets the shutdown handler
|
385
|
+
/**
|
386
|
+
* The shutdown handler is called when the iostream transport receives a
|
387
|
+
* notification from the core library that it is finished with all read and
|
388
|
+
* write operations and that the underlying transport can be cleaned up.
|
389
|
+
*
|
390
|
+
* If you are using iostream transport with another socket library, this is
|
391
|
+
* a good time to close/shutdown the socket for this connection.
|
392
|
+
*
|
393
|
+
* The signature of the handler is `lib::error_code (connection_hdl)`. The
|
394
|
+
* code returned will be reported and logged by the core library.
|
395
|
+
*
|
396
|
+
* @since 0.5.0
|
397
|
+
*
|
398
|
+
* @param h The handler to call on connection shutdown.
|
399
|
+
*/
|
400
|
+
void set_shutdown_handler(shutdown_handler h) {
|
401
|
+
m_shutdown_handler = h;
|
402
|
+
}
|
403
|
+
protected:
|
404
|
+
/// Initialize the connection transport
|
405
|
+
/**
|
406
|
+
* Initialize the connection's transport component.
|
407
|
+
*
|
408
|
+
* @param handler The `init_handler` to call when initialization is done
|
409
|
+
*/
|
410
|
+
void init(init_handler handler) {
|
411
|
+
m_alog.write(log::alevel::devel,"iostream connection init");
|
412
|
+
handler(lib::error_code());
|
413
|
+
}
|
414
|
+
|
415
|
+
/// Initiate an async_read for at least num_bytes bytes into buf
|
416
|
+
/**
|
417
|
+
* Initiates an async_read request for at least num_bytes bytes. The input
|
418
|
+
* will be read into buf. A maximum of len bytes will be input. When the
|
419
|
+
* operation is complete, handler will be called with the status and number
|
420
|
+
* of bytes read.
|
421
|
+
*
|
422
|
+
* This method may or may not call handler from within the initial call. The
|
423
|
+
* application should be prepared to accept either.
|
424
|
+
*
|
425
|
+
* The application should never call this method a second time before it has
|
426
|
+
* been called back for the first read. If this is done, the second read
|
427
|
+
* will be called back immediately with a double_read error.
|
428
|
+
*
|
429
|
+
* If num_bytes or len are zero handler will be called back immediately
|
430
|
+
* indicating success.
|
431
|
+
*
|
432
|
+
* @param num_bytes Don't call handler until at least this many bytes have
|
433
|
+
* been read.
|
434
|
+
* @param buf The buffer to read bytes into
|
435
|
+
* @param len The size of buf. At maximum, this many bytes will be read.
|
436
|
+
* @param handler The callback to invoke when the operation is complete or
|
437
|
+
* ends in an error
|
438
|
+
*/
|
439
|
+
void async_read_at_least(size_t num_bytes, char *buf, size_t len,
|
440
|
+
read_handler handler)
|
441
|
+
{
|
442
|
+
std::stringstream s;
|
443
|
+
s << "iostream_con async_read_at_least: " << num_bytes;
|
444
|
+
m_alog.write(log::alevel::devel,s.str());
|
445
|
+
|
446
|
+
if (num_bytes > len) {
|
447
|
+
handler(make_error_code(error::invalid_num_bytes),size_t(0));
|
448
|
+
return;
|
449
|
+
}
|
450
|
+
|
451
|
+
if (m_reading == true) {
|
452
|
+
handler(make_error_code(error::double_read),size_t(0));
|
453
|
+
return;
|
454
|
+
}
|
455
|
+
|
456
|
+
if (num_bytes == 0 || len == 0) {
|
457
|
+
handler(lib::error_code(),size_t(0));
|
458
|
+
return;
|
459
|
+
}
|
460
|
+
|
461
|
+
m_buf = buf;
|
462
|
+
m_len = len;
|
463
|
+
m_bytes_needed = num_bytes;
|
464
|
+
m_read_handler = handler;
|
465
|
+
m_cursor = 0;
|
466
|
+
m_reading = true;
|
467
|
+
}
|
468
|
+
|
469
|
+
/// Asyncronous Transport Write
|
470
|
+
/**
|
471
|
+
* Write len bytes in buf to the output method. Call handler to report
|
472
|
+
* success or failure. handler may or may not be called during async_write,
|
473
|
+
* but it must be safe for this to happen.
|
474
|
+
*
|
475
|
+
* Will return 0 on success. Other possible errors (not exhaustive)
|
476
|
+
* output_stream_required: No output stream was registered to write to
|
477
|
+
* bad_stream: a ostream pass through error
|
478
|
+
*
|
479
|
+
* This method will attempt to write to the registered ostream first. If an
|
480
|
+
* ostream is not registered it will use the write handler. If neither are
|
481
|
+
* registered then an error is passed up to the connection.
|
482
|
+
*
|
483
|
+
* @param buf buffer to read bytes from
|
484
|
+
* @param len number of bytes to write
|
485
|
+
* @param handler Callback to invoke with operation status.
|
486
|
+
*/
|
487
|
+
void async_write(char const * buf, size_t len, transport::write_handler
|
488
|
+
handler)
|
489
|
+
{
|
490
|
+
m_alog.write(log::alevel::devel,"iostream_con async_write");
|
491
|
+
// TODO: lock transport state?
|
492
|
+
|
493
|
+
lib::error_code ec;
|
494
|
+
|
495
|
+
if (m_output_stream) {
|
496
|
+
m_output_stream->write(buf,len);
|
497
|
+
|
498
|
+
if (m_output_stream->bad()) {
|
499
|
+
ec = make_error_code(error::bad_stream);
|
500
|
+
}
|
501
|
+
} else if (m_write_handler) {
|
502
|
+
ec = m_write_handler(m_connection_hdl, buf, len);
|
503
|
+
} else {
|
504
|
+
ec = make_error_code(error::output_stream_required);
|
505
|
+
}
|
506
|
+
|
507
|
+
handler(ec);
|
508
|
+
}
|
509
|
+
|
510
|
+
/// Asyncronous Transport Write (scatter-gather)
|
511
|
+
/**
|
512
|
+
* Write a sequence of buffers to the output method. Call handler to report
|
513
|
+
* success or failure. handler may or may not be called during async_write,
|
514
|
+
* but it must be safe for this to happen.
|
515
|
+
*
|
516
|
+
* Will return 0 on success. Other possible errors (not exhaustive)
|
517
|
+
* output_stream_required: No output stream was registered to write to
|
518
|
+
* bad_stream: a ostream pass through error
|
519
|
+
*
|
520
|
+
* This method will attempt to write to the registered ostream first. If an
|
521
|
+
* ostream is not registered it will use the write handler. If neither are
|
522
|
+
* registered then an error is passed up to the connection.
|
523
|
+
*
|
524
|
+
* @param bufs vector of buffers to write
|
525
|
+
* @param handler Callback to invoke with operation status.
|
526
|
+
*/
|
527
|
+
void async_write(std::vector<buffer> const & bufs, transport::write_handler
|
528
|
+
handler)
|
529
|
+
{
|
530
|
+
m_alog.write(log::alevel::devel,"iostream_con async_write buffer list");
|
531
|
+
// TODO: lock transport state?
|
532
|
+
|
533
|
+
lib::error_code ec;
|
534
|
+
|
535
|
+
if (m_output_stream) {
|
536
|
+
std::vector<buffer>::const_iterator it;
|
537
|
+
for (it = bufs.begin(); it != bufs.end(); it++) {
|
538
|
+
m_output_stream->write((*it).buf,(*it).len);
|
539
|
+
|
540
|
+
if (m_output_stream->bad()) {
|
541
|
+
ec = make_error_code(error::bad_stream);
|
542
|
+
break;
|
543
|
+
}
|
544
|
+
}
|
545
|
+
} else if (m_vector_write_handler) {
|
546
|
+
ec = m_vector_write_handler(m_connection_hdl, bufs);
|
547
|
+
} else if (m_write_handler) {
|
548
|
+
std::vector<buffer>::const_iterator it;
|
549
|
+
for (it = bufs.begin(); it != bufs.end(); it++) {
|
550
|
+
ec = m_write_handler(m_connection_hdl, (*it).buf, (*it).len);
|
551
|
+
if (ec) {break;}
|
552
|
+
}
|
553
|
+
|
554
|
+
} else {
|
555
|
+
ec = make_error_code(error::output_stream_required);
|
556
|
+
}
|
557
|
+
|
558
|
+
handler(ec);
|
559
|
+
}
|
560
|
+
|
561
|
+
/// Set Connection Handle
|
562
|
+
/**
|
563
|
+
* @param hdl The new handle
|
564
|
+
*/
|
565
|
+
void set_handle(connection_hdl hdl) {
|
566
|
+
m_connection_hdl = hdl;
|
567
|
+
}
|
568
|
+
|
569
|
+
/// Call given handler back within the transport's event system (if present)
|
570
|
+
/**
|
571
|
+
* Invoke a callback within the transport's event system if it has one. If
|
572
|
+
* it doesn't, the handler will be invoked immediately before this function
|
573
|
+
* returns.
|
574
|
+
*
|
575
|
+
* @param handler The callback to invoke
|
576
|
+
*
|
577
|
+
* @return Whether or not the transport was able to register the handler for
|
578
|
+
* callback.
|
579
|
+
*/
|
580
|
+
lib::error_code dispatch(dispatch_handler handler) {
|
581
|
+
handler();
|
582
|
+
return lib::error_code();
|
583
|
+
}
|
584
|
+
|
585
|
+
/// Perform cleanup on socket shutdown_handler
|
586
|
+
/**
|
587
|
+
* If a shutdown handler is set, call it and pass through its return error
|
588
|
+
* code. Otherwise assume there is nothing to do and pass through a success
|
589
|
+
* code.
|
590
|
+
*
|
591
|
+
* @param handler The `shutdown_handler` to call back when complete
|
592
|
+
*/
|
593
|
+
void async_shutdown(transport::shutdown_handler handler) {
|
594
|
+
lib::error_code ec;
|
595
|
+
|
596
|
+
if (m_shutdown_handler) {
|
597
|
+
ec = m_shutdown_handler(m_connection_hdl);
|
598
|
+
}
|
599
|
+
|
600
|
+
handler(ec);
|
601
|
+
}
|
602
|
+
private:
|
603
|
+
void read(std::istream &in) {
|
604
|
+
m_alog.write(log::alevel::devel,"iostream_con read");
|
605
|
+
|
606
|
+
while (in.good()) {
|
607
|
+
if (!m_reading) {
|
608
|
+
m_elog.write(log::elevel::devel,"write while not reading");
|
609
|
+
break;
|
610
|
+
}
|
611
|
+
|
612
|
+
in.read(m_buf+m_cursor,static_cast<std::streamsize>(m_len-m_cursor));
|
613
|
+
|
614
|
+
if (in.gcount() == 0) {
|
615
|
+
m_elog.write(log::elevel::devel,"read zero bytes");
|
616
|
+
break;
|
617
|
+
}
|
618
|
+
|
619
|
+
m_cursor += static_cast<size_t>(in.gcount());
|
620
|
+
|
621
|
+
// TODO: error handling
|
622
|
+
if (in.bad()) {
|
623
|
+
m_reading = false;
|
624
|
+
complete_read(make_error_code(error::bad_stream));
|
625
|
+
}
|
626
|
+
|
627
|
+
if (m_cursor >= m_bytes_needed) {
|
628
|
+
m_reading = false;
|
629
|
+
complete_read(lib::error_code());
|
630
|
+
}
|
631
|
+
}
|
632
|
+
}
|
633
|
+
|
634
|
+
size_t read_some_impl(char const * buf, size_t len) {
|
635
|
+
m_alog.write(log::alevel::devel,"iostream_con read_some");
|
636
|
+
|
637
|
+
if (!m_reading) {
|
638
|
+
m_elog.write(log::elevel::devel,"write while not reading");
|
639
|
+
return 0;
|
640
|
+
}
|
641
|
+
|
642
|
+
size_t bytes_to_copy = (std::min)(len,m_len-m_cursor);
|
643
|
+
|
644
|
+
std::copy(buf,buf+bytes_to_copy,m_buf+m_cursor);
|
645
|
+
|
646
|
+
m_cursor += bytes_to_copy;
|
647
|
+
|
648
|
+
if (m_cursor >= m_bytes_needed) {
|
649
|
+
complete_read(lib::error_code());
|
650
|
+
}
|
651
|
+
|
652
|
+
return bytes_to_copy;
|
653
|
+
}
|
654
|
+
|
655
|
+
/// Signal that a requested read is complete
|
656
|
+
/**
|
657
|
+
* Sets the reading flag to false and returns the handler that should be
|
658
|
+
* called back with the result of the read. The cursor position that is sent
|
659
|
+
* is whatever the value of m_cursor is.
|
660
|
+
*
|
661
|
+
* It MUST NOT be called when m_reading is false.
|
662
|
+
* it MUST be called while holding the read lock
|
663
|
+
*
|
664
|
+
* It is important to use this method rather than directly setting/calling
|
665
|
+
* m_read_handler back because this function makes sure to delete the
|
666
|
+
* locally stored handler which contains shared pointers that will otherwise
|
667
|
+
* cause circular reference based memory leaks.
|
668
|
+
*
|
669
|
+
* @param ec The error code to forward to the read handler
|
670
|
+
*/
|
671
|
+
void complete_read(lib::error_code const & ec) {
|
672
|
+
m_reading = false;
|
673
|
+
|
674
|
+
read_handler handler = m_read_handler;
|
675
|
+
m_read_handler = read_handler();
|
676
|
+
|
677
|
+
handler(ec,m_cursor);
|
678
|
+
}
|
679
|
+
|
680
|
+
// Read space (Protected by m_read_mutex)
|
681
|
+
char * m_buf;
|
682
|
+
size_t m_len;
|
683
|
+
size_t m_bytes_needed;
|
684
|
+
read_handler m_read_handler;
|
685
|
+
size_t m_cursor;
|
686
|
+
|
687
|
+
// transport resources
|
688
|
+
std::ostream * m_output_stream;
|
689
|
+
connection_hdl m_connection_hdl;
|
690
|
+
write_handler m_write_handler;
|
691
|
+
vector_write_handler m_vector_write_handler;
|
692
|
+
shutdown_handler m_shutdown_handler;
|
693
|
+
|
694
|
+
bool m_reading;
|
695
|
+
bool const m_is_server;
|
696
|
+
bool m_is_secure;
|
697
|
+
alog_type & m_alog;
|
698
|
+
elog_type & m_elog;
|
699
|
+
std::string m_remote_endpoint;
|
700
|
+
|
701
|
+
// This lock ensures that only one thread can edit read data for this
|
702
|
+
// connection. This is a very coarse lock that is basically locked all the
|
703
|
+
// time. The nature of the connection is such that it cannot be
|
704
|
+
// parallelized, the locking is here to prevent intra-connection concurrency
|
705
|
+
// in order to allow inter-connection concurrency.
|
706
|
+
mutex_type m_read_mutex;
|
707
|
+
};
|
708
|
+
|
709
|
+
|
710
|
+
} // namespace iostream
|
711
|
+
} // namespace transport
|
712
|
+
} // namespace websocketpp
|
713
|
+
|
714
|
+
#endif // WEBSOCKETPP_TRANSPORT_IOSTREAM_CON_HPP
|