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,118 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
require_relative '../../src/ruby_supportlib/phusion_passenger/utils/json'
|
3
|
+
|
4
|
+
SimpleJSON = PhusionPassenger::Utils::JSON
|
5
|
+
|
6
|
+
FILES = Dir['src/**/*.{h,cpp}']
|
7
|
+
SCHEMAS = SimpleJSON.parse(File.read('dev/configkit-schemas/index.json'))
|
8
|
+
|
9
|
+
def main
|
10
|
+
FILES.each do |path|
|
11
|
+
update_file(path)
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
def update_file(path)
|
16
|
+
content = File.open(path, 'r:utf-8') do |f|
|
17
|
+
f.read
|
18
|
+
end
|
19
|
+
orig_content = content.dup
|
20
|
+
|
21
|
+
pos = 0
|
22
|
+
|
23
|
+
while match_begin = /^(.*?)BEGIN ConfigKit schema: (.+)/.match(content, pos)
|
24
|
+
if match_end = /END/.match(content, match_begin.end(0))
|
25
|
+
prefix = match_begin.captures[0]
|
26
|
+
class_name = match_begin.captures[1]
|
27
|
+
replacement = format_inline_comment_for_schema(prefix, class_name)
|
28
|
+
|
29
|
+
content[match_begin.begin(0) .. match_end.end(0) - 1] = replacement
|
30
|
+
pos = match_begin.begin(0) + replacement.size
|
31
|
+
else
|
32
|
+
break
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
if content != orig_content
|
37
|
+
puts "Updating #{path}"
|
38
|
+
File.open(path, 'w:utf-8') do |f|
|
39
|
+
f.write(content)
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
43
|
+
|
44
|
+
def format_inline_comment_for_schema(prefix, class_name)
|
45
|
+
lines = [
|
46
|
+
"BEGIN ConfigKit schema: #{class_name}",
|
47
|
+
"(do not edit: following text is automatically generated",
|
48
|
+
"by 'rake configkit_schemas_inline_comments')",
|
49
|
+
""
|
50
|
+
]
|
51
|
+
|
52
|
+
if schema = SCHEMAS[class_name]
|
53
|
+
table = []
|
54
|
+
schema.each_pair do |key, info|
|
55
|
+
table << [
|
56
|
+
key,
|
57
|
+
info['type'],
|
58
|
+
info['required'] ? 'required' : '-',
|
59
|
+
format_option_names(info)
|
60
|
+
]
|
61
|
+
end
|
62
|
+
|
63
|
+
column_lengths = find_max_column_lengths(table)
|
64
|
+
table.each do |row|
|
65
|
+
fmt = " %-#{column_lengths[0]}s %-#{column_lengths[1]}s %-#{column_lengths[2]}s %-#{column_lengths[3]}s"
|
66
|
+
lines << sprintf(fmt, *row)
|
67
|
+
end
|
68
|
+
else
|
69
|
+
lines << "(unknown: #{class_name} not in dev/configkit-schemas/index.json"
|
70
|
+
lines << " Please run:"
|
71
|
+
lines << " touch src/schema_printer/SchemaPrinterMain.cpp.cxxcodebuilder"
|
72
|
+
lines << " rake configkit_schemas_inline_comments"
|
73
|
+
lines << ")"
|
74
|
+
end
|
75
|
+
|
76
|
+
lines << ""
|
77
|
+
lines << "END"
|
78
|
+
lines.map{ |x| "#{prefix}#{x}".rstrip }.join("\n")
|
79
|
+
end
|
80
|
+
|
81
|
+
def format_option_names(schema_entry)
|
82
|
+
options = []
|
83
|
+
if schema_entry['has_default_value']
|
84
|
+
if schema_entry['has_default_value'] == 'static'
|
85
|
+
desc = format_default_value_desc(schema_entry['default_value'])
|
86
|
+
options << "default(#{desc})"
|
87
|
+
else
|
88
|
+
options << 'default'
|
89
|
+
end
|
90
|
+
end
|
91
|
+
options << 'secret' if schema_entry['secret']
|
92
|
+
options << 'read_only' if schema_entry['read_only']
|
93
|
+
result = options.join(',')
|
94
|
+
result = '-' if result.empty?
|
95
|
+
result
|
96
|
+
end
|
97
|
+
|
98
|
+
def format_default_value_desc(value)
|
99
|
+
if value.is_a?(Array) || value.is_a?(Hash)
|
100
|
+
SimpleJSON.generate(value)
|
101
|
+
else
|
102
|
+
SimpleJSON.generate([value]).sub(/\A\[/, '').sub(/\]\Z/, '')
|
103
|
+
end
|
104
|
+
end
|
105
|
+
|
106
|
+
def find_max_column_lengths(table)
|
107
|
+
lengths = []
|
108
|
+
table.each do |row|
|
109
|
+
row.each_with_index do |col, i|
|
110
|
+
if lengths[i].nil? || lengths[i] < col.size
|
111
|
+
lengths[i] = col.size
|
112
|
+
end
|
113
|
+
end
|
114
|
+
end
|
115
|
+
lengths
|
116
|
+
end
|
117
|
+
|
118
|
+
main
|
data/dev/copy_boost_headers
CHANGED
@@ -42,12 +42,19 @@ ESSENTIALS = [
|
|
42
42
|
"boost/core",
|
43
43
|
"boost/bind",
|
44
44
|
"boost/function",
|
45
|
+
"boost/ratio*",
|
46
|
+
"boost/integer*",
|
47
|
+
"boost/chrono*",
|
48
|
+
"boost/random*",
|
49
|
+
"boost/asio*",
|
45
50
|
"boost/optional.hpp",
|
46
51
|
"boost/optional",
|
47
52
|
"boost/utility",
|
48
53
|
"libs/thread/src",
|
49
54
|
"libs/system/src",
|
50
55
|
"libs/regex/src",
|
56
|
+
"libs/chrono/src",
|
57
|
+
"libs/random/src",
|
51
58
|
"boost/preprocessor",
|
52
59
|
"boost/parameter",
|
53
60
|
"boost/date_time/gregorian/formatters_limited.hpp",
|
@@ -74,7 +81,9 @@ EXCLUDE = [
|
|
74
81
|
"libs/regex/src/icu.cpp",
|
75
82
|
"libs/regex/src/usinstances.cpp",
|
76
83
|
"boost/atomic/detail/windows.hpp",
|
77
|
-
"boost/regex/icu.hpp"
|
84
|
+
"boost/regex/icu.hpp",
|
85
|
+
"boost/asio/detail/win*",
|
86
|
+
"boost/asio/detail/impl/win*"
|
78
87
|
]
|
79
88
|
PROGRAM_SOURCE = %q{
|
80
89
|
#include <boost/shared_ptr.hpp>
|
@@ -99,6 +108,8 @@ PROGRAM_SOURCE = %q{
|
|
99
108
|
#include <boost/move/utility.hpp>
|
100
109
|
#include <boost/atomic.hpp>
|
101
110
|
#include <boost/typeof/typeof.hpp>
|
111
|
+
#include <boost/asio.hpp>
|
112
|
+
#include <boost/pointer_cast.hpp>
|
102
113
|
}
|
103
114
|
|
104
115
|
require 'fileutils'
|
@@ -168,6 +179,7 @@ def cleanup
|
|
168
179
|
FileUtils.rm_rf("boost/smart_ptr/detail/sp_counted_base_w32.hpp")
|
169
180
|
FileUtils.rm_rf("boost/smart_ptr/detail/atomic_count_win32.hpp")
|
170
181
|
FileUtils.rm_rf("boost/config/platform/win32.hpp")
|
182
|
+
FileUtils.rm_rf("boost/chrono/detail/inlined/win")
|
171
183
|
File.unlink("test.cpp") rescue nil
|
172
184
|
end
|
173
185
|
|
@@ -6,6 +6,7 @@ SEARCH_PATHS = [
|
|
6
6
|
"src/agent",
|
7
7
|
"src/cxx_supportlib",
|
8
8
|
"src/cxx_supportlib/vendor-copy",
|
9
|
+
"src/cxx_supportlib/vendor-copy/websocketpp",
|
9
10
|
"src/cxx_supportlib/vendor-modified",
|
10
11
|
"test/cxx"
|
11
12
|
]
|
@@ -153,6 +154,8 @@ def extract_dependencies(source)
|
|
153
154
|
end
|
154
155
|
end
|
155
156
|
end
|
157
|
+
result.sort!
|
158
|
+
result.uniq!
|
156
159
|
result
|
157
160
|
end
|
158
161
|
|
@@ -164,7 +167,9 @@ def search_include_file(name, first_search_path = nil)
|
|
164
167
|
end
|
165
168
|
search_paths.each do |path|
|
166
169
|
if File.exist?("#{path}/#{name}")
|
167
|
-
|
170
|
+
result = File.expand_path("#{path}/#{name}")
|
171
|
+
result.sub!(/\A#{Regexp.escape(Dir.pwd)}\//, '')
|
172
|
+
return result
|
168
173
|
end
|
169
174
|
end
|
170
175
|
nil
|
@@ -186,19 +191,27 @@ def gather_all_dependencies_recursively(source_file, basic_map, result)
|
|
186
191
|
deps = basic_map[source_file]
|
187
192
|
if deps
|
188
193
|
deps.each do |dep|
|
189
|
-
result[dep]
|
190
|
-
|
194
|
+
if !result[dep]
|
195
|
+
result[dep] = true
|
196
|
+
gather_all_dependencies_recursively(dep, basic_map, result)
|
197
|
+
end
|
191
198
|
end
|
192
199
|
end
|
193
200
|
end
|
194
201
|
|
202
|
+
def generate_full_map_for(source_file, basic_map)
|
203
|
+
gather_results = {}
|
204
|
+
gather_all_dependencies_recursively(
|
205
|
+
source_file, basic_map, gather_results)
|
206
|
+
result = gather_results.keys
|
207
|
+
result.sort!
|
208
|
+
result
|
209
|
+
end
|
210
|
+
|
195
211
|
def generate_full_map(basic_map)
|
196
212
|
result = {}
|
197
213
|
basic_map.keys.sort.each do |source_file|
|
198
|
-
|
199
|
-
gather_all_dependencies_recursively(
|
200
|
-
source_file, basic_map, gather_results)
|
201
|
-
result[source_file] = gather_results.keys.sort
|
214
|
+
result[source_file] = generate_full_map_for(source_file, basic_map)
|
202
215
|
end
|
203
216
|
result
|
204
217
|
end
|
data/dev/vagrant/provision.sh
CHANGED
data/resources/mime.types
CHANGED
@@ -3,7 +3,7 @@ include '<%= PhusionPassenger.resources_dir %>/mime.types';
|
|
3
3
|
|
4
4
|
passenger_root '<%= PhusionPassenger.install_spec %>';
|
5
5
|
passenger_abort_on_startup_error on;
|
6
|
-
passenger_ctl
|
6
|
+
passenger_ctl pidfiles_to_delete_on_exit '["<%= "#{@working_dir}/temp_dir_toucher.pid" %>"]';
|
7
7
|
passenger_ctl integration_mode standalone;
|
8
8
|
passenger_ctl standalone_engine nginx;
|
9
9
|
passenger_user_switching off;
|
@@ -17,11 +17,9 @@ passenger_user_switching off;
|
|
17
17
|
<% if @options[:user] %>
|
18
18
|
passenger_user <%= @options[:user] %>;
|
19
19
|
passenger_default_user <%= @options[:user] %>;
|
20
|
-
passenger_analytics_log_user <%= @options[:user] %>;
|
21
20
|
<% else %>
|
22
21
|
passenger_user <%= current_user %>;
|
23
22
|
passenger_default_user <%= current_user %>;
|
24
|
-
passenger_analytics_log_user <%= current_user %>;
|
25
23
|
<% end %>
|
26
24
|
<% end %>
|
27
25
|
|
@@ -38,9 +36,6 @@ passenger_user_switching off;
|
|
38
36
|
<%= nginx_http_option(:security_update_check_proxy) %>
|
39
37
|
<%= nginx_http_option(:data_buffer_dir) %>
|
40
38
|
<%= nginx_http_option(:core_file_descriptor_ulimit) %>
|
41
|
-
<%= nginx_http_option(:union_station_gateway_address) %>
|
42
|
-
<%= nginx_http_option(:union_station_gateway_port) %>
|
43
|
-
<%= nginx_http_option(:union_station_gateway_cert) %>
|
44
39
|
<% @options[:ctls].each do |ctl| %>
|
45
40
|
passenger_ctl '<%= ctl.split("=", 2)[0] %>' '<%= ctl.split("=", 2)[1] %>';
|
46
41
|
<% end %>
|
@@ -0,0 +1,550 @@
|
|
1
|
+
/*
|
2
|
+
* Phusion Passenger - https://www.phusionpassenger.com/
|
3
|
+
* Copyright (c) 2017 Phusion Holding B.V.
|
4
|
+
*
|
5
|
+
* "Passenger", "Phusion Passenger" and "Union Station" are registered
|
6
|
+
* trademarks of Phusion Holding B.V.
|
7
|
+
*
|
8
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
9
|
+
* of this software and associated documentation files (the "Software"), to deal
|
10
|
+
* in the Software without restriction, including without limitation the rights
|
11
|
+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
12
|
+
* copies of the Software, and to permit persons to whom the Software is
|
13
|
+
* furnished to do so, subject to the following conditions:
|
14
|
+
*
|
15
|
+
* The above copyright notice and this permission notice shall be included in
|
16
|
+
* all copies or substantial portions of the Software.
|
17
|
+
*
|
18
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
19
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
20
|
+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
21
|
+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
22
|
+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
23
|
+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
24
|
+
* THE SOFTWARE.
|
25
|
+
*/
|
26
|
+
#ifndef _PASSENGER_ADMIN_PANEL_CONNECTOR_H_
|
27
|
+
#define _PASSENGER_ADMIN_PANEL_CONNECTOR_H_
|
28
|
+
|
29
|
+
#include <sys/wait.h>
|
30
|
+
|
31
|
+
#include <boost/scoped_ptr.hpp>
|
32
|
+
#include <boost/thread.hpp>
|
33
|
+
#include <boost/bind.hpp>
|
34
|
+
|
35
|
+
#include <Constants.h>
|
36
|
+
#include <WebSocketCommandReverseServer.h>
|
37
|
+
#include <InstanceDirectory.h>
|
38
|
+
#include <ConfigKit/SchemaUtils.h>
|
39
|
+
#include <Core/ApplicationPool/Pool.h>
|
40
|
+
#include <ProcessManagement/Ruby.h>
|
41
|
+
#include <Utils/StrIntUtils.h>
|
42
|
+
#include <Utils/IOUtils.h>
|
43
|
+
|
44
|
+
#include <jsoncpp/json.h>
|
45
|
+
|
46
|
+
namespace Passenger {
|
47
|
+
namespace Core {
|
48
|
+
|
49
|
+
using namespace std;
|
50
|
+
using namespace oxt;
|
51
|
+
|
52
|
+
class AdminPanelConnector {
|
53
|
+
public:
|
54
|
+
/**
|
55
|
+
* BEGIN ConfigKit schema: Passenger::Core::AdminPanelConnector::Schema
|
56
|
+
* (do not edit: following text is automatically generated
|
57
|
+
* by 'rake configkit_schemas_inline_comments')
|
58
|
+
*
|
59
|
+
* authentication object - secret
|
60
|
+
* close_timeout float - default(10.0)
|
61
|
+
* connect_timeout float - default(30.0)
|
62
|
+
* data_debug boolean - default(false)
|
63
|
+
* instance_dir string - read_only
|
64
|
+
* integration_mode string - default("standalone")
|
65
|
+
* log_prefix string - -
|
66
|
+
* ping_interval float - default(30.0)
|
67
|
+
* ping_timeout float - default(30.0)
|
68
|
+
* proxy_password string - secret
|
69
|
+
* proxy_timeout float - default(30.0)
|
70
|
+
* proxy_url string - -
|
71
|
+
* proxy_username string - -
|
72
|
+
* reconnect_timeout float - default(5.0)
|
73
|
+
* ruby string - default("ruby")
|
74
|
+
* standalone_engine string - default
|
75
|
+
* url string required -
|
76
|
+
* web_server_module_version string - read_only
|
77
|
+
* web_server_version string - read_only
|
78
|
+
* websocketpp_debug_access boolean - default(false)
|
79
|
+
* websocketpp_debug_error boolean - default(false)
|
80
|
+
*
|
81
|
+
* END
|
82
|
+
*/
|
83
|
+
struct Schema: public WebSocketCommandReverseServer::Schema {
|
84
|
+
Schema()
|
85
|
+
: WebSocketCommandReverseServer::Schema(false)
|
86
|
+
{
|
87
|
+
using namespace ConfigKit;
|
88
|
+
|
89
|
+
add("integration_mode", STRING_TYPE, OPTIONAL, DEFAULT_INTEGRATION_MODE);
|
90
|
+
addWithDynamicDefault("standalone_engine", STRING_TYPE, OPTIONAL,
|
91
|
+
ConfigKit::getDefaultStandaloneEngine);
|
92
|
+
add("instance_dir", STRING_TYPE, OPTIONAL | READ_ONLY);
|
93
|
+
add("web_server_version", STRING_TYPE, OPTIONAL | READ_ONLY);
|
94
|
+
add("web_server_module_version", STRING_TYPE, OPTIONAL | READ_ONLY);
|
95
|
+
add("ruby", STRING_TYPE, OPTIONAL, "ruby");
|
96
|
+
|
97
|
+
addValidator(ConfigKit::validateIntegrationMode);
|
98
|
+
addValidator(ConfigKit::validateStandaloneEngine);
|
99
|
+
|
100
|
+
finalize();
|
101
|
+
}
|
102
|
+
};
|
103
|
+
|
104
|
+
typedef WebSocketCommandReverseServer::ConfigChangeRequest ConfigChangeRequest;
|
105
|
+
|
106
|
+
typedef WebSocketCommandReverseServer::ConnectionPtr ConnectionPtr;
|
107
|
+
typedef WebSocketCommandReverseServer::MessagePtr MessagePtr;
|
108
|
+
typedef boost::function<Json::Value (void)> ConfigGetter;
|
109
|
+
|
110
|
+
private:
|
111
|
+
WebSocketCommandReverseServer server;
|
112
|
+
dynamic_thread_group threads;
|
113
|
+
Json::Value globalPropertiesFromInstanceDir;
|
114
|
+
|
115
|
+
bool onMessage(WebSocketCommandReverseServer *server,
|
116
|
+
const ConnectionPtr &conn, const MessagePtr &msg)
|
117
|
+
{
|
118
|
+
Json::Value doc;
|
119
|
+
|
120
|
+
try {
|
121
|
+
doc = parseAndBasicValidateMessageAsJSON(msg->get_payload());
|
122
|
+
} catch (const RuntimeException &e) {
|
123
|
+
Json::Value reply;
|
124
|
+
reply["result"] = "error";
|
125
|
+
reply["request_id"] = doc["request_id"];
|
126
|
+
reply["data"]["message"] = e.what();
|
127
|
+
sendJsonReply(conn, reply);
|
128
|
+
return true;
|
129
|
+
}
|
130
|
+
|
131
|
+
if (doc["action"] == "get") {
|
132
|
+
return onGetMessage(conn, doc);
|
133
|
+
} else {
|
134
|
+
return onUnknownMessageAction(conn, doc);
|
135
|
+
}
|
136
|
+
}
|
137
|
+
|
138
|
+
|
139
|
+
bool onGetMessage(const ConnectionPtr &conn, const Json::Value &doc) {
|
140
|
+
const string resource = doc["resource"].asString();
|
141
|
+
|
142
|
+
if (resource == "server_properties") {
|
143
|
+
return onGetServerProperties(conn, doc);
|
144
|
+
} else if (resource == "global_properties") {
|
145
|
+
return onGetGlobalProperties(conn, doc);
|
146
|
+
} else if (resource == "global_configuration") {
|
147
|
+
return onGetGlobalConfiguration(conn, doc);
|
148
|
+
} else if (resource == "global_statistics") {
|
149
|
+
return onGetGlobalStatistics(conn, doc);
|
150
|
+
} else if (resource == "application_properties") {
|
151
|
+
return onGetApplicationProperties(conn, doc);
|
152
|
+
} else if (resource == "application_configuration") {
|
153
|
+
return onGetApplicationConfig(conn, doc);
|
154
|
+
} else {
|
155
|
+
return onUnknownResource(conn, doc);
|
156
|
+
}
|
157
|
+
}
|
158
|
+
|
159
|
+
bool onGetServerProperties(const ConnectionPtr &conn, const Json::Value &doc) {
|
160
|
+
threads.create_thread(
|
161
|
+
boost::bind(&AdminPanelConnector::onGetServerPropertiesBgJob, this,
|
162
|
+
conn, doc, server.getConfig()["ruby"].asString()),
|
163
|
+
"AdminPanelCommandServer: get_server_properties background job",
|
164
|
+
128 * 1024);
|
165
|
+
return false;
|
166
|
+
}
|
167
|
+
|
168
|
+
void onGetServerPropertiesBgJob(const ConnectionPtr &conn, const Json::Value &doc,
|
169
|
+
const string &ruby)
|
170
|
+
{
|
171
|
+
vector<string> args;
|
172
|
+
args.push_back("passenger-config");
|
173
|
+
args.push_back("system-properties");
|
174
|
+
|
175
|
+
int status = 0;
|
176
|
+
string output;
|
177
|
+
try {
|
178
|
+
runInternalRubyTool(*resourceLocator, ruby, args, &status, &output);
|
179
|
+
} catch (const std::exception &e) {
|
180
|
+
server.getIoService().post(boost::bind(
|
181
|
+
&AdminPanelConnector::onGetServerPropertiesDone, this,
|
182
|
+
conn, doc, string(), -1, e.what()
|
183
|
+
));
|
184
|
+
return;
|
185
|
+
}
|
186
|
+
|
187
|
+
server.getIoService().post(boost::bind(
|
188
|
+
&AdminPanelConnector::onGetServerPropertiesDone, this,
|
189
|
+
conn, doc, output, status, string()
|
190
|
+
));
|
191
|
+
}
|
192
|
+
|
193
|
+
void onGetServerPropertiesDone(const ConnectionPtr &conn, const Json::Value &doc,
|
194
|
+
const string output, int status, const string &error)
|
195
|
+
{
|
196
|
+
Json::Value reply;
|
197
|
+
reply["request_id"] = doc["request_id"];
|
198
|
+
if (error.empty()) {
|
199
|
+
if (status == 0 || status == -1) {
|
200
|
+
Json::Reader reader;
|
201
|
+
Json::Value dataDoc;
|
202
|
+
|
203
|
+
if (output.empty()) {
|
204
|
+
reply["result"] = "error";
|
205
|
+
reply["data"]["message"] = "Error parsing internal helper tool output";
|
206
|
+
P_ERROR(getLogPrefix() << "Error parsing internal helper tool output.\n" <<
|
207
|
+
"Raw data: \"\"");
|
208
|
+
} else if (reader.parse(output, dataDoc)) {
|
209
|
+
reply["result"] = "ok";
|
210
|
+
reply["data"] = dataDoc;
|
211
|
+
} else {
|
212
|
+
reply["result"] = "error";
|
213
|
+
reply["data"]["message"] = "Error parsing internal helper tool output";
|
214
|
+
P_ERROR(getLogPrefix() << "Error parsing internal helper tool output.\n" <<
|
215
|
+
"Error: " << reader.getFormattedErrorMessages() << "\n"
|
216
|
+
"Raw data: \"" << cEscapeString(output) << "\"");
|
217
|
+
}
|
218
|
+
} else {
|
219
|
+
int exitStatus = WEXITSTATUS(status);
|
220
|
+
reply["result"] = "error";
|
221
|
+
reply["data"]["message"] = "Internal helper tool exited with status "
|
222
|
+
+ toString(exitStatus);
|
223
|
+
P_ERROR(getLogPrefix() << "Internal helper tool exited with status "
|
224
|
+
<< exitStatus << ". Raw output: \"" << cEscapeString(output) << "\"");
|
225
|
+
}
|
226
|
+
} else {
|
227
|
+
reply["result"] = "error";
|
228
|
+
reply["data"]["message"] = error;
|
229
|
+
}
|
230
|
+
sendJsonReply(conn, reply);
|
231
|
+
server.doneReplying(conn);
|
232
|
+
}
|
233
|
+
|
234
|
+
bool onGetGlobalProperties(const ConnectionPtr &conn, const Json::Value &doc) {
|
235
|
+
const ConfigKit::Store &config = server.getConfig();
|
236
|
+
Json::Value reply, data;
|
237
|
+
reply["result"] = "ok";
|
238
|
+
reply["request_id"] = doc["request_id"];
|
239
|
+
|
240
|
+
data = globalPropertiesFromInstanceDir;
|
241
|
+
data["version"] = PASSENGER_VERSION;
|
242
|
+
data["core_pid"] = Json::UInt(getpid());
|
243
|
+
|
244
|
+
string integrationMode = config["integration_mode"].asString();
|
245
|
+
data["integration_mode"]["name"] = integrationMode;
|
246
|
+
if (!config["web_server_module_version"].isNull()) {
|
247
|
+
data["integration_mode"]["web_server_module_version"] = config["web_server_module_version"];
|
248
|
+
}
|
249
|
+
if (integrationMode == "standalone") {
|
250
|
+
data["integration_mode"]["standalone_engine"] = config["standalone_engine"];
|
251
|
+
}
|
252
|
+
if (!config["web_server_version"].isNull()) {
|
253
|
+
data["integration_mode"]["web_server_version"] = config["web_server_version"];
|
254
|
+
}
|
255
|
+
|
256
|
+
data["originally_packaged"] = resourceLocator->isOriginallyPackaged();
|
257
|
+
if (!resourceLocator->isOriginallyPackaged()) {
|
258
|
+
data["packaging_method"] = resourceLocator->getPackagingMethod();
|
259
|
+
}
|
260
|
+
|
261
|
+
reply["data"] = data;
|
262
|
+
sendJsonReply(conn, reply);
|
263
|
+
return true;
|
264
|
+
}
|
265
|
+
|
266
|
+
bool onGetGlobalConfiguration(const ConnectionPtr &conn, const Json::Value &doc) {
|
267
|
+
threads.create_thread(
|
268
|
+
boost::bind(&AdminPanelConnector::onGetGlobalConfigurationBgJob, this,
|
269
|
+
conn, doc),
|
270
|
+
"AdminPanelCommandServer: get_global_config background job",
|
271
|
+
128 * 1024);
|
272
|
+
return false;
|
273
|
+
}
|
274
|
+
|
275
|
+
void onGetGlobalConfigurationBgJob(const ConnectionPtr &conn, const Json::Value &input) {
|
276
|
+
Json::Value globalConfig = configGetter()["config_manifest"]["effective_value"]["global_configuration"];
|
277
|
+
server.getIoService().post(boost::bind(
|
278
|
+
&AdminPanelConnector::onGetGlobalConfigDone, this,
|
279
|
+
conn, input, globalConfig
|
280
|
+
));
|
281
|
+
}
|
282
|
+
|
283
|
+
void onGetGlobalConfigDone(const ConnectionPtr &conn, const Json::Value &input,
|
284
|
+
Json::Value config)
|
285
|
+
{
|
286
|
+
Json::Value reply;
|
287
|
+
|
288
|
+
reply["result"] = "ok";
|
289
|
+
reply["request_id"] = input["request_id"];
|
290
|
+
reply["data"]["options"] = config;
|
291
|
+
|
292
|
+
sendJsonReply(conn, reply);
|
293
|
+
server.doneReplying(conn);
|
294
|
+
}
|
295
|
+
|
296
|
+
bool onGetGlobalStatistics(const ConnectionPtr &conn, const Json::Value &doc) {
|
297
|
+
Json::Value reply;
|
298
|
+
reply["result"] = "error";
|
299
|
+
reply["request_id"] = doc["request_id"];
|
300
|
+
reply["data"]["message"] = "Action not implemented";
|
301
|
+
sendJsonReply(conn, reply);
|
302
|
+
return true;
|
303
|
+
}
|
304
|
+
|
305
|
+
bool onGetApplicationProperties(const ConnectionPtr &conn, const Json::Value &doc) {
|
306
|
+
ConfigKit::Schema argumentsSchema =
|
307
|
+
ApplicationPool2::Pool::ToJsonOptions::createSchema();
|
308
|
+
Json::Value args(Json::objectValue), reply;
|
309
|
+
ApplicationPool2::Pool::ToJsonOptions inspectOptions =
|
310
|
+
ApplicationPool2::Pool::ToJsonOptions::makeAuthorized();
|
311
|
+
|
312
|
+
if (doc.isMember("arguments")) {
|
313
|
+
ConfigKit::Store store(argumentsSchema);
|
314
|
+
vector<ConfigKit::Error> errors;
|
315
|
+
|
316
|
+
if (store.update(doc["arguments"], errors)) {
|
317
|
+
inspectOptions.set(store.inspectEffectiveValues());
|
318
|
+
} else {
|
319
|
+
reply["result"] = "error";
|
320
|
+
reply["request_id"] = doc["request_id"];
|
321
|
+
reply["data"]["message"] = "Invalid arguments: " +
|
322
|
+
ConfigKit::toString(errors);
|
323
|
+
sendJsonReply(conn, reply);
|
324
|
+
return true;
|
325
|
+
}
|
326
|
+
}
|
327
|
+
|
328
|
+
reply["result"] = "ok";
|
329
|
+
reply["request_id"] = doc["request_id"];
|
330
|
+
reply["data"]["applications"] = appPool->inspectPropertiesInAdminPanelFormat(
|
331
|
+
inspectOptions);
|
332
|
+
sendJsonReply(conn, reply);
|
333
|
+
return true;
|
334
|
+
}
|
335
|
+
|
336
|
+
static void modifyEnvironmentVariables(Json::Value &option) {
|
337
|
+
Json::Value::iterator it;
|
338
|
+
for (it = option.begin(); it != option.end(); it++) {
|
339
|
+
Json::Value &suboption = *it;
|
340
|
+
suboption["value"] = suboption["value"].toStyledString();
|
341
|
+
}
|
342
|
+
}
|
343
|
+
|
344
|
+
bool onGetApplicationConfig(const ConnectionPtr &conn, const Json::Value &doc) {
|
345
|
+
Json::Value appConfigsContainer = configGetter()["config_manifest"]
|
346
|
+
["effective_value"]["application_configurations"];
|
347
|
+
Json::Value appConfigsContainerOutput;
|
348
|
+
Json::Value args(Json::objectValue), reply;
|
349
|
+
|
350
|
+
if (doc.isMember("arguments")) {
|
351
|
+
ConfigKit::Schema argumentsSchema =
|
352
|
+
ApplicationPool2::Pool::ToJsonOptions::createSchema();
|
353
|
+
ConfigKit::Store store(argumentsSchema);
|
354
|
+
vector<ConfigKit::Error> errors;
|
355
|
+
|
356
|
+
if (!store.update(doc["arguments"], errors)) {
|
357
|
+
reply["result"] = "error";
|
358
|
+
reply["request_id"] = doc["request_id"];
|
359
|
+
reply["data"]["message"] = "Invalid arguments: " +
|
360
|
+
ConfigKit::toString(errors);
|
361
|
+
sendJsonReply(conn, reply);
|
362
|
+
return true;
|
363
|
+
}
|
364
|
+
|
365
|
+
Json::Value allowedApplicationIds =
|
366
|
+
store.inspectEffectiveValues()["application_ids"];
|
367
|
+
if (allowedApplicationIds.isNull()) {
|
368
|
+
appConfigsContainerOutput = appConfigsContainer;
|
369
|
+
} else {
|
370
|
+
appConfigsContainerOutput = filterJsonObject(
|
371
|
+
appConfigsContainer,
|
372
|
+
allowedApplicationIds);
|
373
|
+
}
|
374
|
+
} else {
|
375
|
+
appConfigsContainerOutput = appConfigsContainer;
|
376
|
+
}
|
377
|
+
|
378
|
+
reply["result"] = "ok";
|
379
|
+
reply["request_id"] = doc["request_id"];
|
380
|
+
reply["data"]["options"] = appConfigsContainerOutput;
|
381
|
+
|
382
|
+
sendJsonReply(conn, reply);
|
383
|
+
return true;
|
384
|
+
}
|
385
|
+
|
386
|
+
|
387
|
+
bool onUnknownResource(const ConnectionPtr &conn, const Json::Value &doc) {
|
388
|
+
Json::Value reply;
|
389
|
+
reply["result"] = "error";
|
390
|
+
reply["request_id"] = doc["request_id"];
|
391
|
+
reply["data"]["message"] = "Unknown resource '" + doc["resource"].asString() + "'";
|
392
|
+
sendJsonReply(conn, reply);
|
393
|
+
return true;
|
394
|
+
}
|
395
|
+
|
396
|
+
bool onUnknownMessageAction(const ConnectionPtr &conn, const Json::Value &doc) {
|
397
|
+
Json::Value reply;
|
398
|
+
reply["result"] = "error";
|
399
|
+
reply["request_id"] = doc["request_id"];
|
400
|
+
reply["data"]["message"] = "Unknown action '" + doc["action"].asString() + "'";
|
401
|
+
sendJsonReply(conn, reply);
|
402
|
+
return true;
|
403
|
+
}
|
404
|
+
|
405
|
+
|
406
|
+
Json::Value parseAndBasicValidateMessageAsJSON(const string &msg) const {
|
407
|
+
Json::Value doc;
|
408
|
+
Json::Reader reader;
|
409
|
+
if (!reader.parse(msg, doc)) {
|
410
|
+
throw RuntimeException("Error parsing command JSON document: "
|
411
|
+
+ reader.getFormattedErrorMessages());
|
412
|
+
}
|
413
|
+
|
414
|
+
if (!doc.isObject()) {
|
415
|
+
throw RuntimeException("Invalid command JSON document: must be an object");
|
416
|
+
}
|
417
|
+
if (!doc.isMember("action")) {
|
418
|
+
throw RuntimeException("Invalid command JSON document: missing 'action' key");
|
419
|
+
}
|
420
|
+
if (!doc["action"].isString()) {
|
421
|
+
throw RuntimeException("Invalid command JSON document: the 'action' key must be a string");
|
422
|
+
}
|
423
|
+
if (!doc.isMember("request_id")) {
|
424
|
+
throw RuntimeException("Invalid command JSON document: missing 'request_id' key");
|
425
|
+
}
|
426
|
+
if (!doc.isMember("resource")) {
|
427
|
+
throw RuntimeException("Invalid command JSON document: missing 'resource' key");
|
428
|
+
}
|
429
|
+
if (!doc["resource"].isString()) {
|
430
|
+
throw RuntimeException("Invalid command JSON document: the 'resource' key must be a string");
|
431
|
+
}
|
432
|
+
if (doc.isMember("arguments") && !doc["arguments"].isObject()) {
|
433
|
+
throw RuntimeException("Invalid command JSON document: the 'arguments' key, when present, must be an object");
|
434
|
+
}
|
435
|
+
|
436
|
+
return doc;
|
437
|
+
}
|
438
|
+
|
439
|
+
void sendJsonReply(const ConnectionPtr &conn, const Json::Value &doc) {
|
440
|
+
Json::FastWriter writer;
|
441
|
+
string str = writer.write(doc);
|
442
|
+
WCRS_DEBUG_FRAME(&server, "Replying with:", str);
|
443
|
+
conn->send(str);
|
444
|
+
}
|
445
|
+
|
446
|
+
void readInstanceDirProperties(const string &instanceDir) {
|
447
|
+
Json::Value doc;
|
448
|
+
Json::Reader reader;
|
449
|
+
|
450
|
+
if (!reader.parse(readAll(instanceDir + "/properties.json"), doc)) {
|
451
|
+
throw RuntimeException("Cannot parse " + instanceDir + "/properties.json: "
|
452
|
+
+ reader.getFormattedErrorMessages());
|
453
|
+
}
|
454
|
+
|
455
|
+
globalPropertiesFromInstanceDir["instance_id"] = doc["instance_id"];
|
456
|
+
globalPropertiesFromInstanceDir["watchdog_pid"] = doc["watchdog_pid"];
|
457
|
+
}
|
458
|
+
|
459
|
+
Json::Value filterJsonObject(const Json::Value &object,
|
460
|
+
const Json::Value &allowedKeys) const
|
461
|
+
{
|
462
|
+
Json::Value::const_iterator it, end = allowedKeys.end();
|
463
|
+
Json::Value result(Json::objectValue);
|
464
|
+
|
465
|
+
for (it = allowedKeys.begin(); it != end; it++) {
|
466
|
+
if (object.isMember(it->asString())) {
|
467
|
+
result[it->asString()] = object[it->asString()];
|
468
|
+
}
|
469
|
+
}
|
470
|
+
|
471
|
+
return result;
|
472
|
+
}
|
473
|
+
|
474
|
+
void initializePropertiesWithoutInstanceDir() {
|
475
|
+
globalPropertiesFromInstanceDir["instance_id"] =
|
476
|
+
InstanceDirectory::generateInstanceId();
|
477
|
+
}
|
478
|
+
|
479
|
+
string getLogPrefix() const {
|
480
|
+
return server.getConfig()["log_prefix"].asString();
|
481
|
+
}
|
482
|
+
|
483
|
+
WebSocketCommandReverseServer::MessageHandler createMessageFunctor() {
|
484
|
+
return boost::bind(&AdminPanelConnector::onMessage, this,
|
485
|
+
boost::placeholders::_1, boost::placeholders::_2,
|
486
|
+
boost::placeholders::_3);
|
487
|
+
}
|
488
|
+
|
489
|
+
public:
|
490
|
+
/******* Dependencies *******/
|
491
|
+
|
492
|
+
ResourceLocator *resourceLocator;
|
493
|
+
ApplicationPool2::PoolPtr appPool;
|
494
|
+
ConfigGetter configGetter;
|
495
|
+
|
496
|
+
|
497
|
+
AdminPanelConnector(const Schema &schema, const Json::Value &config,
|
498
|
+
const ConfigKit::Translator &translator = ConfigKit::DummyTranslator())
|
499
|
+
: server(schema, createMessageFunctor(), config, translator),
|
500
|
+
resourceLocator(NULL)
|
501
|
+
{
|
502
|
+
if (!config["instance_dir"].isNull()) {
|
503
|
+
readInstanceDirProperties(config["instance_dir"].asString());
|
504
|
+
} else {
|
505
|
+
initializePropertiesWithoutInstanceDir();
|
506
|
+
}
|
507
|
+
}
|
508
|
+
|
509
|
+
void initialize() {
|
510
|
+
if (resourceLocator == NULL) {
|
511
|
+
throw RuntimeException("resourceLocator must be non-NULL");
|
512
|
+
}
|
513
|
+
if (appPool == NULL) {
|
514
|
+
throw RuntimeException("appPool must be non-NULL");
|
515
|
+
}
|
516
|
+
if (configGetter == NULL) {
|
517
|
+
throw RuntimeException("configGetter must be non-NULL");
|
518
|
+
}
|
519
|
+
server.initialize();
|
520
|
+
}
|
521
|
+
|
522
|
+
void run() {
|
523
|
+
server.run();
|
524
|
+
}
|
525
|
+
|
526
|
+
void asyncPrepareConfigChange(const Json::Value &updates,
|
527
|
+
ConfigChangeRequest &req,
|
528
|
+
const ConfigKit::CallbackTypes<WebSocketCommandReverseServer>::PrepareConfigChange &callback)
|
529
|
+
{
|
530
|
+
server.asyncPrepareConfigChange(updates, req, callback);
|
531
|
+
}
|
532
|
+
|
533
|
+
void asyncCommitConfigChange(ConfigChangeRequest &req,
|
534
|
+
const ConfigKit::CallbackTypes<WebSocketCommandReverseServer>::CommitConfigChange &callback)
|
535
|
+
BOOST_NOEXCEPT_OR_NOTHROW
|
536
|
+
{
|
537
|
+
server.asyncCommitConfigChange(req, callback);
|
538
|
+
}
|
539
|
+
|
540
|
+
void asyncShutdown(const WebSocketCommandReverseServer::Callback &callback
|
541
|
+
= WebSocketCommandReverseServer::Callback())
|
542
|
+
{
|
543
|
+
server.asyncShutdown(callback);
|
544
|
+
}
|
545
|
+
};
|
546
|
+
|
547
|
+
} // namespace Core
|
548
|
+
} // namespace Passenger
|
549
|
+
|
550
|
+
#endif /* _PASSENGER_ADMIN_PANEL_CONNECTOR_H_ */
|