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,168 @@
|
|
1
|
+
# Phusion Passenger - https://www.phusionpassenger.com/
|
2
|
+
# Copyright (c) 2017 Phusion Holding B.V.
|
3
|
+
#
|
4
|
+
# "Passenger", "Phusion Passenger" and "Union Station" are registered
|
5
|
+
# trademarks of Phusion Holding B.V.
|
6
|
+
#
|
7
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
8
|
+
# of this software and associated documentation files (the "Software"), to deal
|
9
|
+
# in the Software without restriction, including without limitation the rights
|
10
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
11
|
+
# copies of the Software, and to permit persons to whom the Software is
|
12
|
+
# furnished to do so, subject to the following conditions:
|
13
|
+
#
|
14
|
+
# The above copyright notice and this permission notice shall be included in
|
15
|
+
# all copies or substantial portions of the Software.
|
16
|
+
#
|
17
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
18
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
19
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
20
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
21
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
22
|
+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
23
|
+
# THE SOFTWARE.
|
24
|
+
|
25
|
+
# This file uses the cxxcodebuilder API. Learn more at:
|
26
|
+
# https://github.com/phusion/cxxcodebuilder
|
27
|
+
|
28
|
+
require 'phusion_passenger/nginx/config_options'
|
29
|
+
|
30
|
+
def main
|
31
|
+
set_indent_string ' '
|
32
|
+
comment copyright_header_for(__FILE__), 1
|
33
|
+
|
34
|
+
separator
|
35
|
+
|
36
|
+
comment %q{
|
37
|
+
ConfigGeneral/AutoGeneratedSetterFuncs.c is automatically generated from
|
38
|
+
ConfigGeneral/AutoGeneratedSetterFuncs.c.cxxcodebuilder,
|
39
|
+
using definitions from src/ruby_supportlib/phusion_passenger/nginx/config_options.rb.
|
40
|
+
Edits to ConfigGeneral/AutoGeneratedSetterFuncs.c will be lost.
|
41
|
+
|
42
|
+
To update ConfigGeneral/AutoGeneratedSetterFuncs.c:
|
43
|
+
rake nginx
|
44
|
+
|
45
|
+
To force regeneration of ConfigGeneral/AutoGeneratedSetterFuncs.c:
|
46
|
+
rm -f src/nginx_module/ConfigGeneral/AutoGeneratedSetterFuncs.c
|
47
|
+
rake src/nginx_module/ConfigGeneral/AutoGeneratedSetterFuncs.c
|
48
|
+
}
|
49
|
+
|
50
|
+
separator
|
51
|
+
|
52
|
+
function 'static void record_main_conf_source_location(ngx_conf_t *cf, ngx_str_t *file, ngx_uint_t *line)', %Q{
|
53
|
+
if (cf->conf_file == NULL) {
|
54
|
+
file->data = (u_char *) NULL;
|
55
|
+
file->len = 0;
|
56
|
+
*line = 0;
|
57
|
+
} else if (cf->conf_file->file.fd == NGX_INVALID_FILE) {
|
58
|
+
file->data = (u_char *) "(command line)";
|
59
|
+
file->len = sizeof("(command line)") - 1;
|
60
|
+
*line = 0;
|
61
|
+
} else {
|
62
|
+
*file = cf->conf_file->file.name;
|
63
|
+
*line = cf->conf_file->line;
|
64
|
+
}
|
65
|
+
}
|
66
|
+
|
67
|
+
function 'static void record_loc_conf_source_location(ngx_conf_t *cf, passenger_loc_conf_t *pl_conf, ngx_str_t *file, ngx_uint_t *line)', %Q{
|
68
|
+
pl_conf->cscf = ngx_http_conf_get_module_srv_conf(cf, ngx_http_core_module);
|
69
|
+
pl_conf->clcf = ngx_http_conf_get_module_loc_conf(cf, ngx_http_core_module);
|
70
|
+
if (cf->conf_file == NULL) {
|
71
|
+
file->data = (u_char *) NULL;
|
72
|
+
file->len = 0;
|
73
|
+
*line = 0;
|
74
|
+
} else if (cf->conf_file->file.fd == NGX_INVALID_FILE) {
|
75
|
+
file->data = (u_char *) "(command line)";
|
76
|
+
file->len = sizeof("(command line)") - 1;
|
77
|
+
*line = 0;
|
78
|
+
} else {
|
79
|
+
*file = cf->conf_file->file.name;
|
80
|
+
*line = cf->conf_file->line;
|
81
|
+
}
|
82
|
+
}
|
83
|
+
|
84
|
+
separator
|
85
|
+
|
86
|
+
ctx = self
|
87
|
+
NGINX_CONFIGURATION_OPTIONS.each do |option|
|
88
|
+
next if option[:alias_for] || option[:function]
|
89
|
+
|
90
|
+
function(setter_function_declaration_for(option)) do
|
91
|
+
setter_function_body_for(option)
|
92
|
+
end
|
93
|
+
end
|
94
|
+
end
|
95
|
+
|
96
|
+
def setter_function_declaration_for(option)
|
97
|
+
function_name = "passenger_conf_set_" + option[:name].sub(/^passenger_/, '')
|
98
|
+
"static char *#{function_name}(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)"
|
99
|
+
end
|
100
|
+
|
101
|
+
def setter_function_body_for(option)
|
102
|
+
case option[:type]
|
103
|
+
when :string
|
104
|
+
raw_setter = "ngx_conf_set_str_slot"
|
105
|
+
when :integer, :uinteger
|
106
|
+
raw_setter = "ngx_conf_set_num_slot"
|
107
|
+
when :flag
|
108
|
+
raw_setter = "ngx_conf_set_flag_slot"
|
109
|
+
when :string_array
|
110
|
+
raw_setter = "ngx_conf_set_str_array_slot"
|
111
|
+
when :string_keyval
|
112
|
+
raw_setter = "ngx_conf_set_keyval_slot"
|
113
|
+
when :path
|
114
|
+
raw_setter = "ngx_conf_set_path_slot"
|
115
|
+
when :msec
|
116
|
+
raw_setter = "ngx_conf_set_msec_slot"
|
117
|
+
else
|
118
|
+
raise "Unknown type #{option[:type].inspect} for option #{option[:name]}"
|
119
|
+
end
|
120
|
+
|
121
|
+
struct_field = struct_field_for(option)
|
122
|
+
|
123
|
+
case option[:struct]
|
124
|
+
when 'NGX_HTTP_LOC_CONF_OFFSET', nil
|
125
|
+
conf_type = "passenger_loc_conf_t"
|
126
|
+
when 'NGX_HTTP_MAIN_CONF_OFFSET'
|
127
|
+
conf_type = "passenger_main_conf_t"
|
128
|
+
else
|
129
|
+
raise "Unknown struct #{option[:struct].inspect}"
|
130
|
+
end
|
131
|
+
|
132
|
+
if conf_type == "passenger_loc_conf_t"
|
133
|
+
add_code %Q{
|
134
|
+
#{conf_type} *passenger_conf = conf;
|
135
|
+
|
136
|
+
passenger_conf->autogenerated.#{struct_field}_explicitly_set = 1;
|
137
|
+
record_loc_conf_source_location(cf, passenger_conf,
|
138
|
+
&passenger_conf->autogenerated.#{struct_field}_source_file,
|
139
|
+
&passenger_conf->autogenerated.#{struct_field}_source_line);
|
140
|
+
}
|
141
|
+
separator
|
142
|
+
else
|
143
|
+
add_code %Q{
|
144
|
+
#{conf_type} *passenger_conf = conf;
|
145
|
+
|
146
|
+
passenger_conf->autogenerated.#{struct_field}_explicitly_set = 1;
|
147
|
+
record_main_conf_source_location(cf,
|
148
|
+
&passenger_conf->autogenerated.#{struct_field}_source_file,
|
149
|
+
&passenger_conf->autogenerated.#{struct_field}_source_line);
|
150
|
+
}
|
151
|
+
separator
|
152
|
+
end
|
153
|
+
|
154
|
+
add_code %Q{
|
155
|
+
return #{raw_setter}(cf, cmd, conf);
|
156
|
+
}
|
157
|
+
end
|
158
|
+
|
159
|
+
def struct_field_for(option)
|
160
|
+
if option.has_key?(:field)
|
161
|
+
result = option[:field]
|
162
|
+
else
|
163
|
+
result = option[:name].sub(/^passenger_/, '')
|
164
|
+
end
|
165
|
+
result.gsub('.', '_')
|
166
|
+
end
|
167
|
+
|
168
|
+
main
|
@@ -0,0 +1,887 @@
|
|
1
|
+
#include "ManifestGeneration.h"
|
2
|
+
#include "../Configuration.h"
|
3
|
+
#include "cxx_supportlib/Constants.h"
|
4
|
+
#include "cxx_supportlib/FileTools/PathManipCBindings.h"
|
5
|
+
|
6
|
+
|
7
|
+
static PsgJsonValue *
|
8
|
+
generate_config_manifest(ngx_conf_t *cf, passenger_loc_conf_t *toplevel_plcf) {
|
9
|
+
manifest_gen_ctx_t ctx;
|
10
|
+
PsgJsonValue *result;
|
11
|
+
|
12
|
+
init_config_manifest_generation(cf, &ctx);
|
13
|
+
|
14
|
+
generate_config_manifest_for_autogenerated_main_conf(&ctx, &passenger_main_conf);
|
15
|
+
recursively_generate_config_manifest_for_loc_conf(&ctx, toplevel_plcf);
|
16
|
+
|
17
|
+
reverse_manifest_value_hierarchies(&ctx);
|
18
|
+
set_manifest_autogenerated_global_conf_defaults(&ctx);
|
19
|
+
set_manifest_autogenerated_app_conf_defaults(&ctx,
|
20
|
+
ctx.default_app_config_container);
|
21
|
+
set_manifest_autogenerated_loc_conf_defaults(&ctx,
|
22
|
+
ctx.default_loc_config_container);
|
23
|
+
manifest_inherit_application_value_hierarchies(&ctx);
|
24
|
+
manifest_inherit_location_value_hierarchies(&ctx);
|
25
|
+
|
26
|
+
result = ctx.manifest;
|
27
|
+
deinit_config_manifest_generation(&ctx);
|
28
|
+
return result;
|
29
|
+
}
|
30
|
+
|
31
|
+
|
32
|
+
static void
|
33
|
+
init_config_manifest_generation(ngx_conf_t *cf, manifest_gen_ctx_t *ctx) {
|
34
|
+
ngx_memzero(ctx, sizeof(manifest_gen_ctx_t));
|
35
|
+
|
36
|
+
ctx->cf = cf;
|
37
|
+
ctx->manifest = psg_json_value_new_with_type(PSG_JSON_VALUE_TYPE_OBJECT);
|
38
|
+
|
39
|
+
ctx->empty_object = psg_json_value_new_with_type(PSG_JSON_VALUE_TYPE_OBJECT);
|
40
|
+
ctx->empty_array = psg_json_value_new_with_type(PSG_JSON_VALUE_TYPE_ARRAY);
|
41
|
+
|
42
|
+
ctx->it = psg_json_value_iterator_new();
|
43
|
+
ctx->end = psg_json_value_iterator_new();
|
44
|
+
ctx->it2 = psg_json_value_iterator_new();
|
45
|
+
ctx->end2 = psg_json_value_iterator_new();
|
46
|
+
ctx->it3 = psg_json_value_iterator_new();
|
47
|
+
ctx->end3 = psg_json_value_iterator_new();
|
48
|
+
ctx->it4 = psg_json_value_iterator_new();
|
49
|
+
ctx->end4 = psg_json_value_iterator_new();
|
50
|
+
|
51
|
+
ctx->global_config_container = psg_json_value_set_value(ctx->manifest,
|
52
|
+
"global_configuration", -1, ctx->empty_object);
|
53
|
+
ctx->default_app_config_container = psg_json_value_set_value(ctx->manifest,
|
54
|
+
"default_application_configuration", -1, ctx->empty_object);
|
55
|
+
ctx->default_loc_config_container = psg_json_value_set_value(ctx->manifest,
|
56
|
+
"default_location_configuration", -1, ctx->empty_object);
|
57
|
+
ctx->app_configs_container = psg_json_value_set_value(ctx->manifest,
|
58
|
+
"application_configurations", -1, ctx->empty_object);
|
59
|
+
}
|
60
|
+
|
61
|
+
static void
|
62
|
+
deinit_config_manifest_generation(manifest_gen_ctx_t *ctx) {
|
63
|
+
psg_json_value_free(ctx->empty_object);
|
64
|
+
psg_json_value_free(ctx->empty_array);
|
65
|
+
psg_json_value_iterator_free(ctx->it);
|
66
|
+
psg_json_value_iterator_free(ctx->end);
|
67
|
+
psg_json_value_iterator_free(ctx->it2);
|
68
|
+
psg_json_value_iterator_free(ctx->end2);
|
69
|
+
psg_json_value_iterator_free(ctx->it3);
|
70
|
+
psg_json_value_iterator_free(ctx->end3);
|
71
|
+
psg_json_value_iterator_free(ctx->it4);
|
72
|
+
psg_json_value_iterator_free(ctx->end4);
|
73
|
+
}
|
74
|
+
|
75
|
+
|
76
|
+
static void
|
77
|
+
recursively_generate_config_manifest_for_loc_conf(manifest_gen_ctx_t *ctx,
|
78
|
+
passenger_loc_conf_t *plcf)
|
79
|
+
{
|
80
|
+
passenger_loc_conf_t **children;
|
81
|
+
ngx_http_core_srv_conf_t *cscf;
|
82
|
+
ngx_http_core_loc_conf_t *clcf;
|
83
|
+
ngx_uint_t i;
|
84
|
+
|
85
|
+
cscf = plcf->cscf;
|
86
|
+
clcf = plcf->clcf;
|
87
|
+
|
88
|
+
if (cscf != NULL && clcf != NULL && plcf->autogenerated.enabled) {
|
89
|
+
generate_config_manifest_for_loc_conf(ctx, plcf, cscf, clcf);
|
90
|
+
}
|
91
|
+
|
92
|
+
children = plcf->children.elts;
|
93
|
+
for (i = 0; i < plcf->children.nelts; i++) {
|
94
|
+
recursively_generate_config_manifest_for_loc_conf(ctx, children[i]);
|
95
|
+
}
|
96
|
+
}
|
97
|
+
|
98
|
+
static int
|
99
|
+
infer_loc_conf_app_group_name(manifest_gen_ctx_t *ctx, passenger_loc_conf_t *plcf,
|
100
|
+
ngx_http_core_loc_conf_t *clcf, ngx_str_t *result)
|
101
|
+
{
|
102
|
+
ngx_str_t app_root, app_env;
|
103
|
+
char *abs_path;
|
104
|
+
u_char *buf;
|
105
|
+
void *_unused;
|
106
|
+
size_t buf_size;
|
107
|
+
|
108
|
+
if (plcf->autogenerated.app_group_name.data == NULL) {
|
109
|
+
if (plcf->autogenerated.app_root.data == NULL) {
|
110
|
+
buf_size = clcf->root.len + sizeof("/..") - 1;
|
111
|
+
|
112
|
+
buf = (u_char *) ngx_pnalloc(ctx->cf->pool, buf_size);
|
113
|
+
if (buf == NULL) {
|
114
|
+
return 0;
|
115
|
+
}
|
116
|
+
app_root.data = buf;
|
117
|
+
app_root.len = ngx_snprintf(buf, buf_size, "%V/..", &clcf->root) - buf;
|
118
|
+
} else {
|
119
|
+
app_root = plcf->autogenerated.app_root;
|
120
|
+
}
|
121
|
+
|
122
|
+
abs_path = psg_absolutize_path(
|
123
|
+
(const char *) app_root.data, app_root.len,
|
124
|
+
(const char *) ctx->cf->cycle->prefix.data, ctx->cf->cycle->prefix.len,
|
125
|
+
&app_root.len);
|
126
|
+
app_root.data = (u_char *) ngx_pnalloc(ctx->cf->pool, app_root.len);
|
127
|
+
_unused = ngx_copy(app_root.data, abs_path, app_root.len);
|
128
|
+
(void) _unused; /* Shut up compiler warning */
|
129
|
+
free(abs_path);
|
130
|
+
|
131
|
+
if (plcf->autogenerated.environment.data == NULL) {
|
132
|
+
app_env.data = (u_char *) DEFAULT_APP_ENV;
|
133
|
+
app_env.len = sizeof(DEFAULT_APP_ENV) - 1;
|
134
|
+
} else {
|
135
|
+
app_env = plcf->autogenerated.environment;
|
136
|
+
}
|
137
|
+
|
138
|
+
buf_size = app_root.len + app_env.len + sizeof(" ()") - 1;
|
139
|
+
buf = (u_char *) ngx_pnalloc(ctx->cf->pool, buf_size);
|
140
|
+
result->data = buf;
|
141
|
+
result->len = ngx_snprintf(buf, buf_size, "%V (%V)", &app_root, &app_env) - buf;
|
142
|
+
} else {
|
143
|
+
*result = plcf->autogenerated.app_group_name;
|
144
|
+
}
|
145
|
+
|
146
|
+
return 1;
|
147
|
+
}
|
148
|
+
|
149
|
+
static PsgJsonValue *
|
150
|
+
find_or_create_manifest_app_config_container(manifest_gen_ctx_t *ctx,
|
151
|
+
ngx_str_t *app_group_name)
|
152
|
+
{
|
153
|
+
PsgJsonValue *result;
|
154
|
+
|
155
|
+
result = psg_json_value_get_or_create_null(ctx->app_configs_container,
|
156
|
+
(const char *) app_group_name->data, app_group_name->len);
|
157
|
+
if (psg_json_value_is_null(result)) {
|
158
|
+
psg_json_value_set_value(result, "options", -1, ctx->empty_object);
|
159
|
+
psg_json_value_set_value(result, "default_location_configuration", -1, ctx->empty_object);
|
160
|
+
psg_json_value_set_value(result, "location_configurations", -1, ctx->empty_array);
|
161
|
+
}
|
162
|
+
return result;
|
163
|
+
}
|
164
|
+
|
165
|
+
static PsgJsonValue *
|
166
|
+
find_or_create_manifest_loc_config_container(manifest_gen_ctx_t *ctx,
|
167
|
+
PsgJsonValue *app_config_container, ngx_http_core_srv_conf_t *cscf,
|
168
|
+
ngx_http_core_loc_conf_t *clcf)
|
169
|
+
{
|
170
|
+
PsgJsonValue *loc_configs_container;
|
171
|
+
PsgJsonValue *loc_config_container;
|
172
|
+
|
173
|
+
loc_configs_container = psg_json_value_get(app_config_container,
|
174
|
+
"location_configurations", -1);
|
175
|
+
loc_config_container = find_manifest_loc_config_container(ctx,
|
176
|
+
loc_configs_container, cscf, clcf);
|
177
|
+
if (loc_config_container == NULL) {
|
178
|
+
loc_config_container = create_manifest_loc_config_container(ctx,
|
179
|
+
loc_configs_container, cscf, clcf);
|
180
|
+
}
|
181
|
+
|
182
|
+
return loc_config_container;
|
183
|
+
}
|
184
|
+
|
185
|
+
static int
|
186
|
+
matches_any_server_names(manifest_gen_ctx_t *ctx, ngx_http_core_srv_conf_t *cscf,
|
187
|
+
PsgJsonValue *server_names_doc)
|
188
|
+
{
|
189
|
+
ngx_http_server_name_t *server_names = cscf->server_names.elts;
|
190
|
+
PsgJsonValue *server_name_doc;
|
191
|
+
ngx_str_t server_name;
|
192
|
+
ngx_uint_t i;
|
193
|
+
|
194
|
+
psg_json_value_begin(server_names_doc, ctx->it2);
|
195
|
+
psg_json_value_end(server_names_doc, ctx->end2);
|
196
|
+
|
197
|
+
while (!psg_json_value_iterator_eq(ctx->it2, ctx->end2)) {
|
198
|
+
server_name_doc = psg_json_value_iterator_get_value(ctx->it2);
|
199
|
+
server_name.data = (u_char *) psg_json_value_get_str(server_name_doc, &server_name.len);
|
200
|
+
|
201
|
+
for (i = 0; i < cscf->server_names.nelts; i++) {
|
202
|
+
if (server_names[i].name.len == server_name.len
|
203
|
+
&& ngx_strncasecmp(server_names[i].name.data, server_name.data,
|
204
|
+
server_name.len) == 0)
|
205
|
+
{
|
206
|
+
return 1;
|
207
|
+
}
|
208
|
+
}
|
209
|
+
|
210
|
+
psg_json_value_iterator_advance(ctx->it2);
|
211
|
+
}
|
212
|
+
|
213
|
+
return 0;
|
214
|
+
}
|
215
|
+
|
216
|
+
static PsgJsonValue *
|
217
|
+
find_manifest_loc_config_container(manifest_gen_ctx_t *ctx,
|
218
|
+
PsgJsonValue *loc_configs_container, ngx_http_core_srv_conf_t *cscf,
|
219
|
+
ngx_http_core_loc_conf_t *clcf)
|
220
|
+
{
|
221
|
+
PsgJsonValue *loc_config_container;
|
222
|
+
PsgJsonValue *vhost_doc;
|
223
|
+
PsgJsonValue *server_names_doc;
|
224
|
+
PsgJsonValue *location_matcher_doc;
|
225
|
+
ngx_str_t json_location_matcher_type, json_location_matcher_value;
|
226
|
+
|
227
|
+
psg_json_value_begin(loc_configs_container, ctx->it);
|
228
|
+
psg_json_value_end(loc_configs_container, ctx->end);
|
229
|
+
|
230
|
+
while (!psg_json_value_iterator_eq(ctx->it, ctx->end)) {
|
231
|
+
loc_config_container = psg_json_value_iterator_get_value(ctx->it);
|
232
|
+
vhost_doc = psg_json_value_get(loc_config_container, "web_server_virtual_host", -1);
|
233
|
+
location_matcher_doc = psg_json_value_get(loc_config_container, "location_matcher", -1);
|
234
|
+
|
235
|
+
json_location_matcher_type.data = (u_char *) psg_json_value_get_str(
|
236
|
+
psg_json_value_get(location_matcher_doc, "type", -1),
|
237
|
+
&json_location_matcher_type.len);
|
238
|
+
#if (NGX_PCRE)
|
239
|
+
if (clcf->regex != NULL) {
|
240
|
+
if (json_location_matcher_type.len != sizeof("regex") - 1
|
241
|
+
|| ngx_memcmp(json_location_matcher_type.data, "regex", sizeof("regex") - 1) != 0)
|
242
|
+
{
|
243
|
+
goto no_match;
|
244
|
+
}
|
245
|
+
} else
|
246
|
+
#endif
|
247
|
+
if (clcf->exact_match) {
|
248
|
+
if (json_location_matcher_type.len != sizeof("exact") - 1
|
249
|
+
|| ngx_memcmp(json_location_matcher_type.data, "exact", sizeof("exact") - 1) != 0)
|
250
|
+
{
|
251
|
+
goto no_match;
|
252
|
+
}
|
253
|
+
} else {
|
254
|
+
if (json_location_matcher_type.len != sizeof("prefix") - 1
|
255
|
+
|| ngx_memcmp(json_location_matcher_type.data, "prefix", sizeof("prefix") - 1) != 0)
|
256
|
+
{
|
257
|
+
goto no_match;
|
258
|
+
}
|
259
|
+
}
|
260
|
+
|
261
|
+
json_location_matcher_value.data = (u_char *) psg_json_value_get_str(
|
262
|
+
psg_json_value_get(location_matcher_doc, "value", -1),
|
263
|
+
&json_location_matcher_value.len);
|
264
|
+
if (ngx_memn2cmp(clcf->name.data, json_location_matcher_value.data,
|
265
|
+
clcf->name.len, json_location_matcher_value.len)
|
266
|
+
!= 0)
|
267
|
+
{
|
268
|
+
goto no_match;
|
269
|
+
}
|
270
|
+
|
271
|
+
server_names_doc = psg_json_value_get(vhost_doc, "server_names", -1);
|
272
|
+
if (!matches_any_server_names(ctx, cscf, server_names_doc)) {
|
273
|
+
goto no_match;
|
274
|
+
}
|
275
|
+
|
276
|
+
return loc_config_container;
|
277
|
+
|
278
|
+
no_match:
|
279
|
+
psg_json_value_iterator_advance(ctx->it);
|
280
|
+
}
|
281
|
+
|
282
|
+
return NULL;
|
283
|
+
}
|
284
|
+
|
285
|
+
static PsgJsonValue *
|
286
|
+
create_manifest_loc_config_container(manifest_gen_ctx_t *ctx,
|
287
|
+
PsgJsonValue *loc_configs_container, ngx_http_core_srv_conf_t *cscf,
|
288
|
+
ngx_http_core_loc_conf_t *clcf)
|
289
|
+
{
|
290
|
+
PsgJsonValue *loc_config_container = psg_json_value_new_with_type(PSG_JSON_VALUE_TYPE_OBJECT);
|
291
|
+
PsgJsonValue *vhost_doc = psg_json_value_new_with_type(PSG_JSON_VALUE_TYPE_OBJECT);
|
292
|
+
PsgJsonValue *server_names_doc = psg_json_value_new_with_type(PSG_JSON_VALUE_TYPE_ARRAY);
|
293
|
+
PsgJsonValue *location_matcher_doc = psg_json_value_new_with_type(PSG_JSON_VALUE_TYPE_OBJECT);
|
294
|
+
PsgJsonValue *options_doc = psg_json_value_new_with_type(PSG_JSON_VALUE_TYPE_OBJECT);
|
295
|
+
PsgJsonValue *server_name_doc, *result;
|
296
|
+
ngx_http_server_name_t *server_names = cscf->server_names.elts;
|
297
|
+
ngx_uint_t i;
|
298
|
+
|
299
|
+
for (i = 0; i < cscf->server_names.nelts; i++) {
|
300
|
+
server_name_doc = psg_json_value_new_str((const char *) server_names[i].name.data,
|
301
|
+
server_names[i].name.len);
|
302
|
+
psg_json_value_append_val(server_names_doc, server_name_doc);
|
303
|
+
psg_json_value_free(server_name_doc);
|
304
|
+
}
|
305
|
+
psg_json_value_set_value(vhost_doc, "server_names", -1, server_names_doc);
|
306
|
+
|
307
|
+
psg_json_value_set_str(location_matcher_doc, "value",
|
308
|
+
(const char *) clcf->name.data, clcf->name.len);
|
309
|
+
#if (NGX_PCRE)
|
310
|
+
if (clcf->regex != NULL) {
|
311
|
+
psg_json_value_set_str(location_matcher_doc, "type",
|
312
|
+
"regex", -1);
|
313
|
+
} else
|
314
|
+
#endif
|
315
|
+
if (clcf->exact_match) {
|
316
|
+
psg_json_value_set_str(location_matcher_doc, "type",
|
317
|
+
"exact", -1);
|
318
|
+
} else {
|
319
|
+
psg_json_value_set_str(location_matcher_doc, "type",
|
320
|
+
"prefix", -1);
|
321
|
+
}
|
322
|
+
|
323
|
+
psg_json_value_set_value(loc_config_container, "web_server_virtual_host", -1, vhost_doc);
|
324
|
+
psg_json_value_set_value(loc_config_container, "location_matcher", -1, location_matcher_doc);
|
325
|
+
psg_json_value_set_value(loc_config_container, "options", -1, options_doc);
|
326
|
+
result = psg_json_value_append_val(loc_configs_container, loc_config_container);
|
327
|
+
psg_json_value_free(loc_config_container);
|
328
|
+
psg_json_value_free(vhost_doc);
|
329
|
+
psg_json_value_free(server_names_doc);
|
330
|
+
psg_json_value_free(location_matcher_doc);
|
331
|
+
psg_json_value_free(options_doc);
|
332
|
+
return result;
|
333
|
+
}
|
334
|
+
|
335
|
+
static PsgJsonValue *
|
336
|
+
find_or_create_manifest_option_container(manifest_gen_ctx_t *ctx,
|
337
|
+
PsgJsonValue *options_container, const char *option_name,
|
338
|
+
size_t option_name_len)
|
339
|
+
{
|
340
|
+
PsgJsonValue *result;
|
341
|
+
|
342
|
+
result = psg_json_value_get_or_create_null(options_container,
|
343
|
+
option_name, option_name_len);
|
344
|
+
if (psg_json_value_is_null(result)) {
|
345
|
+
init_manifest_option_container(ctx, result);
|
346
|
+
}
|
347
|
+
|
348
|
+
return result;
|
349
|
+
}
|
350
|
+
|
351
|
+
static void
|
352
|
+
init_manifest_option_container(manifest_gen_ctx_t *ctx, PsgJsonValue *doc) {
|
353
|
+
psg_json_value_set_value(doc, "value_hierarchy", -1, ctx->empty_array);
|
354
|
+
}
|
355
|
+
|
356
|
+
static PsgJsonValue *
|
357
|
+
add_manifest_option_container_hierarchy_member(PsgJsonValue *option_container,
|
358
|
+
ngx_str_t *source_file, ngx_uint_t source_line)
|
359
|
+
{
|
360
|
+
PsgJsonValue *value_hierarchy = psg_json_value_get(option_container, "value_hierarchy", -1);
|
361
|
+
PsgJsonValue *hierarchy_member = psg_json_value_new_with_type(PSG_JSON_VALUE_TYPE_OBJECT);
|
362
|
+
PsgJsonValue *source = psg_json_value_new_with_type(PSG_JSON_VALUE_TYPE_OBJECT);
|
363
|
+
PsgJsonValue *result;
|
364
|
+
|
365
|
+
psg_json_value_set_str(source, "type", "web-server-config", sizeof("web-server-config") - 1);
|
366
|
+
psg_json_value_set_str(source, "path", (const char *) source_file->data, source_file->len);
|
367
|
+
psg_json_value_set_uint(source, "line", source_line);
|
368
|
+
psg_json_value_set_value(hierarchy_member, "source", -1, source);
|
369
|
+
result = psg_json_value_append_val(value_hierarchy, hierarchy_member);
|
370
|
+
|
371
|
+
psg_json_value_free(hierarchy_member);
|
372
|
+
psg_json_value_free(source);
|
373
|
+
|
374
|
+
return result;
|
375
|
+
}
|
376
|
+
|
377
|
+
static void
|
378
|
+
generate_config_manifest_for_loc_conf(manifest_gen_ctx_t *ctx,
|
379
|
+
passenger_loc_conf_t *plcf, ngx_http_core_srv_conf_t *cscf,
|
380
|
+
ngx_http_core_loc_conf_t *clcf)
|
381
|
+
{
|
382
|
+
generate_config_manifest_for_autogenerated_loc_conf(ctx, plcf, cscf, clcf);
|
383
|
+
}
|
384
|
+
|
385
|
+
static void
|
386
|
+
find_or_create_manifest_app_and_loc_options_containers(manifest_gen_ctx_t *ctx,
|
387
|
+
passenger_loc_conf_t *plcf, ngx_http_core_srv_conf_t *cscf,
|
388
|
+
ngx_http_core_loc_conf_t *clcf, PsgJsonValue **app_options_container,
|
389
|
+
PsgJsonValue **loc_options_container)
|
390
|
+
{
|
391
|
+
ngx_str_t app_group_name;
|
392
|
+
PsgJsonValue *app_config_container, *loc_config_container;
|
393
|
+
|
394
|
+
if (*app_options_container != NULL && *loc_options_container != NULL) {
|
395
|
+
return;
|
396
|
+
}
|
397
|
+
|
398
|
+
if (cscf->server_name.len == 0) {
|
399
|
+
/* We are in the global context */
|
400
|
+
*app_options_container = ctx->default_app_config_container;
|
401
|
+
*loc_options_container = ctx->default_loc_config_container;
|
402
|
+
} else if (clcf->name.len == 0) {
|
403
|
+
/* We are in a server block */
|
404
|
+
infer_loc_conf_app_group_name(ctx, plcf, clcf, &app_group_name);
|
405
|
+
app_config_container = find_or_create_manifest_app_config_container(ctx, &app_group_name);
|
406
|
+
*app_options_container = psg_json_value_get(app_config_container, "options", -1);
|
407
|
+
*loc_options_container = psg_json_value_get(app_config_container, "default_location_configuration", -1);
|
408
|
+
} else {
|
409
|
+
/* We are in a location/if block */
|
410
|
+
infer_loc_conf_app_group_name(ctx, plcf, clcf, &app_group_name);
|
411
|
+
app_config_container = find_or_create_manifest_app_config_container(ctx, &app_group_name);
|
412
|
+
loc_config_container = find_or_create_manifest_loc_config_container(ctx, app_config_container,
|
413
|
+
cscf, clcf);
|
414
|
+
*app_options_container = psg_json_value_get(app_config_container, "options", -1);
|
415
|
+
*loc_options_container = psg_json_value_get(loc_config_container, "options", -1);
|
416
|
+
}
|
417
|
+
}
|
418
|
+
|
419
|
+
|
420
|
+
static void
|
421
|
+
reverse_manifest_value_hierarchies(manifest_gen_ctx_t *ctx) {
|
422
|
+
PsgJsonValue *app_config_container;
|
423
|
+
PsgJsonValue *options_container;
|
424
|
+
PsgJsonValue *location_configs_container, *location_config_container;
|
425
|
+
|
426
|
+
reverse_value_hierarchies_in_options_container(ctx->global_config_container,
|
427
|
+
ctx->it, ctx->end);
|
428
|
+
reverse_value_hierarchies_in_options_container(ctx->default_app_config_container,
|
429
|
+
ctx->it, ctx->end);
|
430
|
+
reverse_value_hierarchies_in_options_container(ctx->default_loc_config_container,
|
431
|
+
ctx->it, ctx->end);
|
432
|
+
|
433
|
+
psg_json_value_begin(ctx->app_configs_container, ctx->it);
|
434
|
+
psg_json_value_end(ctx->app_configs_container, ctx->end);
|
435
|
+
while (!psg_json_value_iterator_eq(ctx->it, ctx->end)) {
|
436
|
+
app_config_container = psg_json_value_iterator_get_value(ctx->it);
|
437
|
+
|
438
|
+
options_container = psg_json_value_get(app_config_container,
|
439
|
+
"options", -1);
|
440
|
+
reverse_value_hierarchies_in_options_container(options_container,
|
441
|
+
ctx->it2, ctx->end2);
|
442
|
+
|
443
|
+
options_container = psg_json_value_get(app_config_container,
|
444
|
+
"default_location_configuration", -1);
|
445
|
+
reverse_value_hierarchies_in_options_container(options_container,
|
446
|
+
ctx->it2, ctx->end2);
|
447
|
+
|
448
|
+
location_configs_container = psg_json_value_get(app_config_container,
|
449
|
+
"location_configurations", -1);
|
450
|
+
if (location_configs_container != NULL) {
|
451
|
+
psg_json_value_begin(location_configs_container, ctx->it2);
|
452
|
+
psg_json_value_end(location_configs_container, ctx->end2);
|
453
|
+
while (!psg_json_value_iterator_eq(ctx->it2, ctx->end2)) {
|
454
|
+
location_config_container = psg_json_value_iterator_get_value(ctx->it2);
|
455
|
+
|
456
|
+
options_container = psg_json_value_get(location_config_container,
|
457
|
+
"options", -1);
|
458
|
+
reverse_value_hierarchies_in_options_container(options_container,
|
459
|
+
ctx->it3, ctx->end3);
|
460
|
+
|
461
|
+
psg_json_value_iterator_advance(ctx->it2);
|
462
|
+
}
|
463
|
+
}
|
464
|
+
|
465
|
+
psg_json_value_iterator_advance(ctx->it);
|
466
|
+
}
|
467
|
+
}
|
468
|
+
|
469
|
+
static void
|
470
|
+
reverse_value_hierarchies_in_options_container(PsgJsonValue *options_container,
|
471
|
+
PsgJsonValueIterator *it, PsgJsonValueIterator *end)
|
472
|
+
{
|
473
|
+
PsgJsonValue *option_container, *value_hierarchy_doc;
|
474
|
+
unsigned int i, len;
|
475
|
+
|
476
|
+
psg_json_value_begin(options_container, it);
|
477
|
+
psg_json_value_end(options_container, end);
|
478
|
+
while (!psg_json_value_iterator_eq(it, end)) {
|
479
|
+
option_container = psg_json_value_iterator_get_value(it);
|
480
|
+
value_hierarchy_doc = psg_json_value_get(option_container,
|
481
|
+
"value_hierarchy", -1);
|
482
|
+
len = psg_json_value_size(value_hierarchy_doc);
|
483
|
+
|
484
|
+
for (i = 0; i < len / 2; i++) {
|
485
|
+
psg_json_value_swap(
|
486
|
+
psg_json_value_get_at_index(value_hierarchy_doc, i),
|
487
|
+
psg_json_value_get_at_index(value_hierarchy_doc, len - i - 1));
|
488
|
+
}
|
489
|
+
|
490
|
+
psg_json_value_iterator_advance(it);
|
491
|
+
}
|
492
|
+
}
|
493
|
+
|
494
|
+
static void
|
495
|
+
add_manifest_options_container_dynamic_default(manifest_gen_ctx_t *ctx,
|
496
|
+
PsgJsonValue *options_container,
|
497
|
+
const char *option_name, size_t option_name_len,
|
498
|
+
const char *desc, size_t desc_len)
|
499
|
+
{
|
500
|
+
PsgJsonValue *option_container, *hierarchy, *hierarchy_member, *source;
|
501
|
+
|
502
|
+
option_container = psg_json_value_get_or_create_null(options_container, option_name, option_name_len);
|
503
|
+
if (psg_json_value_is_null(option_container)) {
|
504
|
+
init_manifest_option_container(ctx, option_container);
|
505
|
+
}
|
506
|
+
hierarchy = psg_json_value_get(option_container, "value_hierarchy", -1);
|
507
|
+
|
508
|
+
source = psg_json_value_new_with_type(PSG_JSON_VALUE_TYPE_OBJECT);
|
509
|
+
psg_json_value_set_str(source, "type", "dynamic-default-description", -1);
|
510
|
+
|
511
|
+
hierarchy_member = psg_json_value_new_with_type(PSG_JSON_VALUE_TYPE_OBJECT);
|
512
|
+
psg_json_value_set_value(hierarchy_member, "source", -1, source);
|
513
|
+
psg_json_value_set_str(hierarchy_member, "value", desc, desc_len);
|
514
|
+
|
515
|
+
psg_json_value_append_val(hierarchy, hierarchy_member);
|
516
|
+
|
517
|
+
psg_json_value_free(hierarchy_member);
|
518
|
+
psg_json_value_free(source);
|
519
|
+
}
|
520
|
+
|
521
|
+
static PsgJsonValue *
|
522
|
+
add_manifest_options_container_static_default(manifest_gen_ctx_t *ctx,
|
523
|
+
PsgJsonValue *options_container, const char *option_name, size_t option_name_len)
|
524
|
+
{
|
525
|
+
PsgJsonValue *option_container, *hierarchy, *hierarchy_member, *source, *result;
|
526
|
+
|
527
|
+
option_container = psg_json_value_get_or_create_null(options_container, option_name, option_name_len);
|
528
|
+
if (psg_json_value_is_null(option_container)) {
|
529
|
+
init_manifest_option_container(ctx, option_container);
|
530
|
+
}
|
531
|
+
hierarchy = psg_json_value_get(option_container, "value_hierarchy", -1);
|
532
|
+
|
533
|
+
source = psg_json_value_new_with_type(PSG_JSON_VALUE_TYPE_OBJECT);
|
534
|
+
psg_json_value_set_str(source, "type", "default", -1);
|
535
|
+
|
536
|
+
hierarchy_member = psg_json_value_new_with_type(PSG_JSON_VALUE_TYPE_OBJECT);
|
537
|
+
psg_json_value_set_value(hierarchy_member, "source", -1, source);
|
538
|
+
|
539
|
+
result = psg_json_value_append_val(hierarchy, hierarchy_member);
|
540
|
+
|
541
|
+
psg_json_value_free(hierarchy_member);
|
542
|
+
psg_json_value_free(source);
|
543
|
+
|
544
|
+
return result;
|
545
|
+
}
|
546
|
+
|
547
|
+
static void
|
548
|
+
add_manifest_options_container_static_default_str(manifest_gen_ctx_t *ctx,
|
549
|
+
PsgJsonValue *options_container, const char *option_name, size_t option_name_len,
|
550
|
+
const char *value, size_t value_len)
|
551
|
+
{
|
552
|
+
PsgJsonValue *hierarchy_member = add_manifest_options_container_static_default(
|
553
|
+
ctx, options_container, option_name, option_name_len);
|
554
|
+
psg_json_value_set_str(hierarchy_member, "value", value, value_len);
|
555
|
+
}
|
556
|
+
|
557
|
+
static void
|
558
|
+
add_manifest_options_container_static_default_int(manifest_gen_ctx_t *ctx,
|
559
|
+
PsgJsonValue *options_container, const char *option_name, size_t option_name_len,
|
560
|
+
int value)
|
561
|
+
{
|
562
|
+
PsgJsonValue *hierarchy_member = add_manifest_options_container_static_default(
|
563
|
+
ctx, options_container, option_name, option_name_len);
|
564
|
+
psg_json_value_set_int(hierarchy_member, "value", value);
|
565
|
+
}
|
566
|
+
|
567
|
+
static void
|
568
|
+
add_manifest_options_container_static_default_uint(manifest_gen_ctx_t *ctx,
|
569
|
+
PsgJsonValue *options_container, const char *option_name, size_t option_name_len,
|
570
|
+
unsigned int value)
|
571
|
+
{
|
572
|
+
PsgJsonValue *hierarchy_member = add_manifest_options_container_static_default(
|
573
|
+
ctx, options_container, option_name, option_name_len);
|
574
|
+
psg_json_value_set_uint(hierarchy_member, "value", value);
|
575
|
+
}
|
576
|
+
|
577
|
+
static void
|
578
|
+
add_manifest_options_container_static_default_bool(manifest_gen_ctx_t *ctx,
|
579
|
+
PsgJsonValue *options_container, const char *option_name, size_t option_name_len,
|
580
|
+
int value)
|
581
|
+
{
|
582
|
+
PsgJsonValue *hierarchy_member = add_manifest_options_container_static_default(
|
583
|
+
ctx, options_container, option_name, option_name_len);
|
584
|
+
psg_json_value_set_bool(hierarchy_member, "value", value);
|
585
|
+
}
|
586
|
+
|
587
|
+
static void
|
588
|
+
manifest_inherit_application_value_hierarchies(manifest_gen_ctx_t *ctx) {
|
589
|
+
PsgJsonValue *app_config_container, *options_container, *option_container, *default_app_config;
|
590
|
+
PsgJsonValue *value_hierarchy_doc, *value_hierarchy_from_default;
|
591
|
+
const char *option_name;
|
592
|
+
size_t option_name_len;
|
593
|
+
|
594
|
+
/* Iterate through all 'application_configurations' objects */
|
595
|
+
psg_json_value_begin(ctx->app_configs_container, ctx->it);
|
596
|
+
psg_json_value_end(ctx->app_configs_container, ctx->end);
|
597
|
+
while (!psg_json_value_iterator_eq(ctx->it, ctx->end)) {
|
598
|
+
app_config_container = psg_json_value_iterator_get_value(ctx->it);
|
599
|
+
|
600
|
+
/* Iterate through all its 'options' objects */
|
601
|
+
options_container = psg_json_value_get(app_config_container, "options", -1);
|
602
|
+
psg_json_value_begin(options_container, ctx->it2);
|
603
|
+
psg_json_value_end(options_container, ctx->end2);
|
604
|
+
while (!psg_json_value_iterator_eq(ctx->it2, ctx->end2)) {
|
605
|
+
/* For each option, inherit the value hierarchies
|
606
|
+
* from the 'default_application_configuration' object.
|
607
|
+
*
|
608
|
+
* Since the value hierarchy array is already in
|
609
|
+
* most-to-least-specific order, simply appending
|
610
|
+
* the 'default_application_configuration' hierarchy is
|
611
|
+
* enough.
|
612
|
+
*/
|
613
|
+
option_name = psg_json_value_iterator_get_name(ctx->it2,
|
614
|
+
&option_name_len);
|
615
|
+
option_container = psg_json_value_iterator_get_value(ctx->it2);
|
616
|
+
default_app_config = psg_json_value_get(ctx->default_app_config_container,
|
617
|
+
option_name, option_name_len);
|
618
|
+
if (default_app_config != NULL) {
|
619
|
+
value_hierarchy_doc = psg_json_value_get(option_container,
|
620
|
+
"value_hierarchy", -1);
|
621
|
+
value_hierarchy_from_default = psg_json_value_get(default_app_config,
|
622
|
+
"value_hierarchy", -1);
|
623
|
+
psg_json_value_append_vals(value_hierarchy_doc,
|
624
|
+
value_hierarchy_from_default,
|
625
|
+
ctx->it3, ctx->end3);
|
626
|
+
maybe_inherit_string_array_hierarchy_values(value_hierarchy_doc,
|
627
|
+
ctx->it3, ctx->end3);
|
628
|
+
maybe_inherit_string_keyval_hierarchy_values(value_hierarchy_doc,
|
629
|
+
ctx->it3, ctx->end3);
|
630
|
+
}
|
631
|
+
|
632
|
+
psg_json_value_iterator_advance(ctx->it2);
|
633
|
+
}
|
634
|
+
|
635
|
+
/* Iterate through all 'default_application_configuration' options */
|
636
|
+
psg_json_value_begin(ctx->default_app_config_container, ctx->it2);
|
637
|
+
psg_json_value_end(ctx->default_app_config_container, ctx->end2);
|
638
|
+
while (!psg_json_value_iterator_eq(ctx->it2, ctx->end2)) {
|
639
|
+
/* For each default app config object, if there is no object in
|
640
|
+
* the current context's 'options' with the same name, then add
|
641
|
+
* it there.
|
642
|
+
*/
|
643
|
+
option_name = psg_json_value_iterator_get_name(ctx->it2,
|
644
|
+
&option_name_len);
|
645
|
+
if (!psg_json_value_is_member(options_container, option_name, option_name_len)) {
|
646
|
+
option_container = psg_json_value_iterator_get_value(ctx->it2);
|
647
|
+
psg_json_value_set_value(options_container, option_name, option_name_len,
|
648
|
+
option_container);
|
649
|
+
}
|
650
|
+
|
651
|
+
psg_json_value_iterator_advance(ctx->it2);
|
652
|
+
}
|
653
|
+
|
654
|
+
psg_json_value_iterator_advance(ctx->it);
|
655
|
+
}
|
656
|
+
}
|
657
|
+
|
658
|
+
static void
|
659
|
+
manifest_inherit_location_value_hierarchies(manifest_gen_ctx_t *ctx) {
|
660
|
+
PsgJsonValue *app_config_container, *location_configs_container, *location_config_container;
|
661
|
+
PsgJsonValue *app_default_location_configs;
|
662
|
+
PsgJsonValue *options_container, *option_container, *default_location_config;
|
663
|
+
PsgJsonValue *value_hierarchy_doc, *value_hierarchy_from_default;
|
664
|
+
const char *option_name;
|
665
|
+
size_t option_name_len;
|
666
|
+
|
667
|
+
/* Iterate through all 'application_configurations' objects */
|
668
|
+
psg_json_value_begin(ctx->app_configs_container, ctx->it);
|
669
|
+
psg_json_value_end(ctx->app_configs_container, ctx->end);
|
670
|
+
while (!psg_json_value_iterator_eq(ctx->it, ctx->end)) {
|
671
|
+
app_config_container = psg_json_value_iterator_get_value(ctx->it);
|
672
|
+
|
673
|
+
/* Iterate through all its 'default_location_configuration' options */
|
674
|
+
app_default_location_configs = psg_json_value_get(app_config_container,
|
675
|
+
"default_location_configuration", -1);
|
676
|
+
options_container = app_default_location_configs;
|
677
|
+
psg_json_value_begin(options_container, ctx->it2);
|
678
|
+
psg_json_value_end(options_container, ctx->end2);
|
679
|
+
while (!psg_json_value_iterator_eq(ctx->it2, ctx->end2)) {
|
680
|
+
/* For each option, inherit the value hierarchies
|
681
|
+
* from the top-level 'default_application_configuration' object.
|
682
|
+
*
|
683
|
+
* Since the value hierarchy array is already in
|
684
|
+
* most-to-least-specific order, simply appending
|
685
|
+
* the 'default_application_configuration' hierarchy is
|
686
|
+
* enough.
|
687
|
+
*/
|
688
|
+
option_name = psg_json_value_iterator_get_name(ctx->it2, &option_name_len);
|
689
|
+
option_container = psg_json_value_iterator_get_value(ctx->it2);
|
690
|
+
default_location_config = psg_json_value_get(ctx->default_loc_config_container,
|
691
|
+
option_name, option_name_len);
|
692
|
+
if (default_location_config != NULL) {
|
693
|
+
value_hierarchy_doc = psg_json_value_get(option_container,
|
694
|
+
"value_hierarchy", -1);
|
695
|
+
value_hierarchy_from_default = psg_json_value_get(default_location_config,
|
696
|
+
"value_hierarchy", -1);
|
697
|
+
psg_json_value_append_vals(value_hierarchy_doc,
|
698
|
+
value_hierarchy_from_default,
|
699
|
+
ctx->it3, ctx->end3);
|
700
|
+
maybe_inherit_string_array_hierarchy_values(value_hierarchy_doc,
|
701
|
+
ctx->it3, ctx->end3);
|
702
|
+
maybe_inherit_string_keyval_hierarchy_values(value_hierarchy_doc,
|
703
|
+
ctx->it3, ctx->end3);
|
704
|
+
}
|
705
|
+
|
706
|
+
psg_json_value_iterator_advance(ctx->it2);
|
707
|
+
}
|
708
|
+
|
709
|
+
/* Iterate through all top-level 'default_location_configuration' options */
|
710
|
+
psg_json_value_begin(ctx->default_loc_config_container, ctx->it2);
|
711
|
+
psg_json_value_end(ctx->default_loc_config_container, ctx->end2);
|
712
|
+
while (!psg_json_value_iterator_eq(ctx->it2, ctx->end2)) {
|
713
|
+
/* For each default top-level 'default_location_configuration' option,
|
714
|
+
* if there is no object in the current context's 'default_application_configuration'
|
715
|
+
* with the same name, then add it there.
|
716
|
+
*/
|
717
|
+
option_name = psg_json_value_iterator_get_name(ctx->it2,
|
718
|
+
&option_name_len);
|
719
|
+
if (!psg_json_value_is_member(options_container, option_name, option_name_len)) {
|
720
|
+
option_container = psg_json_value_iterator_get_value(ctx->it2);
|
721
|
+
psg_json_value_set_value(options_container, option_name, option_name_len,
|
722
|
+
option_container);
|
723
|
+
}
|
724
|
+
|
725
|
+
psg_json_value_iterator_advance(ctx->it2);
|
726
|
+
}
|
727
|
+
|
728
|
+
/* Iterate through all its 'locations_configurations' options */
|
729
|
+
location_configs_container = psg_json_value_get(app_config_container,
|
730
|
+
"location_configurations", -1);
|
731
|
+
if (location_configs_container != NULL) {
|
732
|
+
psg_json_value_begin(location_configs_container, ctx->it2);
|
733
|
+
psg_json_value_end(location_configs_container, ctx->end2);
|
734
|
+
while (!psg_json_value_iterator_eq(ctx->it2, ctx->end2)) {
|
735
|
+
location_config_container = psg_json_value_iterator_get_value(ctx->it2);
|
736
|
+
|
737
|
+
options_container = psg_json_value_get(location_config_container,
|
738
|
+
"options", -1);
|
739
|
+
psg_json_value_begin(options_container, ctx->it3);
|
740
|
+
psg_json_value_end(options_container, ctx->end3);
|
741
|
+
while (!psg_json_value_iterator_eq(ctx->it3, ctx->end3)) {
|
742
|
+
/* For each option, inherit the value hierarchies
|
743
|
+
* from the 'default_location_configuration' belonging
|
744
|
+
* to the current app (which also contains the global
|
745
|
+
* location config defaults).
|
746
|
+
*
|
747
|
+
* Since the value hierarchy array is already in
|
748
|
+
* most-to-least-specific order, simply appending
|
749
|
+
* the 'default_location_configuration' hierarchy is
|
750
|
+
* enough.
|
751
|
+
*/
|
752
|
+
option_name = psg_json_value_iterator_get_name(ctx->it3, &option_name_len);
|
753
|
+
option_container = psg_json_value_iterator_get_value(ctx->it3);
|
754
|
+
default_location_config = psg_json_value_get(app_default_location_configs,
|
755
|
+
option_name, option_name_len);
|
756
|
+
if (default_location_config != NULL) {
|
757
|
+
value_hierarchy_doc = psg_json_value_get(option_container,
|
758
|
+
"value_hierarchy", -1);
|
759
|
+
value_hierarchy_from_default = psg_json_value_get(default_location_config,
|
760
|
+
"value_hierarchy", -1);
|
761
|
+
psg_json_value_append_vals(value_hierarchy_doc,
|
762
|
+
value_hierarchy_from_default,
|
763
|
+
ctx->it4, ctx->end4);
|
764
|
+
maybe_inherit_string_array_hierarchy_values(value_hierarchy_doc,
|
765
|
+
ctx->it4, ctx->end4);
|
766
|
+
maybe_inherit_string_keyval_hierarchy_values(value_hierarchy_doc,
|
767
|
+
ctx->it4, ctx->end4);
|
768
|
+
}
|
769
|
+
|
770
|
+
psg_json_value_iterator_advance(ctx->it3);
|
771
|
+
}
|
772
|
+
|
773
|
+
psg_json_value_iterator_advance(ctx->it2);
|
774
|
+
}
|
775
|
+
}
|
776
|
+
|
777
|
+
psg_json_value_iterator_advance(ctx->it);
|
778
|
+
}
|
779
|
+
}
|
780
|
+
|
781
|
+
static void
|
782
|
+
maybe_inherit_string_array_hierarchy_values(PsgJsonValue *value_hierarchy_doc,
|
783
|
+
PsgJsonValueIterator *it, PsgJsonValueIterator *end)
|
784
|
+
{
|
785
|
+
PsgJsonValue *value, *current, *next, *current_value, *next_value;
|
786
|
+
unsigned int len;
|
787
|
+
int i;
|
788
|
+
|
789
|
+
if (psg_json_value_size(value_hierarchy_doc) == 0) {
|
790
|
+
return;
|
791
|
+
}
|
792
|
+
value = psg_json_value_get(psg_json_value_get_at_index(value_hierarchy_doc, 0),
|
793
|
+
"value", -1);
|
794
|
+
if (psg_json_value_type(value) != PSG_JSON_VALUE_TYPE_ARRAY) {
|
795
|
+
return;
|
796
|
+
}
|
797
|
+
|
798
|
+
len = psg_json_value_size(value_hierarchy_doc);
|
799
|
+
for (i = len - 1; i >= 1; i--) {
|
800
|
+
current = psg_json_value_get_at_index(value_hierarchy_doc, i);
|
801
|
+
next = psg_json_value_get_at_index(value_hierarchy_doc, i - 1);
|
802
|
+
|
803
|
+
current_value = psg_json_value_get(current, "value", -1);
|
804
|
+
next_value = psg_json_value_get(next, "value", -1);
|
805
|
+
|
806
|
+
psg_json_value_begin(current_value, it);
|
807
|
+
psg_json_value_end(current_value, end);
|
808
|
+
while (!psg_json_value_iterator_eq(it, end)) {
|
809
|
+
if (!json_array_contains(next_value, psg_json_value_iterator_get_value(it))) {
|
810
|
+
psg_json_value_append_val(next_value, psg_json_value_iterator_get_value(it));
|
811
|
+
}
|
812
|
+
psg_json_value_iterator_advance(it);
|
813
|
+
}
|
814
|
+
}
|
815
|
+
}
|
816
|
+
|
817
|
+
static void
|
818
|
+
maybe_inherit_string_keyval_hierarchy_values(PsgJsonValue *value_hierarchy_doc,
|
819
|
+
PsgJsonValueIterator *it, PsgJsonValueIterator *end)
|
820
|
+
{
|
821
|
+
PsgJsonValue *value, *current, *next, *current_value, *next_value;
|
822
|
+
const char *name;
|
823
|
+
size_t name_len;
|
824
|
+
unsigned int len;
|
825
|
+
int i;
|
826
|
+
|
827
|
+
if (psg_json_value_size(value_hierarchy_doc) == 0) {
|
828
|
+
return;
|
829
|
+
}
|
830
|
+
value = psg_json_value_get(psg_json_value_get_at_index(value_hierarchy_doc, 0),
|
831
|
+
"value", -1);
|
832
|
+
if (psg_json_value_type(value) != PSG_JSON_VALUE_TYPE_OBJECT) {
|
833
|
+
return;
|
834
|
+
}
|
835
|
+
|
836
|
+
len = psg_json_value_size(value_hierarchy_doc);
|
837
|
+
for (i = len - 1; i >= 1; i--) {
|
838
|
+
current = psg_json_value_get_at_index(value_hierarchy_doc, i);
|
839
|
+
next = psg_json_value_get_at_index(value_hierarchy_doc, i - 1);
|
840
|
+
|
841
|
+
current_value = psg_json_value_get(current, "value", -1);
|
842
|
+
next_value = psg_json_value_get(next, "value", -1);
|
843
|
+
|
844
|
+
psg_json_value_begin(current_value, it);
|
845
|
+
psg_json_value_end(current_value, end);
|
846
|
+
while (!psg_json_value_iterator_eq(it, end)) {
|
847
|
+
name = psg_json_value_iterator_get_name(it, &name_len);
|
848
|
+
if (!psg_json_value_is_member(next_value, name, name_len)) {
|
849
|
+
psg_json_value_set_value(next_value, name, name_len,
|
850
|
+
psg_json_value_iterator_get_value(it));
|
851
|
+
}
|
852
|
+
psg_json_value_iterator_advance(it);
|
853
|
+
}
|
854
|
+
}
|
855
|
+
}
|
856
|
+
|
857
|
+
|
858
|
+
static void
|
859
|
+
psg_json_value_append_vals(PsgJsonValue *doc, PsgJsonValue *doc2,
|
860
|
+
PsgJsonValueIterator *it, PsgJsonValueIterator *end)
|
861
|
+
{
|
862
|
+
PsgJsonValue *elem;
|
863
|
+
|
864
|
+
psg_json_value_begin(doc2, it);
|
865
|
+
psg_json_value_end(doc2, end);
|
866
|
+
while (!psg_json_value_iterator_eq(it, end)) {
|
867
|
+
elem = psg_json_value_iterator_get_value(it);
|
868
|
+
psg_json_value_append_val(doc, elem);
|
869
|
+
psg_json_value_iterator_advance(it);
|
870
|
+
}
|
871
|
+
}
|
872
|
+
|
873
|
+
static int
|
874
|
+
json_array_contains(PsgJsonValue *doc, PsgJsonValue *elem) {
|
875
|
+
unsigned int i, len;
|
876
|
+
PsgJsonValue *current;
|
877
|
+
|
878
|
+
len = psg_json_value_size(doc);
|
879
|
+
for (i = 0; i < len; i++) {
|
880
|
+
current = psg_json_value_get_at_index(doc, i);
|
881
|
+
if (psg_json_value_eq(current, elem)) {
|
882
|
+
return 1;
|
883
|
+
}
|
884
|
+
}
|
885
|
+
|
886
|
+
return 0;
|
887
|
+
}
|