passenger 5.3.7 → 6.0.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/CHANGELOG +651 -19
- data/CONTRIBUTING.md +1 -1
- data/CONTRIBUTORS +26 -0
- data/LICENSE +1 -1
- data/README.md +5 -12
- data/Rakefile +15 -4
- data/bin/passenger +2 -2
- data/bin/passenger-config +2 -2
- data/bin/passenger-install-apache2-module +7 -2
- data/bin/passenger-install-nginx-module +25 -8
- data/bin/passenger-memory-stats +67 -14
- data/bin/passenger-status +46 -6
- data/build/agent.rb +5 -3
- data/build/apache2.rb +3 -3
- data/build/basics.rb +12 -6
- data/build/common_library.rb +8 -7
- data/build/cxx_tests.rb +20 -9
- data/build/integration_tests.rb +10 -9
- data/build/misc.rb +5 -3
- data/build/nginx.rb +2 -2
- data/build/node_tests.rb +2 -2
- data/build/oxt_tests.rb +2 -2
- data/build/packaging.rb +6 -4
- data/build/ruby_extension.rb +2 -2
- data/build/ruby_tests.rb +3 -3
- data/build/schema_printer.rb +2 -2
- data/build/support/cplusplus.rb +2 -2
- data/build/support/cxx_dependency_map.rb +329 -59
- data/build/support/general.rb +2 -2
- data/build/support/vendor/cxx_hinted_parser/LICENSE.md +1 -1
- data/build/support/vendor/cxx_hinted_parser/lib/cxx_hinted_parser/parser.rb +2 -2
- data/build/support/vendor/cxx_hinted_parser/lib/cxx_hinted_parser.rb +2 -2
- data/build/support/vendor/cxxcodebuilder/LICENSE.md +1 -1
- data/build/support/vendor/cxxcodebuilder/lib/cxxcodebuilder/builder.rb +57 -4
- data/build/support/vendor/cxxcodebuilder/lib/cxxcodebuilder/initializer_builder.rb +2 -2
- data/build/support/vendor/cxxcodebuilder/lib/cxxcodebuilder.rb +2 -2
- data/build/test_basics.rb +29 -15
- data/dev/copy_boost_headers +142 -79
- data/dev/index_cxx_dependencies.rb +1 -1
- data/dev/nginx_version_sha256 +72 -0
- data/dev/websocketpp.patch +39 -0
- data/doc/DesignAspects/LimitedGemDependencies.md +39 -0
- data/doc/DesignAspects/NoGemActivationDuringRubyLoaderInitialization.md +27 -0
- data/doc/templates/markdown.html.erb +2 -6
- data/package.json +20 -18
- data/passenger.gemspec +17 -3
- data/resources/mime.types +1 -0
- data/resources/release.txt +1 -0
- data/resources/templates/apache2/deployment_example.txt.erb +1 -1
- data/resources/templates/config/installation_utils/user_support_binaries_dir_not_writable.txt.erb +1 -0
- data/resources/templates/error_renderer/with_details/dist/bundle.js +2 -33
- data/resources/templates/error_renderer/with_details/dist/styles.css +2 -2
- data/resources/templates/error_renderer/with_details/src/GetHelpView.jsx +1 -1
- data/resources/templates/error_renderer/with_details/src/bootstrap/bootstrap.css +0 -0
- data/resources/templates/error_renderer/with_details/src/bootstrap/bootstrap.js +0 -0
- data/resources/templates/error_renderer/with_details/src/bootstrap/config.json +0 -0
- data/resources/templates/error_renderer/with_details/src/index.html.template +0 -2
- data/resources/templates/error_renderer/with_details/webpack.config.js +13 -16
- data/resources/templates/error_renderer/without_details/dist/bundle.js +0 -1
- data/resources/templates/error_renderer/without_details/dist/styles.css +1 -1
- data/resources/templates/error_renderer/without_details/webpack.config.js +13 -16
- data/resources/templates/nginx/deployment_example.txt.erb +1 -1
- data/resources/templates/standalone/global.erb +4 -0
- data/resources/templates/standalone/http.erb +3 -0
- data/resources/templates/standalone/rails_asset_pipeline.erb +1 -1
- data/resources/templates/standalone/server.erb +4 -0
- data/src/agent/AgentMain.cpp +7 -9
- data/src/agent/Core/AdminPanelConnector.h +5 -6
- data/src/agent/Core/ApiServer.h +38 -3
- data/src/agent/Core/ApplicationPool/AbstractSession.h +2 -2
- data/src/agent/Core/ApplicationPool/BasicGroupInfo.h +2 -2
- data/src/agent/Core/ApplicationPool/BasicProcessInfo.h +2 -2
- data/src/agent/Core/ApplicationPool/Common.h +2 -2
- data/src/agent/Core/ApplicationPool/Context.h +7 -4
- data/src/agent/Core/ApplicationPool/Group/InitializationAndShutdown.cpp +10 -2
- data/src/agent/Core/ApplicationPool/Group/InternalUtils.cpp +14 -6
- data/src/agent/Core/ApplicationPool/Group/LifetimeAndBasics.cpp +10 -2
- data/src/agent/Core/ApplicationPool/Group/Miscellaneous.cpp +11 -2
- data/src/agent/Core/ApplicationPool/Group/OutOfBandWork.cpp +12 -3
- data/src/agent/Core/ApplicationPool/Group/ProcessListManagement.cpp +86 -6
- data/src/agent/Core/ApplicationPool/Group/SessionManagement.cpp +42 -12
- data/src/agent/Core/ApplicationPool/Group/SpawningAndRestarting.cpp +10 -2
- data/src/agent/Core/ApplicationPool/Group/StateInspection.cpp +15 -4
- data/src/agent/Core/ApplicationPool/Group/Verification.cpp +10 -2
- data/src/agent/Core/ApplicationPool/Group.h +19 -8
- data/src/agent/Core/ApplicationPool/Implementation.cpp +2 -3
- data/src/agent/Core/ApplicationPool/Options.h +36 -13
- data/src/agent/Core/ApplicationPool/Pool/AnalyticsCollection.cpp +7 -2
- data/src/agent/Core/ApplicationPool/Pool/GarbageCollection.cpp +8 -3
- data/src/agent/Core/ApplicationPool/Pool/GeneralUtils.cpp +7 -2
- data/src/agent/Core/ApplicationPool/Pool/GroupUtils.cpp +7 -2
- data/src/agent/Core/ApplicationPool/Pool/InitializationAndShutdown.cpp +7 -2
- data/src/agent/Core/ApplicationPool/Pool/Miscellaneous.cpp +7 -2
- data/src/agent/Core/ApplicationPool/Pool/ProcessUtils.cpp +8 -3
- data/src/agent/Core/ApplicationPool/Pool/StateInspection.cpp +18 -4
- data/src/agent/Core/ApplicationPool/Pool.h +12 -6
- data/src/agent/Core/ApplicationPool/Process.cpp +2 -2
- data/src/agent/Core/ApplicationPool/Process.h +27 -8
- data/src/agent/Core/ApplicationPool/Session.h +8 -3
- data/src/agent/Core/ApplicationPool/Socket.h +2 -2
- data/src/agent/Core/ApplicationPool/TestSession.h +2 -2
- data/src/agent/Core/Config.h +39 -8
- data/src/agent/Core/ConfigChange.cpp +2 -2
- data/src/agent/Core/ConfigChange.h +2 -2
- data/src/agent/Core/Controller/AppResponse.h +2 -3
- data/src/agent/Core/Controller/BufferBody.cpp +2 -2
- data/src/agent/Core/Controller/CheckoutSession.cpp +50 -16
- data/src/agent/Core/Controller/Client.h +2 -2
- data/src/agent/Core/Controller/Config.cpp +2 -2
- data/src/agent/Core/Controller/Config.h +55 -13
- data/src/agent/Core/Controller/ForwardResponse.cpp +15 -2
- data/src/agent/Core/Controller/Hooks.cpp +2 -2
- data/src/agent/Core/Controller/Implementation.cpp +2 -2
- data/src/agent/Core/Controller/InitRequest.cpp +21 -10
- data/src/agent/Core/Controller/InitializationAndShutdown.cpp +5 -2
- data/src/agent/Core/Controller/InternalUtils.cpp +34 -8
- data/src/agent/Core/Controller/Miscellaneous.cpp +2 -2
- data/src/agent/Core/Controller/Request.h +2 -2
- data/src/agent/Core/Controller/SendRequest.cpp +4 -4
- data/src/agent/Core/Controller/StateInspection.cpp +2 -2
- data/src/agent/Core/Controller/TurboCaching.h +2 -2
- data/src/agent/Core/Controller.h +8 -3
- data/src/agent/Core/CoreMain.cpp +78 -54
- data/src/agent/Core/OptionParser.h +23 -2
- data/src/agent/Core/ResponseCache.h +5 -4
- data/src/agent/Core/SecurityUpdateChecker.h +7 -7
- data/src/agent/Core/SpawningKit/Config/AutoGeneratedCode.h +22 -2
- data/src/agent/Core/SpawningKit/Config/AutoGeneratedCode.h.cxxcodebuilder +2 -2
- data/src/agent/Core/SpawningKit/Config.h +26 -2
- data/src/agent/Core/SpawningKit/Context.h +3 -2
- data/src/agent/Core/SpawningKit/DirectSpawner.h +2 -2
- data/src/agent/Core/SpawningKit/DummySpawner.h +2 -2
- data/src/agent/Core/SpawningKit/ErrorRenderer.h +7 -2
- data/src/agent/Core/SpawningKit/Exceptions.h +2 -2
- data/src/agent/Core/SpawningKit/Factory.h +2 -2
- data/src/agent/Core/SpawningKit/Handshake/BackgroundIOCapturer.h +3 -3
- data/src/agent/Core/SpawningKit/Handshake/Perform.h +8 -7
- data/src/agent/Core/SpawningKit/Handshake/Prepare.h +8 -56
- data/src/agent/Core/SpawningKit/Handshake/Session.h +5 -2
- data/src/agent/Core/SpawningKit/Handshake/WorkDir.h +12 -6
- data/src/agent/Core/SpawningKit/Journey.h +2 -2
- data/src/agent/Core/SpawningKit/PipeWatcher.h +21 -6
- data/src/agent/Core/SpawningKit/Result/AutoGeneratedCode.h +2 -2
- data/src/agent/Core/SpawningKit/Result/AutoGeneratedCode.h.cxxcodebuilder +2 -2
- data/src/agent/Core/SpawningKit/Result.h +2 -2
- data/src/agent/Core/SpawningKit/SmartSpawner.h +9 -5
- data/src/agent/Core/SpawningKit/Spawner.h +29 -7
- data/src/agent/Core/SpawningKit/UserSwitchingRules.h +17 -10
- data/src/agent/Core/TelemetryCollector.h +4 -3
- data/src/agent/ExecHelper/ExecHelperMain.cpp +12 -14
- data/src/agent/FileReadHelper/FileReadHelperMain.cpp +195 -0
- data/src/agent/MainFunctions.h +38 -0
- data/src/agent/Shared/ApiAccountUtils.h +2 -2
- data/src/agent/Shared/ApiServerUtils.h +6 -5
- data/src/agent/Shared/ApplicationPoolApiKey.h +4 -2
- data/src/agent/Shared/Fundamentals/AbortHandler.cpp +90 -11
- data/src/agent/Shared/Fundamentals/AbortHandler.h +4 -2
- data/src/agent/Shared/Fundamentals/Initialization.cpp +12 -6
- data/src/agent/Shared/Fundamentals/Initialization.h +5 -5
- data/src/agent/Shared/Fundamentals/Utils.cpp +2 -2
- data/src/agent/Shared/Fundamentals/Utils.h +2 -2
- data/src/agent/SpawnEnvSetupper/SpawnEnvSetupperMain.cpp +36 -12
- data/src/agent/SystemMetrics/SystemMetricsMain.cpp +3 -2
- data/src/agent/TempDirToucher/TempDirToucherMain.cpp +10 -6
- data/src/agent/Watchdog/AgentWatcher.cpp +2 -2
- data/src/agent/Watchdog/ApiServer.h +3 -3
- data/src/agent/Watchdog/Config.h +22 -3
- data/src/agent/Watchdog/CoreWatcher.cpp +2 -2
- data/src/agent/Watchdog/InstanceDirToucher.cpp +3 -3
- data/src/agent/Watchdog/WatchdogMain.cpp +23 -22
- data/src/apache2_module/Bucket.cpp +2 -2
- data/src/apache2_module/Bucket.h +2 -2
- data/src/apache2_module/CBindings.cpp +2 -2
- data/src/apache2_module/Config.cpp +3 -3
- data/src/apache2_module/Config.h +2 -2
- data/src/apache2_module/ConfigGeneral/AutoGeneratedDefinitions.cpp +68 -28
- data/src/apache2_module/ConfigGeneral/AutoGeneratedDefinitions.cpp.cxxcodebuilder +2 -2
- data/src/apache2_module/ConfigGeneral/AutoGeneratedManifestDefaultsInitialization.cpp +32 -2
- data/src/apache2_module/ConfigGeneral/AutoGeneratedManifestDefaultsInitialization.cpp.cxxcodebuilder +2 -2
- data/src/apache2_module/ConfigGeneral/AutoGeneratedSetterFuncs.cpp +121 -3
- data/src/apache2_module/ConfigGeneral/AutoGeneratedSetterFuncs.cpp.cxxcodebuilder +2 -2
- data/src/apache2_module/ConfigGeneral/Common.h +2 -2
- data/src/apache2_module/ConfigGeneral/ManifestGeneration.h +7 -5
- data/src/apache2_module/ConfigGeneral/SetterFuncs.h +2 -2
- data/src/apache2_module/DirConfig/AutoGeneratedCreateFunction.cpp +25 -2
- data/src/apache2_module/DirConfig/AutoGeneratedCreateFunction.cpp.cxxcodebuilder +2 -2
- data/src/apache2_module/DirConfig/AutoGeneratedHeaderSerialization.cpp +14 -2
- data/src/apache2_module/DirConfig/AutoGeneratedHeaderSerialization.cpp.cxxcodebuilder +2 -2
- data/src/apache2_module/DirConfig/AutoGeneratedManifestGeneration.cpp +65 -2
- data/src/apache2_module/DirConfig/AutoGeneratedManifestGeneration.cpp.cxxcodebuilder +2 -2
- data/src/apache2_module/DirConfig/AutoGeneratedMergeFunction.cpp +37 -2
- data/src/apache2_module/DirConfig/AutoGeneratedMergeFunction.cpp.cxxcodebuilder +2 -2
- data/src/apache2_module/DirConfig/AutoGeneratedStruct.h +84 -4
- data/src/apache2_module/DirConfig/AutoGeneratedStruct.h.cxxcodebuilder +5 -2
- data/src/apache2_module/DirectoryMapper.h +16 -5
- data/src/apache2_module/Hooks.cpp +51 -7
- data/src/apache2_module/Hooks.h +2 -2
- data/src/apache2_module/ServerConfig/AutoGeneratedManifestGeneration.cpp +31 -2
- data/src/apache2_module/ServerConfig/AutoGeneratedManifestGeneration.cpp.cxxcodebuilder +2 -2
- data/src/apache2_module/ServerConfig/AutoGeneratedStruct.h +57 -21
- data/src/apache2_module/ServerConfig/AutoGeneratedStruct.h.cxxcodebuilder +4 -3
- data/src/apache2_module/Utils.h +2 -2
- data/src/apache2_module/mod_passenger.c +2 -2
- data/src/cxx_supportlib/Algorithms/Hasher.cpp +2 -2
- data/src/cxx_supportlib/Algorithms/Hasher.h +2 -2
- data/src/cxx_supportlib/Algorithms/MovingAverage.h +2 -8
- data/src/cxx_supportlib/AppLocalConfigFileUtils.h +148 -0
- data/src/cxx_supportlib/AppTypeDetector/CBindings.cpp +14 -3
- data/src/cxx_supportlib/AppTypeDetector/CBindings.h +4 -2
- data/src/cxx_supportlib/AppTypeDetector/Detector.h +40 -6
- data/src/cxx_supportlib/BackgroundEventLoop.cpp +7 -3
- data/src/cxx_supportlib/BackgroundEventLoop.h +2 -2
- data/src/cxx_supportlib/ConfigKit/AsyncUtils.h +2 -2
- data/src/cxx_supportlib/ConfigKit/Common.h +3 -3
- data/src/cxx_supportlib/ConfigKit/ConfigKit.h +2 -2
- data/src/cxx_supportlib/ConfigKit/DummyTranslator.h +2 -2
- data/src/cxx_supportlib/ConfigKit/PrefixTranslator.h +2 -2
- data/src/cxx_supportlib/ConfigKit/Schema.h +3 -3
- data/src/cxx_supportlib/ConfigKit/SchemaUtils.h +2 -2
- data/src/cxx_supportlib/ConfigKit/Store.h +2 -2
- data/src/cxx_supportlib/ConfigKit/SubComponentUtils.h +2 -2
- data/src/cxx_supportlib/ConfigKit/TableTranslator.h +2 -2
- data/src/cxx_supportlib/ConfigKit/Translator.h +3 -3
- data/src/cxx_supportlib/ConfigKit/Utils.h +2 -2
- data/src/cxx_supportlib/Constants.h +7 -5
- data/src/cxx_supportlib/Constants.h.cxxcodebuilder +2 -2
- data/src/cxx_supportlib/DataStructures/HashMap.h +2 -2
- data/src/cxx_supportlib/DataStructures/HashedStaticString.h +4 -2
- data/src/cxx_supportlib/DataStructures/LString.cpp +2 -2
- data/src/cxx_supportlib/DataStructures/LString.h +6 -2
- data/src/cxx_supportlib/DataStructures/StringKeyTable.h +3 -3
- data/src/cxx_supportlib/DataStructures/StringMap.h +2 -3
- data/src/cxx_supportlib/Exceptions.cpp +2 -2
- data/src/cxx_supportlib/Exceptions.h +2 -2
- data/src/cxx_supportlib/FileDescriptor.h +10 -2
- data/src/cxx_supportlib/FileTools/FileManip.cpp +12 -3
- data/src/cxx_supportlib/FileTools/FileManip.h +18 -2
- data/src/cxx_supportlib/FileTools/LargeFiles.h +2 -2
- data/src/cxx_supportlib/FileTools/PathManip.cpp +13 -4
- data/src/cxx_supportlib/FileTools/PathManip.h +2 -2
- data/src/cxx_supportlib/FileTools/PathManipCBindings.cpp +2 -2
- data/src/cxx_supportlib/FileTools/PathManipCBindings.h +2 -2
- data/src/cxx_supportlib/FileTools/PathSecurityCheck.cpp +2 -2
- data/src/cxx_supportlib/FileTools/PathSecurityCheck.h +2 -2
- data/src/cxx_supportlib/Hooks.h +3 -2
- data/src/cxx_supportlib/IOTools/BufferedIO.h +3 -3
- data/src/cxx_supportlib/IOTools/IOUtils.cpp +8 -12
- data/src/cxx_supportlib/IOTools/IOUtils.h +2 -2
- data/src/cxx_supportlib/IOTools/MessageIO.h +3 -3
- data/src/cxx_supportlib/IOTools/MessageSerialization.h +2 -2
- data/src/cxx_supportlib/InstanceDirectory.h +2 -2
- data/src/cxx_supportlib/Integrations/LibevJsonUtils.h +5 -5
- data/src/cxx_supportlib/JsonTools/Autocast.h +2 -2
- data/src/cxx_supportlib/JsonTools/CBindings.cpp +2 -4
- data/src/cxx_supportlib/JsonTools/CBindings.h +2 -2
- data/src/cxx_supportlib/JsonTools/JsonUtils.h +6 -6
- data/src/cxx_supportlib/LoggingKit/Assert.h +2 -2
- data/src/cxx_supportlib/LoggingKit/Config.h +4 -2
- data/src/cxx_supportlib/LoggingKit/Context.h +18 -23
- data/src/cxx_supportlib/LoggingKit/Forward.h +2 -4
- data/src/cxx_supportlib/LoggingKit/Implementation.cpp +53 -83
- data/src/cxx_supportlib/LoggingKit/Logging.h +2 -2
- data/src/cxx_supportlib/LoggingKit/LoggingKit.h +2 -2
- data/src/cxx_supportlib/LveLoggingDecorator.h +2 -2
- data/src/cxx_supportlib/MemoryKit/mbuf.cpp +14 -6
- data/src/cxx_supportlib/MemoryKit/mbuf.h +3 -3
- data/src/cxx_supportlib/MemoryKit/palloc.cpp +1 -1
- data/src/cxx_supportlib/MemoryKit/palloc.h +1 -1
- data/src/cxx_supportlib/ProcessManagement/Ruby.cpp +2 -2
- data/src/cxx_supportlib/ProcessManagement/Ruby.h +2 -2
- data/src/cxx_supportlib/ProcessManagement/Spawn.cpp +2 -2
- data/src/cxx_supportlib/ProcessManagement/Spawn.h +2 -2
- data/src/cxx_supportlib/ProcessManagement/Utils.cpp +3 -3
- data/src/cxx_supportlib/ProcessManagement/Utils.h +2 -2
- data/src/cxx_supportlib/RandomGenerator.h +2 -2
- data/src/cxx_supportlib/ResourceLocator.h +3 -3
- data/src/cxx_supportlib/SafeLibev.h +6 -6
- data/src/cxx_supportlib/SecurityKit/Crypto.cpp +5 -96
- data/src/cxx_supportlib/SecurityKit/Crypto.h +2 -10
- data/src/cxx_supportlib/SecurityKit/MemZeroGuard.h +2 -2
- data/src/cxx_supportlib/ServerKit/AcceptLoadBalancer.h +3 -3
- data/src/cxx_supportlib/ServerKit/Channel.h +2 -2
- data/src/cxx_supportlib/ServerKit/Client.h +2 -2
- data/src/cxx_supportlib/ServerKit/ClientRef.h +2 -2
- data/src/cxx_supportlib/ServerKit/Config.h +2 -2
- data/src/cxx_supportlib/ServerKit/Context.h +8 -2
- data/src/cxx_supportlib/ServerKit/CookieUtils.h +2 -2
- data/src/cxx_supportlib/ServerKit/Errors.h +5 -4
- data/src/cxx_supportlib/ServerKit/FdSinkChannel.h +2 -2
- data/src/cxx_supportlib/ServerKit/FdSourceChannel.h +2 -2
- data/src/cxx_supportlib/ServerKit/FileBufferedChannel.h +2 -2
- data/src/cxx_supportlib/ServerKit/FileBufferedFdSinkChannel.h +2 -2
- data/src/cxx_supportlib/ServerKit/HeaderTable.h +2 -2
- data/src/cxx_supportlib/ServerKit/Hooks.h +4 -4
- data/src/cxx_supportlib/ServerKit/HttpChunkedBodyParser.h +3 -3
- data/src/cxx_supportlib/ServerKit/HttpChunkedBodyParserState.h +2 -2
- data/src/cxx_supportlib/ServerKit/HttpClient.h +2 -2
- data/src/cxx_supportlib/ServerKit/HttpHeaderParser.h +103 -71
- data/src/cxx_supportlib/ServerKit/HttpHeaderParserState.h +6 -3
- data/src/cxx_supportlib/ServerKit/HttpRequest.h +4 -4
- data/src/cxx_supportlib/ServerKit/HttpRequestRef.h +2 -2
- data/src/cxx_supportlib/ServerKit/HttpServer.h +20 -14
- data/src/cxx_supportlib/ServerKit/Implementation.cpp +2 -2
- data/src/cxx_supportlib/ServerKit/Server.h +2 -8
- data/src/cxx_supportlib/ServerKit/llerrors.h +84 -0
- data/src/cxx_supportlib/ServerKit/llhttp.c +10168 -0
- data/src/cxx_supportlib/ServerKit/llhttp.h +903 -0
- data/src/cxx_supportlib/ServerKit/llhttp_api.c +510 -0
- data/src/cxx_supportlib/ServerKit/llhttp_http.c +170 -0
- data/src/cxx_supportlib/ServerKit/llversion.h +12 -0
- data/src/cxx_supportlib/ServerKit/url_parser.c +574 -0
- data/src/cxx_supportlib/ServerKit/url_parser.h +74 -0
- data/src/cxx_supportlib/StaticString.h +7 -3
- data/src/cxx_supportlib/StrIntTools/DateParsing.h +3 -3
- data/src/cxx_supportlib/StrIntTools/StrIntUtils.cpp +14 -5
- data/src/cxx_supportlib/StrIntTools/StrIntUtils.h +7 -2
- data/src/cxx_supportlib/StrIntTools/StrIntUtilsNoStrictAliasing.cpp +2 -2
- data/src/cxx_supportlib/StrIntTools/StringScanning.h +2 -2
- data/src/cxx_supportlib/StrIntTools/Template.h +2 -2
- data/src/cxx_supportlib/SystemTools/ContainerHelpers.h +59 -4
- data/src/cxx_supportlib/SystemTools/ProcessMetricsCollector.h +3 -3
- data/src/cxx_supportlib/SystemTools/SystemMetricsCollector.h +4 -4
- data/src/cxx_supportlib/SystemTools/SystemTime.cpp +2 -2
- data/src/cxx_supportlib/SystemTools/SystemTime.h +2 -2
- data/src/cxx_supportlib/SystemTools/UserDatabase.cpp +16 -16
- data/src/cxx_supportlib/SystemTools/UserDatabase.h +8 -12
- data/src/cxx_supportlib/Utils/AnsiColorConstants.h +13 -11
- data/src/cxx_supportlib/Utils/AsyncSignalSafeUtils.h +4 -2
- data/src/cxx_supportlib/Utils/BlockingQueue.h +2 -2
- data/src/cxx_supportlib/Utils/CachedFileStat.cpp +2 -2
- data/src/cxx_supportlib/Utils/CachedFileStat.h +2 -2
- data/src/cxx_supportlib/Utils/CachedFileStat.hpp +2 -2
- data/src/cxx_supportlib/Utils/ClassUtils.h +2 -2
- data/src/cxx_supportlib/Utils/Curl.h +2 -2
- data/src/cxx_supportlib/Utils/FastStringStream.h +2 -2
- data/src/cxx_supportlib/Utils/FileChangeChecker.h +2 -2
- data/src/cxx_supportlib/Utils/HttpConstants.h +3 -3
- data/src/cxx_supportlib/Utils/IniFile.h +2 -2
- data/src/cxx_supportlib/Utils/MessagePassing.h +2 -2
- data/src/cxx_supportlib/Utils/OptionParsing.h +2 -2
- data/src/cxx_supportlib/Utils/ReleaseableScopedPointer.h +2 -2
- data/src/cxx_supportlib/Utils/ScopeGuard.h +2 -2
- data/src/cxx_supportlib/Utils/SpeedMeter.h +2 -5
- data/src/cxx_supportlib/Utils/Timer.h +2 -2
- data/src/cxx_supportlib/Utils/VariantMap.h +2 -2
- data/src/cxx_supportlib/Utils.cpp +3 -3
- data/src/cxx_supportlib/Utils.h +2 -2
- data/src/cxx_supportlib/WatchdogLauncher.cpp +2 -2
- data/src/cxx_supportlib/WatchdogLauncher.h +3 -5
- data/src/cxx_supportlib/WebSocketCommandReverseServer.h +22 -21
- data/src/cxx_supportlib/WrapperRegistry/CBindings.cpp +2 -2
- data/src/cxx_supportlib/WrapperRegistry/CBindings.h +2 -2
- data/src/cxx_supportlib/WrapperRegistry/Entry.h +2 -2
- data/src/cxx_supportlib/WrapperRegistry/Registry.h +2 -2
- data/src/cxx_supportlib/oxt/backtrace.hpp +1 -1
- data/src/cxx_supportlib/oxt/detail/backtrace_disabled.hpp +1 -1
- data/src/cxx_supportlib/oxt/detail/backtrace_enabled.hpp +1 -1
- data/src/cxx_supportlib/oxt/detail/context.hpp +1 -1
- data/src/cxx_supportlib/oxt/detail/spin_lock_darwin.hpp +1 -1
- data/src/cxx_supportlib/oxt/detail/spin_lock_gcc_x86.hpp +1 -1
- data/src/cxx_supportlib/oxt/detail/spin_lock_portable.hpp +1 -1
- data/src/cxx_supportlib/oxt/detail/spin_lock_pthreads.hpp +1 -1
- data/src/cxx_supportlib/oxt/detail/tracable_exception_disabled.hpp +1 -1
- data/src/cxx_supportlib/oxt/detail/tracable_exception_enabled.hpp +1 -1
- data/src/cxx_supportlib/oxt/dynamic_thread_group.hpp +6 -2
- data/src/cxx_supportlib/oxt/implementation.cpp +13 -3
- data/src/cxx_supportlib/oxt/initialize.hpp +1 -1
- data/src/cxx_supportlib/oxt/macros.hpp +1 -1
- data/src/cxx_supportlib/oxt/spin_lock.hpp +1 -1
- data/src/cxx_supportlib/oxt/system_calls.cpp +22 -15
- data/src/cxx_supportlib/oxt/system_calls.hpp +1 -1
- data/src/cxx_supportlib/oxt/thread.hpp +3 -3
- data/src/cxx_supportlib/oxt/tracable_exception.hpp +1 -1
- data/src/cxx_supportlib/vendor-copy/adhoc_lve.h +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/compare.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/detail/case_conv.hpp +5 -2
- data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/detail/classification.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/detail/find_format_all.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/detail/find_iterator.hpp +11 -3
- data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/detail/finder.hpp +15 -15
- data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/detail/formatter.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/detail/trim.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/find_format.hpp +1 -2
- data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/find_iterator.hpp +27 -1
- data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/finder.hpp +0 -4
- data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/formatter.hpp +0 -1
- data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/iter_find.hpp +8 -0
- data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/predicate.hpp +4 -3
- data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/split.hpp +12 -0
- data/src/cxx_supportlib/vendor-modified/boost/align/aligned_alloc.hpp +47 -0
- data/src/cxx_supportlib/vendor-modified/boost/align/detail/aligned_alloc_posix.hpp +41 -0
- data/src/cxx_supportlib/vendor-modified/boost/align/detail/aligned_alloc_sunos.hpp +34 -0
- data/src/cxx_supportlib/vendor-modified/boost/align/detail/is_alignment.hpp +28 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/any_completion_executor.hpp +338 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/any_completion_handler.hpp +824 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/any_io_executor.hpp +353 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/append.hpp +67 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/as_tuple.hpp +154 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/associated_allocator.hpp +115 -32
- data/src/cxx_supportlib/vendor-modified/boost/asio/associated_cancellation_slot.hpp +223 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/associated_executor.hpp +119 -33
- data/src/cxx_supportlib/vendor-modified/boost/asio/associated_immediate_executor.hpp +283 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/associator.hpp +37 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/async_result.hpp +834 -107
- data/src/cxx_supportlib/vendor-modified/boost/asio/awaitable.hpp +144 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_datagram_socket.hpp +651 -329
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_deadline_timer.hpp +206 -124
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_file.hpp +826 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_io_object.hpp +4 -8
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_random_access_file.hpp +691 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_raw_socket.hpp +657 -331
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_readable_pipe.hpp +628 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_seq_packet_socket.hpp +376 -171
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_serial_port.hpp +413 -114
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_signal_set.hpp +325 -68
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket.hpp +427 -248
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket_acceptor.hpp +1239 -517
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket_iostream.hpp +22 -121
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket_streambuf.hpp +16 -81
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_stream_file.hpp +746 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_stream_socket.hpp +494 -252
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_streambuf.hpp +13 -15
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_streambuf_fwd.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_waitable_timer.hpp +251 -132
- data/src/cxx_supportlib/vendor-modified/boost/asio/basic_writable_pipe.hpp +624 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/bind_allocator.hpp +598 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/bind_cancellation_slot.hpp +615 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/bind_executor.hpp +235 -182
- data/src/cxx_supportlib/vendor-modified/boost/asio/bind_immediate_executor.hpp +618 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffer.hpp +961 -370
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffer_registration.hpp +320 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_read_stream.hpp +55 -39
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_read_stream_fwd.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_stream.hpp +61 -47
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_stream_fwd.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_write_stream.hpp +55 -39
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffered_write_stream_fwd.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/buffers_iterator.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/cancel_after.hpp +303 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/cancel_at.hpp +296 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/cancellation_signal.hpp +247 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/cancellation_state.hpp +237 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/cancellation_type.hpp +159 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/co_composed.hpp +1323 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/co_spawn.hpp +525 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/completion_condition.hpp +50 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/compose.hpp +130 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/composed.hpp +415 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/connect.hpp +468 -181
- data/src/cxx_supportlib/vendor-modified/boost/asio/connect_pipe.hpp +85 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/consign.hpp +77 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/coroutine.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/deadline_timer.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/default_completion_token.hpp +91 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/defer.hpp +154 -43
- data/src/cxx_supportlib/vendor-modified/boost/asio/deferred.hpp +721 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detached.hpp +107 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/array.hpp +2 -10
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/array_fwd.hpp +2 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/assert.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/atomic_count.hpp +24 -10
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/base_from_cancellation_state.hpp +166 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/base_from_completion_cond.hpp +4 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/bind_handler.hpp +265 -370
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/blocking_executor_op.hpp +109 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/buffer_resize_guard.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/buffer_sequence_adapter.hpp +300 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/buffered_stream_storage.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/call_stack.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/chrono.hpp +2 -23
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/chrono_time_traits.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/completion_handler.hpp +12 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/completion_message.hpp +129 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/completion_payload.hpp +222 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/completion_payload_handler.hpp +81 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/composed_work.hpp +254 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/concurrency_hint.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/conditionally_enabled_event.hpp +9 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/conditionally_enabled_mutex.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/config.hpp +700 -722
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/consuming_buffers.hpp +40 -11
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/cstddef.hpp +1 -5
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/cstdint.hpp +3 -23
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/date_time_fwd.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/deadline_timer_service.hpp +74 -13
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/dependent_type.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/descriptor_ops.hpp +65 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/descriptor_read_op.hpp +76 -16
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/descriptor_write_op.hpp +75 -16
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/dev_poll_reactor.hpp +36 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/epoll_reactor.hpp +36 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/event.hpp +3 -5
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/eventfd_select_interrupter.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/exception.hpp +31 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/executor_function.hpp +154 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/executor_op.hpp +6 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/fd_set_adapter.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/fenced_block.hpp +3 -43
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/functional.hpp +5 -10
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/future.hpp +32 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/global.hpp +3 -5
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_alloc_helpers.hpp +31 -145
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_cont_helpers.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_tracking.hpp +27 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_type_requirements.hpp +24 -27
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_work.hpp +452 -36
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/hash_map.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/buffer_sequence_adapter.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/descriptor_ops.ipp +605 -85
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/dev_poll_reactor.hpp +21 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/dev_poll_reactor.ipp +28 -5
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/epoll_reactor.hpp +21 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/epoll_reactor.ipp +47 -8
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/eventfd_select_interrupter.ipp +20 -14
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/handler_tracking.ipp +47 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/io_uring_descriptor_service.ipp +207 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/io_uring_file_service.ipp +142 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/io_uring_service.hpp +114 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/io_uring_service.ipp +916 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/io_uring_socket_service_base.ipp +251 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/kqueue_reactor.hpp +21 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/kqueue_reactor.ipp +49 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/null_event.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/pipe_select_interrupter.ipp +11 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/posix_event.ipp +8 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/posix_mutex.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/posix_serial_port_service.ipp +170 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/posix_thread.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/posix_tss_ptr.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/reactive_descriptor_service.ipp +23 -13
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/reactive_socket_service_base.ipp +32 -20
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/resolver_service_base.ipp +39 -35
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/scheduler.ipp +110 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/select_reactor.hpp +25 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/select_reactor.ipp +74 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/service_registry.hpp +2 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/service_registry.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/signal_set_service.ipp +185 -28
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/socket_ops.ipp +828 -355
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/socket_select_interrupter.ipp +19 -10
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/strand_executor_service.hpp +209 -42
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/strand_executor_service.ipp +25 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/strand_service.hpp +8 -40
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/strand_service.ipp +34 -9
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/thread_context.ipp +37 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/throw_error.ipp +10 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/timer_queue_ptime.ipp +17 -11
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/timer_queue_set.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/initiate_defer.hpp +209 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/initiate_dispatch.hpp +195 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/initiate_post.hpp +209 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/initiation_base.hpp +64 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_control.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_object_impl.hpp +179 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_descriptor_read_at_op.hpp +197 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_descriptor_read_op.hpp +192 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_descriptor_service.hpp +689 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_descriptor_write_at_op.hpp +191 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_descriptor_write_op.hpp +187 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_file_service.hpp +263 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_null_buffers_op.hpp +116 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_operation.hpp +86 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_service.hpp +321 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_accept_op.hpp +282 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_connect_op.hpp +142 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_recv_op.hpp +207 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_recvfrom_op.hpp +208 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_recvmsg_op.hpp +194 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_send_op.hpp +193 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_sendto_op.hpp +196 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_service.hpp +631 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_socket_service_base.hpp +665 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/io_uring_wait_op.hpp +114 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/is_buffer_sequence.hpp +89 -32
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/is_executor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/keyword_tss_ptr.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/kqueue_reactor.hpp +37 -8
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/limits.hpp +1 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/local_free_on_block_exit.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/memory.hpp +83 -27
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/mutex.hpp +3 -5
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/non_const_lvalue.hpp +45 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/noncopyable.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_event.hpp +7 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_fenced_block.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_global.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_mutex.hpp +1 -5
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_reactor.hpp +19 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_signal_blocker.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_socket_service.hpp +63 -52
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_static_mutex.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_thread.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/null_tss_ptr.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/object_pool.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/op_queue.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/operation.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/pipe_select_interrupter.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/pop_options.hpp +30 -8
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_event.hpp +15 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_fd_set_adapter.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_global.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_mutex.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_serial_port_service.hpp +251 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_signal_blocker.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_static_mutex.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_thread.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/posix_tss_ptr.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/push_options.hpp +60 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_descriptor_service.hpp +237 -55
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_null_buffers_op.hpp +49 -8
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_accept_op.hpp +139 -33
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_connect_op.hpp +59 -10
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_recv_op.hpp +81 -19
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_recvfrom_op.hpp +81 -16
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_recvmsg_op.hpp +65 -13
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_send_op.hpp +86 -20
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_sendto_op.hpp +81 -17
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_service.hpp +198 -91
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_service_base.hpp +319 -75
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_wait_op.hpp +49 -8
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor.hpp +29 -5
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor_op.hpp +8 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor_op_queue.hpp +45 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/recycling_allocator.hpp +26 -16
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/regex_fwd.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolve_endpoint_op.hpp +35 -17
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolve_op.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolve_query_op.hpp +35 -19
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolver_service.hpp +24 -22
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolver_service_base.hpp +37 -19
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scheduler.hpp +36 -8
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scheduler_operation.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scheduler_task.hpp +51 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scheduler_thread_info.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scoped_lock.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/scoped_ptr.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/select_interrupter.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/select_reactor.hpp +59 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/service_registry.hpp +2 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_blocker.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_handler.hpp +11 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_init.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_op.hpp +5 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/signal_set_service.hpp +90 -15
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_holder.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_ops.hpp +71 -33
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_option.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_select_interrupter.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/socket_types.hpp +12 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/source_location.hpp +47 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/static_mutex.hpp +3 -5
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_event.hpp +13 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_fenced_block.hpp +1 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_global.hpp +1 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_mutex.hpp +1 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_static_mutex.hpp +1 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/std_thread.hpp +1 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/strand_executor_service.hpp +36 -5
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/strand_service.hpp +8 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/string_view.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/thread.hpp +7 -9
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/thread_context.hpp +10 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/thread_group.hpp +11 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/thread_info_base.hpp +164 -25
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/throw_error.hpp +18 -9
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/throw_exception.hpp +7 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timed_cancel_op.hpp +363 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue.hpp +33 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue_base.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue_ptime.hpp +6 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue_set.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_scheduler.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_scheduler_fwd.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/tss_ptr.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/type_traits.hpp +132 -40
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/utility.hpp +85 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/wait_handler.hpp +13 -8
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/wait_op.hpp +6 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/winsock_init.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/work_dispatcher.hpp +85 -14
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/wrapped_handler.hpp +33 -129
- data/src/cxx_supportlib/vendor-modified/boost/asio/dispatch.hpp +136 -47
- data/src/cxx_supportlib/vendor-modified/boost/asio/error.hpp +30 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/allocator.hpp +280 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/any_executor.hpp +1935 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/bad_executor.hpp +48 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/blocking.hpp +1362 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/blocking_adaptation.hpp +1082 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/context.hpp +193 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/context_as.hpp +192 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/executor.hpp +118 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/impl/bad_executor.ipp +42 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/invocable_archetype.hpp +45 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/mapping.hpp +1004 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/occupancy.hpp +186 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/outstanding_work.hpp +755 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/prefer_only.hpp +330 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution/relationship.hpp +753 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution.hpp +33 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/execution_context.hpp +3 -26
- data/src/cxx_supportlib/vendor-modified/boost/asio/executor.hpp +66 -44
- data/src/cxx_supportlib/vendor-modified/boost/asio/executor_work_guard.hpp +239 -47
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/append.hpp +38 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/as_single.hpp +134 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/as_tuple.hpp +38 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/awaitable_operators.hpp +538 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/basic_channel.hpp +516 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/basic_concurrent_channel.hpp +516 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/cancellation_condition.hpp +154 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/channel.hpp +72 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/channel_error.hpp +88 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/channel_traits.hpp +303 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/co_composed.hpp +35 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/co_spawn.hpp +138 -177
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/concurrent_channel.hpp +72 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/coro.hpp +295 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/coro_traits.hpp +230 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/deferred.hpp +38 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_operation.hpp +363 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_receive_op.hpp +128 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_send_functions.hpp +202 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_send_op.hpp +149 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/channel_service.hpp +681 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/coro_completion_handler.hpp +171 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/coro_promise_allocator.hpp +142 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/has_signature.hpp +56 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/impl/channel_service.hpp +625 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/partial_promise.hpp +199 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/as_single.hpp +183 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/channel_error.ipp +63 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/coro.hpp +1224 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/parallel_group.hpp +790 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/promise.hpp +257 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/use_coro.hpp +216 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/use_promise.hpp +68 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/parallel_group.hpp +457 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/prepend.hpp +38 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/promise.hpp +226 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/use_coro.hpp +191 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/use_promise.hpp +113 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/file_base.hpp +168 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/basic_endpoint.hpp +2 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/datagram_protocol.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/detail/endpoint.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/detail/impl/endpoint.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/raw_protocol.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/seq_packet_protocol.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/generic/stream_protocol.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/handler_continuation_hook.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/high_resolution_timer.hpp +1 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/immediate.hpp +144 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/any_completion_executor.ipp +128 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/any_io_executor.ipp +136 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/append.hpp +171 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/as_tuple.hpp +278 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/awaitable.hpp +1198 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/buffered_read_stream.hpp +160 -185
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/buffered_write_stream.hpp +154 -181
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/cancel_after.hpp +270 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/cancel_at.hpp +270 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/cancellation_signal.ipp +98 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/co_spawn.hpp +459 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/connect.hpp +281 -438
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/connect_pipe.hpp +75 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/connect_pipe.ipp +151 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/consign.hpp +146 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/deferred.hpp +149 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/detached.hpp +79 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/error.ipp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/execution_context.hpp +7 -37
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/execution_context.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/executor.hpp +72 -141
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/executor.ipp +8 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/io_context.hpp +220 -132
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/io_context.ipp +5 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/multiple_exceptions.ipp +47 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/prepend.hpp +172 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read.hpp +529 -342
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read_at.hpp +202 -280
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read_until.hpp +1840 -672
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/redirect_error.hpp +289 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/serial_port_base.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/serial_port_base.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/spawn.hpp +1183 -318
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/src.hpp +15 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/system_context.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/system_context.ipp +26 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/system_executor.hpp +115 -21
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/thread_pool.hpp +198 -48
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/thread_pool.ipp +74 -8
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/use_awaitable.hpp +303 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/use_future.hpp +186 -417
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/write.hpp +446 -340
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/write_at.hpp +171 -263
- data/src/cxx_supportlib/vendor-modified/boost/asio/io_context.hpp +699 -70
- data/src/cxx_supportlib/vendor-modified/boost/asio/io_context_strand.hpp +87 -75
- data/src/cxx_supportlib/vendor-modified/boost/asio/io_service.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/io_service_strand.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address.hpp +52 -31
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v4.hpp +124 -32
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v4_iterator.hpp +13 -19
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v4_range.hpp +16 -22
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v6.hpp +114 -43
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v6_iterator.hpp +13 -18
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/address_v6_range.hpp +15 -20
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/bad_address_cast.hpp +19 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_endpoint.hpp +46 -27
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver.hpp +337 -243
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver_entry.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver_iterator.hpp +4 -8
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver_query.hpp +17 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/basic_resolver_results.hpp +12 -16
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/detail/endpoint.hpp +21 -19
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/detail/impl/endpoint.ipp +10 -14
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/detail/socket_option.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/host_name.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/icmp.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address.ipp +23 -22
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address_v4.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address_v4.ipp +11 -15
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address_v6.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/address_v6.ipp +28 -36
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/basic_endpoint.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/host_name.ipp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/network_v4.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/network_v4.ipp +6 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/network_v6.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/impl/network_v6.ipp +6 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/multicast.hpp +8 -8
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/network_v4.hpp +17 -21
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/network_v6.hpp +14 -18
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/resolver_base.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/resolver_query_base.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/tcp.hpp +9 -9
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/udp.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/unicast.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/v6_only.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/is_applicable_property.hpp +63 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/is_contiguous_iterator.hpp +47 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/is_executor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/is_read_buffered.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/is_write_buffered.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/basic_endpoint.hpp +10 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/connect_pair.hpp +14 -19
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/datagram_protocol.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/detail/endpoint.hpp +7 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/detail/impl/endpoint.ipp +10 -8
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/seq_packet_protocol.hpp +86 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/local/stream_protocol.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/asio/multiple_exceptions.hpp +54 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/packaged_task.hpp +4 -64
- data/src/cxx_supportlib/vendor-modified/boost/asio/placeholders.hpp +35 -105
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/basic_descriptor.hpp +273 -82
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/basic_stream_descriptor.hpp +283 -86
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/descriptor.hpp +5 -612
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/descriptor_base.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/stream_descriptor.hpp +3 -326
- data/src/cxx_supportlib/vendor-modified/boost/asio/post.hpp +149 -43
- data/src/cxx_supportlib/vendor-modified/boost/asio/prefer.hpp +581 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/prepend.hpp +68 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/query.hpp +315 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/random_access_file.hpp +37 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/read.hpp +777 -177
- data/src/cxx_supportlib/vendor-modified/boost/asio/read_at.hpp +231 -74
- data/src/cxx_supportlib/vendor-modified/boost/asio/read_until.hpp +1849 -471
- data/src/cxx_supportlib/vendor-modified/boost/asio/readable_pipe.hpp +37 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/recycling_allocator.hpp +140 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/redirect_error.hpp +106 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/registered_buffer.hpp +346 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/require.hpp +437 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/require_concept.hpp +347 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/serial_port.hpp +3 -736
- data/src/cxx_supportlib/vendor-modified/boost/asio/serial_port_base.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/signal_set.hpp +3 -422
- data/src/cxx_supportlib/vendor-modified/boost/asio/signal_set_base.hpp +173 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/socket_base.hpp +26 -26
- data/src/cxx_supportlib/vendor-modified/boost/asio/spawn.hpp +640 -105
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/context.hpp +7 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/context_base.hpp +38 -21
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/buffered_handshake_op.hpp +7 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/engine.hpp +10 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/handshake_op.hpp +7 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/impl/engine.ipp +65 -10
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/impl/openssl_init.ipp +9 -5
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/io.hpp +75 -71
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/openssl_init.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/openssl_types.hpp +5 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/password_callback.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/read_op.hpp +7 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/shutdown_op.hpp +17 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/stream_core.hpp +89 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/verify_callback.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/write_op.hpp +12 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/error.hpp +21 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/host_name_verification.hpp +92 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/context.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/context.ipp +242 -79
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/error.ipp +29 -5
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/host_name_verification.ipp +75 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/rfc2818_verification.ipp +5 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/src.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/rfc2818_verification.hpp +7 -3
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/stream.hpp +423 -142
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/stream_base.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/verify_context.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/verify_mode.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ssl.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/static_thread_pool.hpp +33 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/steady_timer.hpp +1 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/strand.hpp +311 -40
- data/src/cxx_supportlib/vendor-modified/boost/asio/stream_file.hpp +37 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/streambuf.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/system_context.hpp +18 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/system_executor.hpp +570 -28
- data/src/cxx_supportlib/vendor-modified/boost/asio/system_timer.hpp +1 -6
- data/src/cxx_supportlib/vendor-modified/boost/asio/this_coro.hpp +269 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/thread_pool.hpp +773 -42
- data/src/cxx_supportlib/vendor-modified/boost/asio/time_traits.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/equality_comparable.hpp +102 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/execute_member.hpp +106 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/prefer_free.hpp +106 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/prefer_member.hpp +106 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/query_free.hpp +106 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/query_member.hpp +106 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/query_static_constexpr_member.hpp +103 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/require_concept_free.hpp +106 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/require_concept_member.hpp +106 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/require_free.hpp +106 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/require_member.hpp +106 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/static_query.hpp +104 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/static_require.hpp +117 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/traits/static_require_concept.hpp +118 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/ts/buffer.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ts/executor.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/ts/internet.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ts/io_context.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ts/net.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ts/netfwd.hpp +82 -43
- data/src/cxx_supportlib/vendor-modified/boost/asio/ts/socket.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/ts/timer.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/unyield.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/use_awaitable.hpp +163 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/use_future.hpp +21 -21
- data/src/cxx_supportlib/vendor-modified/boost/asio/uses_executor.hpp +3 -7
- data/src/cxx_supportlib/vendor-modified/boost/asio/version.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/asio/wait_traits.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio/writable_pipe.hpp +37 -0
- data/src/cxx_supportlib/vendor-modified/boost/asio/write.hpp +772 -173
- data/src/cxx_supportlib/vendor-modified/boost/asio/write_at.hpp +237 -73
- data/src/cxx_supportlib/vendor-modified/boost/asio/yield.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/asio.hpp +72 -28
- data/src/cxx_supportlib/vendor-modified/boost/assert/source_location.hpp +197 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/atomic.hpp +170 -11
- data/src/cxx_supportlib/vendor-modified/boost/atomic/atomic_flag.hpp +12 -3
- data/src/cxx_supportlib/vendor-modified/boost/atomic/atomic_ref.hpp +97 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/capabilities.hpp +2 -191
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/addressof.hpp +8 -1
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/aligned_variable.hpp +57 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/atomic_flag_impl.hpp +129 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/atomic_impl.hpp +1265 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/atomic_ref_impl.hpp +1228 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/bitwise_cast.hpp +102 -12
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/bitwise_fp_cast.hpp +43 -11
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/capabilities.hpp +217 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_arch_gcc_aarch32.hpp +53 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_arch_gcc_aarch64.hpp +65 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_arch_gcc_alpha.hpp +34 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_arch_gcc_arm.hpp +103 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_arch_gcc_ppc.hpp +55 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_arch_gcc_sparc.hpp +34 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_arch_gcc_x86.hpp +74 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_arch_msvc_arm.hpp +34 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_arch_msvc_x86.hpp +61 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_gcc_atomic.hpp +100 -75
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_gcc_sync.hpp +0 -7
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/cas_based_exchange.hpp +50 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/classify.hpp +90 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/config.hpp +57 -64
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_arch_operations.hpp +50 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_arch_operations_fwd.hpp +38 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_arch_ops_gcc_aarch32.hpp +1121 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_arch_ops_gcc_aarch64.hpp +1909 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_arch_ops_gcc_alpha.hpp +867 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_arch_ops_gcc_arm.hpp +1417 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_arch_ops_gcc_ppc.hpp +1218 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_arch_ops_gcc_sparc.hpp +215 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_arch_ops_gcc_x86.hpp +1110 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_arch_ops_msvc_arm.hpp +828 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_arch_ops_msvc_x86.hpp +903 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_operations.hpp +49 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_operations_emulated.hpp +194 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_operations_emulated_fwd.hpp +38 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_operations_fwd.hpp +38 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_ops_cas_based.hpp +94 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_ops_gcc_atomic.hpp +306 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_ops_gcc_sync.hpp +263 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/core_ops_linux_arm.hpp +169 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extending_cas_based_arithmetic.hpp +72 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_fp_operations_fwd.hpp +4 -1
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_fp_ops_emulated.hpp +22 -12
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_fp_ops_generic.hpp +13 -10
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_operations_fwd.hpp +4 -1
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_ops_emulated.hpp +59 -40
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_ops_gcc_aarch32.hpp +1060 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_ops_gcc_aarch64.hpp +1330 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_ops_gcc_arm.hpp +363 -355
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_ops_gcc_ppc.hpp +167 -163
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_ops_gcc_x86.hpp +232 -102
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_ops_generic.hpp +9 -17
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_ops_msvc_arm.hpp +6 -4
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/extra_ops_msvc_x86.hpp +119 -92
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fence_arch_operations.hpp +41 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fence_arch_ops_gcc_aarch32.hpp +60 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fence_arch_ops_gcc_aarch64.hpp +58 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fence_arch_ops_gcc_alpha.hpp +53 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fence_arch_ops_gcc_arm.hpp +90 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fence_arch_ops_gcc_ppc.hpp +68 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fence_arch_ops_gcc_sparc.hpp +70 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fence_arch_ops_gcc_x86.hpp +69 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fence_arch_ops_msvc_arm.hpp +66 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fence_arch_ops_msvc_x86.hpp +66 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fence_operations.hpp +41 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fence_operations_emulated.hpp +50 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fence_ops_gcc_atomic.hpp +75 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fence_ops_gcc_sync.hpp +53 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fence_ops_linux_arm.hpp +64 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/float_sizes.hpp +122 -35
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/footer.hpp +24 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fp_operations_fwd.hpp +4 -1
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fp_ops_emulated.hpp +13 -8
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/fp_ops_generic.hpp +6 -3
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/futex.hpp +185 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/gcc_arm_asm_common.hpp +79 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/gcc_atomic_memory_order_utils.hpp +66 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/gcc_ppc_asm_common.hpp +33 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/header.hpp +72 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/int_sizes.hpp +25 -1
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/integral_conversions.hpp +108 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/interlocked.hpp +35 -11
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/intptr.hpp +46 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/lock_pool.hpp +151 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/memory_order_utils.hpp +47 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/once_flag.hpp +43 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_aarch32_common.hpp +53 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_aarch64_common.hpp +53 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_arm_common.hpp +8 -79
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_ppc_common.hpp +4 -1
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_msvc_common.hpp +7 -2
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/pause.hpp +30 -5
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/platform.hpp +80 -34
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/storage_traits.hpp +187 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/type_traits/alignment_of.hpp +51 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/type_traits/has_unique_object_representations.hpp +143 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/type_traits/is_enum.hpp +42 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/type_traits/is_floating_point.hpp +3 -2
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/type_traits/is_nothrow_default_constructible.hpp +46 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/type_traits/is_trivially_copyable.hpp +45 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/type_traits/remove_cv.hpp +42 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_capabilities.hpp +363 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_caps_darwin_ulock.hpp +58 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_caps_dragonfly_umtx.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_caps_freebsd_umtx.hpp +40 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_caps_futex.hpp +31 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_on_address.hpp +64 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_operations.hpp +28 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_operations_fwd.hpp +43 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_ops_darwin_ulock.hpp +158 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_ops_dragonfly_umtx.hpp +75 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_ops_emulated.hpp +96 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_ops_freebsd_umtx.hpp +119 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_ops_futex.hpp +111 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/wait_ops_generic.hpp +143 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/fences.hpp +7 -18
- data/src/cxx_supportlib/vendor-modified/boost/atomic/ipc_atomic.hpp +90 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/ipc_atomic_flag.hpp +40 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/ipc_atomic_ref.hpp +97 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic.hpp +9 -0
- data/src/cxx_supportlib/vendor-modified/boost/bind/apply.hpp +4 -49
- data/src/cxx_supportlib/vendor-modified/boost/bind/bind.hpp +263 -1815
- data/src/cxx_supportlib/vendor-modified/boost/bind/detail/bind_cc.hpp +117 -0
- data/src/cxx_supportlib/vendor-modified/boost/bind/detail/bind_mf2_cc.hpp +210 -0
- data/src/cxx_supportlib/vendor-modified/boost/bind/detail/bind_mf_cc.hpp +405 -0
- data/src/cxx_supportlib/vendor-modified/boost/bind/detail/integer_sequence.hpp +111 -0
- data/src/cxx_supportlib/vendor-modified/boost/bind/detail/result_traits.hpp +165 -0
- data/src/cxx_supportlib/vendor-modified/boost/bind/detail/tuple_for_each.hpp +64 -0
- data/src/cxx_supportlib/vendor-modified/boost/bind/mem_fn.hpp +143 -279
- data/src/cxx_supportlib/vendor-modified/boost/bind/placeholders.hpp +13 -14
- data/src/cxx_supportlib/vendor-modified/boost/bind/protect.hpp +24 -259
- data/src/cxx_supportlib/vendor-modified/boost/bind/std_placeholders.hpp +33 -0
- data/src/cxx_supportlib/vendor-modified/boost/cerrno.hpp +4 -320
- data/src/cxx_supportlib/vendor-modified/boost/chrono/config.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/inlined/mac/chrono.hpp +14 -14
- data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/inlined/mac/process_cpu_clocks.hpp +34 -34
- data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/inlined/mac/thread_clock.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/inlined/posix/chrono.hpp +34 -14
- data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/inlined/posix/process_cpu_clocks.hpp +27 -27
- data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/inlined/posix/thread_clock.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/is_evenly_divisible_by.hpp +1 -7
- data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/requires_cxx11.hpp +23 -0
- data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/scan_keyword.hpp +4 -2
- data/src/cxx_supportlib/vendor-modified/boost/chrono/detail/system.hpp +5 -4
- data/src/cxx_supportlib/vendor-modified/boost/chrono/duration.hpp +10 -6
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/duration_get.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/duration_io.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/duration_put.hpp +5 -5
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/duration_style.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/duration_units.hpp +3 -2
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/time_point_io.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/timezone.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io/utility/ios_base_state_ptr.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/chrono/io_v1/chrono_io.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/chrono/system_clocks.hpp +3 -2
- data/src/cxx_supportlib/vendor-modified/boost/chrono/time_point.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/circular_buffer/base.hpp +178 -167
- data/src/cxx_supportlib/vendor-modified/boost/circular_buffer/details.hpp +39 -47
- data/src/cxx_supportlib/vendor-modified/boost/circular_buffer/space_optimized.hpp +32 -38
- data/src/cxx_supportlib/vendor-modified/boost/circular_buffer.hpp +12 -9
- data/src/cxx_supportlib/vendor-modified/boost/concept/assert.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/concept/detail/general.hpp +24 -3
- data/src/cxx_supportlib/vendor-modified/boost/concept/detail/has_constraints.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/concept/usage.hpp +8 -1
- data/src/cxx_supportlib/vendor-modified/boost/concept_check.hpp +20 -20
- data/src/cxx_supportlib/vendor-modified/boost/config/abi_prefix.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/abi_suffix.hpp +1 -3
- data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx03.hpp +211 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx11.hpp +212 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx14.hpp +47 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx17.hpp +65 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx20.hpp +59 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx23.hpp +41 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx98.hpp +23 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/auto_link.hpp +78 -19
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/borland.hpp +13 -3
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/clang.hpp +38 -4
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/clang_version.hpp +89 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/codegear.hpp +164 -10
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/comeau.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/common_edg.hpp +40 -11
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/cray.hpp +374 -52
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/digitalmars.hpp +10 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/gcc.hpp +41 -11
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/gcc_xml.hpp +9 -2
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/greenhills.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/hp_acc.hpp +7 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/intel.hpp +14 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/kai.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/metrowerks.hpp +10 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/mpw.hpp +10 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/nvcc.hpp +9 -3
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/pathscale.hpp +9 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/sunpro_cc.hpp +15 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/vacpp.hpp +10 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/visualc.hpp +54 -10
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/xlcpp.hpp +22 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/xlcpp_zos.hpp +5 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/detail/cxx_composite.hpp +218 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/detail/select_compiler_config.hpp +1 -2
- data/src/cxx_supportlib/vendor-modified/boost/config/detail/select_platform_config.hpp +5 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/detail/select_stdlib_config.hpp +13 -2
- data/src/cxx_supportlib/vendor-modified/boost/config/detail/suffix.hpp +303 -5
- data/src/cxx_supportlib/vendor-modified/boost/config/header_deprecated.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/platform/bsd.hpp +5 -8
- data/src/cxx_supportlib/vendor-modified/boost/config/platform/vxworks.hpp +63 -74
- data/src/cxx_supportlib/vendor-modified/boost/config/platform/wasm.hpp +23 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/requires_threads.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/dinkumware.hpp +76 -10
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/libcomo.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/libcpp.hpp +51 -4
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/libstdcpp3.hpp +144 -11
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/modena.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/msl.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/roguewave.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/sgi.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/stlport.hpp +6 -5
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/vacpp.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/xlcpp_zos.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/user.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/config/workaround.hpp +26 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/adaptive_pool.hpp +291 -18
- data/src/cxx_supportlib/vendor-modified/boost/container/allocator.hpp +43 -35
- data/src/cxx_supportlib/vendor-modified/boost/container/allocator_traits.hpp +205 -41
- data/src/cxx_supportlib/vendor-modified/boost/container/container_fwd.hpp +132 -38
- data/src/cxx_supportlib/vendor-modified/boost/container/deque.hpp +981 -361
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/adaptive_node_pool.hpp +25 -22
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/adaptive_node_pool_impl.hpp +838 -463
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/addressof.hpp +2 -10
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/advanced_insert_int.hpp +199 -133
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/algorithm.hpp +28 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/alloc_lib.h +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/allocation_type.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/allocator_version_traits.hpp +16 -16
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/block_list.hpp +4 -3
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/block_slist.hpp +4 -3
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/compare_functors.hpp +73 -13
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/config_begin.hpp +11 -3
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/config_end.hpp +3 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/construct_in_place.hpp +52 -16
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/container_or_allocator_rebind.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/container_rebind.hpp +21 -116
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/copy_move_algo.hpp +991 -148
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/destroyers.hpp +181 -57
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/dispatch_uses_allocator.hpp +68 -68
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/flat_tree.hpp +443 -239
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/function_detector.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/guards_dended.hpp +198 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/is_container.hpp +18 -1
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/is_contiguous_container.hpp +36 -1
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/is_pair.hpp +91 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/iterator.hpp +24 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/iterators.hpp +228 -194
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/math_functions.hpp +55 -2
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/mpl.hpp +60 -2
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/multiallocation_chain.hpp +135 -40
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/mutex.hpp +48 -23
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/next_capacity.hpp +28 -9
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/node_alloc_holder.hpp +352 -152
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/node_pool.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/node_pool_impl.hpp +12 -12
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/pair.hpp +152 -105
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/placement_new.hpp +1 -7
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/pool_common.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/pool_common_alloc.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/pool_resource.hpp +7 -11
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/std_fwd.hpp +6 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/thread_mutex.hpp +181 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/transform_iterator.hpp +28 -28
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/tree.hpp +464 -351
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/type_traits.hpp +5 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/value_functors.hpp +9 -13
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/value_init.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/variadic_templates_tools.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/version_type.hpp +6 -15
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/workaround.hpp +138 -4
- data/src/cxx_supportlib/vendor-modified/boost/container/devector.hpp +3041 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/flat_map.hpp +874 -314
- data/src/cxx_supportlib/vendor-modified/boost/container/flat_set.hpp +391 -126
- data/src/cxx_supportlib/vendor-modified/boost/container/list.hpp +150 -120
- data/src/cxx_supportlib/vendor-modified/boost/container/map.hpp +634 -254
- data/src/cxx_supportlib/vendor-modified/boost/container/new_allocator.hpp +33 -13
- data/src/cxx_supportlib/vendor-modified/boost/container/node_allocator.hpp +30 -24
- data/src/cxx_supportlib/vendor-modified/boost/container/node_handle.hpp +35 -22
- data/src/cxx_supportlib/vendor-modified/boost/container/options.hpp +433 -7
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/devector.hpp +51 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/flat_set.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/global_resource.hpp +1 -4
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/memory_resource.hpp +37 -3
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/monotonic_buffer_resource.hpp +10 -7
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/polymorphic_allocator.hpp +9 -9
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/resource_adaptor.hpp +92 -8
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/synchronized_pool_resource.hpp +7 -6
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/unsynchronized_pool_resource.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/container/scoped_allocator.hpp +79 -81
- data/src/cxx_supportlib/vendor-modified/boost/container/set.hpp +445 -180
- data/src/cxx_supportlib/vendor-modified/boost/container/slist.hpp +142 -113
- data/src/cxx_supportlib/vendor-modified/boost/container/small_vector.hpp +325 -263
- data/src/cxx_supportlib/vendor-modified/boost/container/stable_vector.hpp +386 -228
- data/src/cxx_supportlib/vendor-modified/boost/container/static_vector.hpp +243 -161
- data/src/cxx_supportlib/vendor-modified/boost/container/string.hpp +601 -455
- data/src/cxx_supportlib/vendor-modified/boost/container/throw_exception.hpp +155 -41
- data/src/cxx_supportlib/vendor-modified/boost/container/uses_allocator.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/container/vector.hpp +977 -1017
- data/src/cxx_supportlib/vendor-modified/boost/container_hash/detail/hash_integral.hpp +146 -0
- data/src/cxx_supportlib/vendor-modified/boost/container_hash/detail/hash_mix.hpp +113 -0
- data/src/cxx_supportlib/vendor-modified/boost/container_hash/detail/hash_range.hpp +408 -0
- data/src/cxx_supportlib/vendor-modified/boost/container_hash/detail/hash_tuple_like.hpp +62 -0
- data/src/cxx_supportlib/vendor-modified/boost/container_hash/detail/mulx.hpp +79 -0
- data/src/cxx_supportlib/vendor-modified/boost/container_hash/hash.hpp +395 -580
- data/src/cxx_supportlib/vendor-modified/boost/container_hash/hash_fwd.hpp +25 -24
- data/src/cxx_supportlib/vendor-modified/boost/container_hash/is_contiguous_range.hpp +98 -0
- data/src/cxx_supportlib/vendor-modified/boost/container_hash/is_described_class.hpp +37 -0
- data/src/cxx_supportlib/vendor-modified/boost/container_hash/is_range.hpp +41 -0
- data/src/cxx_supportlib/vendor-modified/boost/container_hash/is_tuple_like.hpp +36 -0
- data/src/cxx_supportlib/vendor-modified/boost/container_hash/is_unordered_range.hpp +38 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/addressof.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/core/alignof.hpp +57 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/alloc_construct.hpp +95 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/allocator_access.hpp +834 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/allocator_traits.hpp +112 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/bit.hpp +954 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/checked_delete.hpp +35 -7
- data/src/cxx_supportlib/vendor-modified/boost/core/cmath.hpp +298 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/data.hpp +46 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/default_allocator.hpp +158 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/detail/is_same.hpp +39 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/detail/lwt_unattended.hpp +66 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/detail/minstd_rand.hpp +58 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/detail/sp_thread_pause.hpp +71 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/detail/sp_thread_sleep.hpp +122 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/detail/sp_thread_yield.hpp +100 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/detail/splitmix64.hpp +54 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/detail/string_view.hpp +1272 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/empty_value.hpp +203 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/exchange.hpp +49 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/explicit_operator_bool.hpp +9 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/fclose_deleter.hpp +53 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/first_scalar.hpp +45 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/functor.hpp +41 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/identity.hpp +61 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/ignore_unused.hpp +32 -2
- data/src/cxx_supportlib/vendor-modified/boost/core/invoke_swap.hpp +93 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/is_same.hpp +10 -15
- data/src/cxx_supportlib/vendor-modified/boost/core/launder.hpp +69 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/lightweight_test.hpp +269 -145
- data/src/cxx_supportlib/vendor-modified/boost/core/lightweight_test_trait.hpp +43 -8
- data/src/cxx_supportlib/vendor-modified/boost/core/make_span.hpp +59 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/max_align.hpp +82 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/memory_resource.hpp +108 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/no_exceptions_support.hpp +14 -2
- data/src/cxx_supportlib/vendor-modified/boost/core/noinit_adaptor.hpp +90 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/noncopyable.hpp +16 -1
- data/src/cxx_supportlib/vendor-modified/boost/core/null_deleter.hpp +7 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/nvp.hpp +57 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/pointer_in_range.hpp +49 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/pointer_traits.hpp +112 -60
- data/src/cxx_supportlib/vendor-modified/boost/core/quick_exit.hpp +59 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/ref.hpp +61 -17
- data/src/cxx_supportlib/vendor-modified/boost/core/serialization.hpp +131 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/size.hpp +31 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/snprintf.hpp +173 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/span.hpp +401 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/swap.hpp +12 -32
- data/src/cxx_supportlib/vendor-modified/boost/core/type_name.hpp +1186 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/typeinfo.hpp +26 -10
- data/src/cxx_supportlib/vendor-modified/boost/core/uncaught_exceptions.hpp +155 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/use_default.hpp +17 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/verbose_terminate_handler.hpp +88 -0
- data/src/cxx_supportlib/vendor-modified/boost/core/yield_primitives.hpp +12 -0
- data/src/cxx_supportlib/vendor-modified/boost/cregex.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/cstdint.hpp +5 -5
- data/src/cxx_supportlib/vendor-modified/boost/current_function.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/date_time/c_time.hpp +9 -4
- data/src/cxx_supportlib/vendor-modified/boost/date_time/compiler_config.hpp +9 -41
- data/src/cxx_supportlib/vendor-modified/boost/date_time/constrained_value.hpp +19 -11
- data/src/cxx_supportlib/vendor-modified/boost/date_time/date.hpp +24 -24
- data/src/cxx_supportlib/vendor-modified/boost/date_time/date_duration.hpp +17 -22
- data/src/cxx_supportlib/vendor-modified/boost/date_time/date_duration_types.hpp +44 -49
- data/src/cxx_supportlib/vendor-modified/boost/date_time/date_facet.hpp +5 -6
- data/src/cxx_supportlib/vendor-modified/boost/date_time/date_generators.hpp +24 -19
- data/src/cxx_supportlib/vendor-modified/boost/date_time/date_iterator.hpp +8 -8
- data/src/cxx_supportlib/vendor-modified/boost/date_time/date_parsing.hpp +51 -25
- data/src/cxx_supportlib/vendor-modified/boost/date_time/dst_rules.hpp +56 -56
- data/src/cxx_supportlib/vendor-modified/boost/date_time/dst_transition_generators.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/date_time/find_match.hpp +42 -0
- data/src/cxx_supportlib/vendor-modified/boost/date_time/format_date_parser.hpp +98 -98
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/formatters.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/formatters_limited.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_date.hpp +34 -27
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_day.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_duration.hpp +44 -32
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_duration_types.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_month.hpp +51 -23
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_serialize.hpp +29 -27
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_weekday.hpp +43 -9
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_year.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/parsers.hpp +34 -15
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian_calendar.hpp +15 -17
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian_calendar.ipp +30 -25
- data/src/cxx_supportlib/vendor-modified/boost/date_time/int_adapter.hpp +57 -37
- data/src/cxx_supportlib/vendor-modified/boost/date_time/iso_format.hpp +13 -13
- data/src/cxx_supportlib/vendor-modified/boost/date_time/local_time/local_date_time.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/date_time/local_time/local_time_io.hpp +3 -0
- data/src/cxx_supportlib/vendor-modified/boost/date_time/locale_config.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/date_time/period.hpp +44 -47
- data/src/cxx_supportlib/vendor-modified/boost/date_time/period_formatter.hpp +34 -31
- data/src/cxx_supportlib/vendor-modified/boost/date_time/period_parser.hpp +27 -28
- data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/conversion.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/date_duration_operators.hpp +8 -8
- data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/posix_time_config.hpp +13 -26
- data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/posix_time_duration.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/posix_time_io.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/ptime.hpp +22 -4
- data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/time_formatters.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/time_formatters_limited.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/time_parsers.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/time_serialize.hpp +28 -12
- data/src/cxx_supportlib/vendor-modified/boost/date_time/special_values_formatter.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/date_time/special_values_parser.hpp +1 -6
- data/src/cxx_supportlib/vendor-modified/boost/date_time/string_parse_tree.hpp +5 -3
- data/src/cxx_supportlib/vendor-modified/boost/date_time/strings_from_facet.hpp +4 -2
- data/src/cxx_supportlib/vendor-modified/boost/date_time/time.hpp +24 -3
- data/src/cxx_supportlib/vendor-modified/boost/date_time/time_duration.hpp +56 -44
- data/src/cxx_supportlib/vendor-modified/boost/date_time/time_facet.hpp +9 -12
- data/src/cxx_supportlib/vendor-modified/boost/date_time/time_iterator.hpp +8 -8
- data/src/cxx_supportlib/vendor-modified/boost/date_time/time_parsing.hpp +5 -10
- data/src/cxx_supportlib/vendor-modified/boost/date_time/time_resolution_traits.hpp +18 -18
- data/src/cxx_supportlib/vendor-modified/boost/date_time/time_system_counted.hpp +65 -50
- data/src/cxx_supportlib/vendor-modified/boost/date_time/time_system_split.hpp +43 -30
- data/src/cxx_supportlib/vendor-modified/boost/date_time/time_zone_base.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/date_time/time_zone_names.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/date_time/tz_db_base.hpp +0 -1
- data/src/cxx_supportlib/vendor-modified/boost/date_time/wrapping_int.hpp +16 -15
- data/src/cxx_supportlib/vendor-modified/boost/date_time/year_month_day.hpp +7 -5
- data/src/cxx_supportlib/vendor-modified/boost/describe/bases.hpp +50 -0
- data/src/cxx_supportlib/vendor-modified/boost/describe/detail/config.hpp +40 -0
- data/src/cxx_supportlib/vendor-modified/boost/describe/detail/cx_streq.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/describe/detail/void_t.hpp +32 -0
- data/src/cxx_supportlib/vendor-modified/boost/describe/members.hpp +161 -0
- data/src/cxx_supportlib/vendor-modified/boost/describe/modifiers.hpp +33 -0
- data/src/cxx_supportlib/vendor-modified/boost/detail/basic_pointerbuf.hpp +7 -11
- data/src/cxx_supportlib/vendor-modified/boost/detail/indirect_traits.hpp +38 -47
- data/src/cxx_supportlib/vendor-modified/boost/detail/lcast_precision.hpp +6 -97
- data/src/cxx_supportlib/vendor-modified/boost/detail/reference_content.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/detail/workaround.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/exception/current_exception_cast.hpp +10 -4
- data/src/cxx_supportlib/vendor-modified/boost/exception/detail/clone_current_exception.hpp +10 -4
- data/src/cxx_supportlib/vendor-modified/boost/exception/detail/error_info_impl.hpp +12 -7
- data/src/cxx_supportlib/vendor-modified/boost/exception/detail/exception_ptr.hpp +135 -34
- data/src/cxx_supportlib/vendor-modified/boost/exception/detail/is_output_streamable.hpp +9 -4
- data/src/cxx_supportlib/vendor-modified/boost/exception/detail/object_hex_dump.hpp +9 -4
- data/src/cxx_supportlib/vendor-modified/boost/exception/detail/requires_cxx11.hpp +24 -0
- data/src/cxx_supportlib/vendor-modified/boost/exception/detail/shared_ptr.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/exception/detail/type_info.hpp +11 -5
- data/src/cxx_supportlib/vendor-modified/boost/exception/diagnostic_information.hpp +18 -9
- data/src/cxx_supportlib/vendor-modified/boost/exception/exception.hpp +118 -70
- data/src/cxx_supportlib/vendor-modified/boost/exception/get_error_info.hpp +9 -4
- data/src/cxx_supportlib/vendor-modified/boost/exception/info.hpp +12 -10
- data/src/cxx_supportlib/vendor-modified/boost/exception/to_string.hpp +10 -5
- data/src/cxx_supportlib/vendor-modified/boost/exception/to_string_stub.hpp +9 -4
- data/src/cxx_supportlib/vendor-modified/boost/exception_ptr.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/foreach.hpp +16 -9
- data/src/cxx_supportlib/vendor-modified/boost/function/function0.hpp +1 -3
- data/src/cxx_supportlib/vendor-modified/boost/function/function1.hpp +1 -3
- data/src/cxx_supportlib/vendor-modified/boost/function/function10.hpp +1 -3
- data/src/cxx_supportlib/vendor-modified/boost/function/function2.hpp +1 -3
- data/src/cxx_supportlib/vendor-modified/boost/function/function3.hpp +1 -3
- data/src/cxx_supportlib/vendor-modified/boost/function/function4.hpp +1 -3
- data/src/cxx_supportlib/vendor-modified/boost/function/function5.hpp +1 -3
- data/src/cxx_supportlib/vendor-modified/boost/function/function6.hpp +1 -3
- data/src/cxx_supportlib/vendor-modified/boost/function/function7.hpp +1 -3
- data/src/cxx_supportlib/vendor-modified/boost/function/function8.hpp +1 -3
- data/src/cxx_supportlib/vendor-modified/boost/function/function9.hpp +1 -3
- data/src/cxx_supportlib/vendor-modified/boost/function/function_base.hpp +77 -237
- data/src/cxx_supportlib/vendor-modified/boost/function/function_fwd.hpp +36 -41
- data/src/cxx_supportlib/vendor-modified/boost/function/function_template.hpp +456 -464
- data/src/cxx_supportlib/vendor-modified/boost/function/function_typeof.hpp +1 -31
- data/src/cxx_supportlib/vendor-modified/boost/function.hpp +5 -61
- data/src/cxx_supportlib/vendor-modified/boost/integer/common_factor.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/integer/common_factor_ct.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/integer/common_factor_rt.hpp +35 -33
- data/src/cxx_supportlib/vendor-modified/boost/integer/extended_euclidean.hpp +83 -0
- data/src/cxx_supportlib/vendor-modified/boost/integer/integer_log2.hpp +86 -81
- data/src/cxx_supportlib/vendor-modified/boost/integer/integer_mask.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/integer/mod_inverse.hpp +53 -0
- data/src/cxx_supportlib/vendor-modified/boost/integer/static_log2.hpp +4 -5
- data/src/cxx_supportlib/vendor-modified/boost/integer/static_min_max.hpp +3 -2
- data/src/cxx_supportlib/vendor-modified/boost/integer.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/integer_fwd.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/integer_traits.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/any_hook.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/avl_set.hpp +99 -100
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/avltree.hpp +51 -52
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/avltree_algorithms.hpp +83 -83
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/bs_set.hpp +101 -102
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/bstree.hpp +155 -164
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/bstree_algorithms.hpp +164 -158
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/circular_list_algorithms.hpp +36 -28
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/circular_slist_algorithms.hpp +88 -19
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/derivation_value_traits.hpp +5 -5
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/algorithm.hpp +8 -8
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/any_node_and_algorithms.hpp +44 -44
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/array_initializer.hpp +10 -8
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/avltree_node.hpp +23 -23
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/bstree_algorithms_base.hpp +38 -40
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/common_slist_algorithms.hpp +85 -16
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/config_begin.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/default_header_holder.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/ebo_functor_holder.hpp +27 -27
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/empty_node_checker.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/equal_to_value.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/exception_disposer.hpp +1 -32
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/generic_hook.hpp +14 -15
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/hash.hpp +277 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/hash_combine.hpp +54 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/hash_integral.hpp +119 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/hash_mix.hpp +130 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/hashtable_node.hpp +204 -115
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/hook_traits.hpp +26 -22
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/iiterator.hpp +6 -6
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/iterator.hpp +126 -80
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/key_nodeptr_comp.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/list_iterator.hpp +30 -18
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/list_node.hpp +6 -6
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/math.hpp +11 -64
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/mpl.hpp +8 -1
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/node_cloner_disposer.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/node_to_value.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/parent_from_member.hpp +6 -17
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/rbtree_node.hpp +24 -24
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/reverse_iterator.hpp +3 -140
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/simple_disposers.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/size_holder.hpp +14 -14
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/slist_iterator.hpp +36 -17
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/slist_node.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/transform_iterator.hpp +22 -22
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/tree_iterator.hpp +38 -26
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/tree_node.hpp +9 -9
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/tree_value_compare.hpp +45 -26
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/twin.hpp +49 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/value_functors.hpp +52 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/workaround.hpp +66 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/hashtable.hpp +1763 -1039
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/intrusive_fwd.hpp +5 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/linear_slist_algorithms.hpp +98 -18
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/list.hpp +113 -111
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/list_hook.hpp +10 -10
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/member_value_traits.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/options.hpp +26 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/pack_options.hpp +21 -11
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/parent_from_member.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/pointer_plus_bits.hpp +7 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/pointer_traits.hpp +31 -23
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/priority_compare.hpp +13 -6
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/rbtree.hpp +51 -52
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/rbtree_algorithms.hpp +74 -74
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/set.hpp +101 -102
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/set_hook.hpp +12 -12
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/sg_set.hpp +109 -110
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/sgtree.hpp +68 -77
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/sgtree_algorithms.hpp +81 -81
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/slist.hpp +178 -186
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/slist_hook.hpp +8 -6
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/splay_set.hpp +107 -108
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/splaytree.hpp +54 -55
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/splaytree_algorithms.hpp +99 -97
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/treap.hpp +141 -115
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/treap_algorithms.hpp +88 -83
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/treap_set.hpp +158 -152
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/trivial_value_traits.hpp +6 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/unordered_set.hpp +128 -114
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/unordered_set_hook.hpp +17 -17
- data/src/cxx_supportlib/vendor-modified/boost/io/ios_state.hpp +361 -315
- data/src/cxx_supportlib/vendor-modified/boost/io_fwd.hpp +45 -49
- data/src/cxx_supportlib/vendor-modified/boost/iterator/advance.hpp +12 -1
- data/src/cxx_supportlib/vendor-modified/boost/iterator/detail/config_def.hpp +10 -10
- data/src/cxx_supportlib/vendor-modified/boost/iterator/detail/config_undef.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/iterator/detail/enable_if.hpp +5 -5
- data/src/cxx_supportlib/vendor-modified/boost/iterator/detail/facade_iterator_category.hpp +13 -13
- data/src/cxx_supportlib/vendor-modified/boost/iterator/distance.hpp +65 -0
- data/src/cxx_supportlib/vendor-modified/boost/iterator/is_iterator.hpp +148 -0
- data/src/cxx_supportlib/vendor-modified/boost/iterator/iterator_adaptor.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/iterator/iterator_concepts.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/iterator/iterator_facade.hpp +107 -26
- data/src/cxx_supportlib/vendor-modified/boost/iterator/transform_iterator.hpp +8 -4
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/bad_lexical_cast.hpp +24 -25
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/buffer_view.hpp +59 -0
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/converter_lexical.hpp +154 -172
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/converter_lexical_streams.hpp +619 -647
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/converter_numeric.hpp +89 -77
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/inf_nan.hpp +35 -45
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/is_character.hpp +23 -29
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/lcast_basic_unlockedbuf.hpp +73 -0
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/lcast_char_constants.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/lcast_unsigned_converters.hpp +33 -28
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/widest_char.hpp +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/try_lexical_convert.hpp +23 -157
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast.hpp +10 -13
- data/src/cxx_supportlib/vendor-modified/boost/libs/chrono/src/chrono.cpp +4 -2
- data/src/cxx_supportlib/vendor-modified/boost/libs/chrono/src/process_cpu_clocks.cpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/libs/chrono/src/thread_clock.cpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/libs/random/src/random_device.cpp +4 -2
- data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/posix_api.cpp +20 -25
- data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/regex.cpp +13 -122
- data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/static_mutex.cpp +8 -2
- data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/wide_posix_api.cpp +24 -22
- data/src/cxx_supportlib/vendor-modified/boost/libs/system/src/error_code.cpp +16 -5
- data/src/cxx_supportlib/vendor-modified/boost/libs/thread/src/future.cpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/libs/thread/src/pthread/once.cpp +0 -1
- data/src/cxx_supportlib/vendor-modified/boost/libs/thread/src/pthread/once_atomic.cpp +4 -3
- data/src/cxx_supportlib/vendor-modified/boost/libs/thread/src/pthread/thread.cpp +50 -29
- data/src/cxx_supportlib/vendor-modified/boost/libs/thread/src/tss_null.cpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/limits.hpp +12 -12
- data/src/cxx_supportlib/vendor-modified/boost/memory_order.hpp +6 -12
- data/src/cxx_supportlib/vendor-modified/boost/move/adl_move_swap.hpp +5 -5
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/adaptive_merge.hpp +107 -62
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/adaptive_sort.hpp +119 -86
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/adaptive_sort_merge.hpp +322 -489
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/basic_op.hpp +11 -10
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/heap_sort.hpp +22 -11
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/insertion_sort.hpp +9 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/merge.hpp +463 -120
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/merge_sort.hpp +87 -10
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/pdqsort.hpp +16 -5
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/search.hpp +79 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/set_difference.hpp +9 -3
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/move.hpp +8 -5
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/predicate.hpp +24 -9
- data/src/cxx_supportlib/vendor-modified/boost/move/algorithm.hpp +0 -1
- data/src/cxx_supportlib/vendor-modified/boost/move/core.hpp +32 -11
- data/src/cxx_supportlib/vendor-modified/boost/move/default_delete.hpp +32 -6
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/addressof.hpp +61 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/config_begin.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/force_ptr.hpp +36 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/fwd_macros.hpp +12 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/iterator_traits.hpp +109 -9
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/launder.hpp +53 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/meta_utils.hpp +10 -32
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/meta_utils_core.hpp +11 -6
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/move_helpers.hpp +24 -24
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/nsec_clock.hpp +268 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/reverse_iterator.hpp +40 -33
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/std_ns_begin.hpp +5 -1
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/std_ns_end.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/to_raw_pointer.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/type_traits.hpp +341 -70
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/unique_ptr_meta_utils.hpp +1 -27
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/workaround.hpp +90 -3
- data/src/cxx_supportlib/vendor-modified/boost/move/iterator.hpp +21 -21
- data/src/cxx_supportlib/vendor-modified/boost/move/make_unique.hpp +10 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/unique_ptr.hpp +65 -66
- data/src/cxx_supportlib/vendor-modified/boost/move/utility.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/move/utility_core.hpp +38 -33
- data/src/cxx_supportlib/vendor-modified/boost/mp11/algorithm.hpp +1386 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/bind.hpp +120 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/config.hpp +149 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_append.hpp +321 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_copy_if.hpp +48 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_count.hpp +147 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_defer.hpp +119 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_fold.hpp +166 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_front.hpp +50 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_is_list.hpp +39 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_is_value_list.hpp +41 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_list.hpp +24 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_list_v.hpp +27 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_map_find.hpp +87 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_min_element.hpp +51 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_plus.hpp +84 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_remove_if.hpp +48 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_rename.hpp +54 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_value.hpp +25 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_void.hpp +32 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/detail/mp_with_index.hpp +385 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/function.hpp +222 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/integer_sequence.hpp +121 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/integral.hpp +51 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/list.hpp +481 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/set.hpp +188 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/utility.hpp +169 -0
- data/src/cxx_supportlib/vendor-modified/boost/mp11/version.hpp +16 -0
- data/src/cxx_supportlib/vendor-modified/boost/mpl/and.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/assert.hpp +31 -11
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/common_name_wknd.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/adl.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/arrays.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/bcc.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/bind.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/compiler.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/ctps.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/dtp.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/forwarding.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/integral.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/operators.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/overload_resolution.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/preprocessor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/config/ttp.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/count_impl.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/fold_impl_body.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/has_rebind.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/integral_wrapper.hpp +3 -2
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/lambda_support.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/nested_type_wknd.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/preprocessor/enum.hpp +12 -0
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/preprocessor/params.hpp +12 -0
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/size_impl.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/static_cast.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/template_arity.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/aux_/yes_no.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/bitand.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/bitor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/has_xxx.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/mpl/if.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/integral_c.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/lower_bound.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/numeric_cast.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/or.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/string.hpp +6 -6
- data/src/cxx_supportlib/vendor-modified/boost/mpl/upper_bound.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/mpl/vector/aux_/at.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/next_prior.hpp +3 -44
- data/src/cxx_supportlib/vendor-modified/boost/nondet_random.hpp +22 -0
- data/src/cxx_supportlib/vendor-modified/boost/none.hpp +5 -5
- data/src/cxx_supportlib/vendor-modified/boost/none_t.hpp +11 -1
- data/src/cxx_supportlib/vendor-modified/boost/numeric/conversion/cast.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/numeric/conversion/converter_policies.hpp +5 -5
- data/src/cxx_supportlib/vendor-modified/boost/numeric/conversion/detail/converter.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/numeric/conversion/detail/int_float_mixture.hpp +5 -5
- data/src/cxx_supportlib/vendor-modified/boost/numeric/conversion/detail/meta.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/numeric/conversion/detail/sign_mixture.hpp +5 -5
- data/src/cxx_supportlib/vendor-modified/boost/numeric/conversion/detail/udt_builtin_mixture.hpp +5 -5
- data/src/cxx_supportlib/vendor-modified/boost/operators.hpp +33 -24
- data/src/cxx_supportlib/vendor-modified/boost/optional/bad_optional_access.hpp +9 -0
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/experimental_traits.hpp +9 -3
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/old_optional_implementation.hpp +17 -17
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_aligned_storage.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_config.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_hash.hpp +49 -0
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_reference_spec.hpp +30 -4
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_relops.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_swap.hpp +6 -6
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_trivially_copyable_base.hpp +41 -30
- data/src/cxx_supportlib/vendor-modified/boost/optional/optional.hpp +304 -128
- data/src/cxx_supportlib/vendor-modified/boost/optional/optional_io.hpp +3 -2
- data/src/cxx_supportlib/vendor-modified/boost/parameter/are_tagged_arguments.hpp +125 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/always_true_predicate.hpp +42 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/arg_list.hpp +1253 -359
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/as_lvalue.hpp +25 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/augment_predicate.hpp +198 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/cast.hpp +7 -136
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/default.hpp +101 -59
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/has_nested_template_fn.hpp +111 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/is_maybe.hpp +42 -16
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/is_placeholder.hpp +64 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/is_tagged_argument.hpp +95 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/lambda_tag.hpp +16 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/maybe.hpp +128 -97
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/name.hpp +93 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/as_parameter_requirements.hpp +32 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/deduce_tag.hpp +217 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/deduced_item.hpp +34 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/insert_tagged.hpp +23 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/is_named_argument.hpp +43 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/item.hpp +47 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/make_arg_list.hpp +438 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/make_deduced_items.hpp +53 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/make_items.hpp +45 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/make_parameter_spec_items.hpp +244 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/parameter_requirements.hpp +25 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/predicate.hpp +87 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/satisfies.hpp +142 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/tag_deduced.hpp +59 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/tag_keyword_arg.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/tag_keyword_arg_ref.hpp +67 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/tag_template_keyword_arg.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/tag_type.hpp +89 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pack/unmatched_argument.hpp +41 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/parameter_requirements.hpp +7 -20
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/parenthesized_type.hpp +8 -31
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pp_impl/argument_pack.hpp +91 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pp_impl/match.hpp +55 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/pp_impl/unwrap_predicate.hpp +97 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/binary_seq_for_each.hpp +1638 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/binary_seq_for_each_inc.hpp +1796 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/binary_seq_to_args.hpp +65 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/convert_binary_seq.hpp +57 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/flatten.hpp +7 -110
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/for_each.hpp +7 -98
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/for_each_pred.hpp +1029 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/impl/argument_specs.hpp +24 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/impl/arity_range.hpp +42 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/impl/flatten.hpp +143 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/impl/for_each.hpp +152 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/impl/forwarding_overloads.hpp +509 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/impl/function_cast.hpp +730 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/impl/function_dispatch_layer.hpp +474 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/impl/function_dispatch_tuple.hpp +33 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/impl/function_forward_match.hpp +43 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/impl/function_name.hpp +152 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/impl/no_spec_overloads.hpp +331 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/impl/parenthesized_return_type.hpp +122 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/impl/parenthesized_type.hpp +34 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/impl/specification.hpp +109 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/impl/split_args.hpp +71 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/inc_binary_seq.hpp +78 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/is_binary.hpp +31 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/is_nullary.hpp +32 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/no_perfect_forwarding_begin.hpp +165 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/no_perfect_forwarding_end.hpp +24 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/nullptr.hpp +18 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/overloads.hpp +92 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/qualifier.hpp +88 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/seq_enum.hpp +26 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/preprocessor/seq_merge.hpp +1807 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/result_of0.hpp +46 -29
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/set.hpp +94 -42
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/tag.hpp +156 -34
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/tagged_argument.hpp +874 -159
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/tagged_argument_fwd.hpp +38 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/template_keyword.hpp +76 -34
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/unwrap_cv_reference.hpp +161 -78
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/use_default.hpp +17 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/use_default_tag.hpp +29 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/void.hpp +26 -17
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/yesno.hpp +30 -14
- data/src/cxx_supportlib/vendor-modified/boost/parameter/binding.hpp +158 -74
- data/src/cxx_supportlib/vendor-modified/boost/parameter/compose.hpp +210 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/config.hpp +75 -6
- data/src/cxx_supportlib/vendor-modified/boost/parameter/deduced.hpp +132 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/is_argument_pack.hpp +29 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/keyword.hpp +724 -102
- data/src/cxx_supportlib/vendor-modified/boost/parameter/keyword_fwd.hpp +23 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/macros.hpp +205 -72
- data/src/cxx_supportlib/vendor-modified/boost/parameter/match.hpp +37 -44
- data/src/cxx_supportlib/vendor-modified/boost/parameter/name.hpp +100 -126
- data/src/cxx_supportlib/vendor-modified/boost/parameter/nested_keyword.hpp +111 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/optional.hpp +67 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/parameters.hpp +556 -887
- data/src/cxx_supportlib/vendor-modified/boost/parameter/preprocessor.hpp +156 -1016
- data/src/cxx_supportlib/vendor-modified/boost/parameter/preprocessor_no_spec.hpp +74 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/python.hpp +5 -6
- data/src/cxx_supportlib/vendor-modified/boost/parameter/required.hpp +66 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/template_keyword.hpp +87 -0
- data/src/cxx_supportlib/vendor-modified/boost/parameter/value_type.hpp +156 -74
- data/src/cxx_supportlib/vendor-modified/boost/pool/detail/mutex.hpp +119 -25
- data/src/cxx_supportlib/vendor-modified/boost/pool/object_pool.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/pool/pool.hpp +22 -9
- data/src/cxx_supportlib/vendor-modified/boost/pool/pool_alloc.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/pool/simple_segregated_storage.hpp +13 -0
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/alpha.h +19 -13
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/arm.h +97 -28
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/blackfin.h +16 -10
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/convex.h +19 -13
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/e2k.h +54 -0
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/ia64.h +19 -13
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/loongarch.h +41 -0
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/m68k.h +33 -27
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/mips.h +31 -20
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/parisc.h +24 -18
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/ppc.h +82 -30
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/ptx.h +50 -0
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/pyramid.h +13 -7
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/riscv.h +48 -0
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/rs6k.h +23 -12
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/sparc.h +26 -13
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/superh.h +29 -15
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/sys370.h +15 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/sys390.h +15 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/x86/32.h +31 -25
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/x86/64.h +19 -13
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/x86.h +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture/z.h +14 -8
- data/src/cxx_supportlib/vendor-modified/boost/predef/architecture.h +4 -1
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/borland.h +12 -11
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/clang.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/comeau.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/compaq.h +13 -12
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/diab.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/digitalmars.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/dignus.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/edg.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/ekopath.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/gcc.h +11 -10
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/gcc_xml.h +9 -8
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/greenhills.h +12 -11
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/hp_acc.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/iar.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/ibm.h +15 -14
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/intel.h +18 -17
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/kai.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/llvm.h +9 -8
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/metaware.h +9 -8
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/metrowerks.h +14 -13
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/microtec.h +9 -8
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/mpw.h +12 -11
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/nvcc.h +74 -0
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/palm.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/pgi.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/sgi_mipspro.h +12 -11
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/sunpro.h +14 -13
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/tendra.h +9 -8
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/visualc.h +13 -12
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/watcom.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler.h +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/predef/hardware/simd/arm/versions.h +16 -10
- data/src/cxx_supportlib/vendor-modified/boost/predef/hardware/simd/arm.h +21 -19
- data/src/cxx_supportlib/vendor-modified/boost/predef/hardware/simd/ppc/versions.h +27 -21
- data/src/cxx_supportlib/vendor-modified/boost/predef/hardware/simd/ppc.h +21 -19
- data/src/cxx_supportlib/vendor-modified/boost/predef/hardware/simd/x86/versions.h +73 -67
- data/src/cxx_supportlib/vendor-modified/boost/predef/hardware/simd/x86.h +39 -37
- data/src/cxx_supportlib/vendor-modified/boost/predef/hardware/simd/x86_amd/versions.h +24 -19
- data/src/cxx_supportlib/vendor-modified/boost/predef/hardware/simd/x86_amd.h +25 -23
- data/src/cxx_supportlib/vendor-modified/boost/predef/hardware/simd.h +95 -46
- data/src/cxx_supportlib/vendor-modified/boost/predef/language/cuda.h +53 -0
- data/src/cxx_supportlib/vendor-modified/boost/predef/language/objc.h +9 -8
- data/src/cxx_supportlib/vendor-modified/boost/predef/language/stdc.h +11 -10
- data/src/cxx_supportlib/vendor-modified/boost/predef/language/stdcpp.h +41 -34
- data/src/cxx_supportlib/vendor-modified/boost/predef/language.h +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/predef/library/c/cloudabi.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/library/c/gnu.h +12 -11
- data/src/cxx_supportlib/vendor-modified/boost/predef/library/c/uc.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/library/c/vms.h +9 -8
- data/src/cxx_supportlib/vendor-modified/boost/predef/library/c/zos.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/library/std/cxx.h +11 -10
- data/src/cxx_supportlib/vendor-modified/boost/predef/library/std/dinkumware.h +11 -10
- data/src/cxx_supportlib/vendor-modified/boost/predef/library/std/libcomo.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/library/std/modena.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/library/std/msl.h +12 -11
- data/src/cxx_supportlib/vendor-modified/boost/predef/library/std/msvc.h +53 -0
- data/src/cxx_supportlib/vendor-modified/boost/predef/library/std/roguewave.h +11 -10
- data/src/cxx_supportlib/vendor-modified/boost/predef/library/std/sgi.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/library/std/stdcpp3.h +12 -11
- data/src/cxx_supportlib/vendor-modified/boost/predef/library/std/stlport.h +13 -12
- data/src/cxx_supportlib/vendor-modified/boost/predef/library/std/vacpp.h +9 -8
- data/src/cxx_supportlib/vendor-modified/boost/predef/library/std.h +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/predef/make.h +107 -33
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/aix.h +14 -13
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/amigaos.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/beos.h +9 -8
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/bsd/bsdi.h +10 -8
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/bsd/dragonfly.h +10 -8
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/bsd/free.h +11 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/bsd/net.h +17 -15
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/bsd/open.h +60 -58
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/bsd.h +22 -23
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/cygwin.h +15 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/haiku.h +9 -8
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/hpux.h +11 -10
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/ios.h +12 -11
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/irix.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/linux.h +14 -10
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/macos.h +14 -13
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/os400.h +9 -8
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/qnxnto.h +12 -11
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/solaris.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/unix.h +24 -22
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/vms.h +11 -10
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/windows.h +16 -15
- data/src/cxx_supportlib/vendor-modified/boost/predef/os.h +0 -1
- data/src/cxx_supportlib/vendor-modified/boost/predef/other/endian.h +19 -21
- data/src/cxx_supportlib/vendor-modified/boost/predef/other/wordsize.h +73 -0
- data/src/cxx_supportlib/vendor-modified/boost/predef/other/workaround.h +22 -14
- data/src/cxx_supportlib/vendor-modified/boost/predef/other.h +3 -2
- data/src/cxx_supportlib/vendor-modified/boost/predef/platform/android.h +44 -0
- data/src/cxx_supportlib/vendor-modified/boost/predef/platform/cloudabi.h +9 -8
- data/src/cxx_supportlib/vendor-modified/boost/predef/platform/ios.h +14 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/platform/mingw.h +12 -11
- data/src/cxx_supportlib/vendor-modified/boost/predef/platform/mingw32.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/platform/mingw64.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/platform/windows_desktop.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/platform/windows_phone.h +9 -8
- data/src/cxx_supportlib/vendor-modified/boost/predef/platform/windows_runtime.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/platform/windows_server.h +9 -8
- data/src/cxx_supportlib/vendor-modified/boost/predef/platform/windows_store.h +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/predef/platform/windows_system.h +9 -8
- data/src/cxx_supportlib/vendor-modified/boost/predef/platform/windows_uwp.h +12 -11
- data/src/cxx_supportlib/vendor-modified/boost/predef/platform.h +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/predef/version.h +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/predef/version_number.h +16 -14
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/add.hpp +54 -1
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/dec.hpp +33 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/detail/is_1_number.hpp +21 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/detail/is_maximum_number.hpp +22 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/detail/is_minimum_number.hpp +21 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/detail/maximum_number.hpp +19 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/div.hpp +37 -1
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/inc.hpp +33 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/limits/dec_1024.hpp +531 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/limits/dec_256.hpp +276 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/limits/dec_512.hpp +275 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/limits/inc_1024.hpp +536 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/limits/inc_256.hpp +275 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/limits/inc_512.hpp +280 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/mod.hpp +37 -1
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/mul.hpp +60 -1
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/arithmetic/sub.hpp +51 -1
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/array/detail/get_data.hpp +21 -21
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/array/enum.hpp +17 -1
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/array/insert.hpp +71 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/array/remove.hpp +66 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/array/replace.hpp +58 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/array/to_list.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/array/to_seq.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/array/to_tuple.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/comparison/limits/not_equal_1024.hpp +1044 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/comparison/limits/not_equal_256.hpp +793 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/comparison/limits/not_equal_512.hpp +532 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/comparison/not_equal.hpp +44 -1
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/config/config.hpp +26 -34
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/config/limits.hpp +136 -3
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/control/deduce_d.hpp +27 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/control/detail/dmc/while.hpp +2 -3
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/control/detail/edg/limits/while_1024.hpp +1044 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/control/detail/edg/limits/while_256.hpp +533 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/control/detail/edg/limits/while_512.hpp +532 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/control/detail/edg/while.hpp +27 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/control/detail/limits/while_1024.hpp +1044 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/control/detail/limits/while_256.hpp +533 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/control/detail/limits/while_512.hpp +532 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/control/detail/while.hpp +27 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/control/limits/while_1024.hpp +531 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/control/limits/while_256.hpp +275 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/control/limits/while_512.hpp +275 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/control/while.hpp +75 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/detail/auto_rec.hpp +41 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/detail/dmc/auto_rec.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/detail/limits/auto_rec_1024.hpp +532 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/detail/limits/auto_rec_256.hpp +280 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/detail/limits/auto_rec_512.hpp +276 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/facilities/check_empty.hpp +19 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/facilities/detail/is_empty.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/facilities/intercept.hpp +29 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/facilities/is_empty.hpp +0 -37
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/facilities/is_empty_variadic.hpp +28 -5
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/facilities/limits/intercept_1024.hpp +530 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/facilities/limits/intercept_256.hpp +273 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/facilities/limits/intercept_512.hpp +274 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/facilities/overload.hpp +1 -3
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/facilities/va_opt.hpp +34 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/facilities.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/forward1.hpp +27 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/forward2.hpp +27 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/forward3.hpp +27 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/forward4.hpp +27 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/forward5.hpp +27 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/forward1_1024.hpp +2573 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/forward1_256.hpp +1296 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/forward1_512.hpp +1293 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/forward2_1024.hpp +2573 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/forward2_256.hpp +1296 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/forward2_512.hpp +1293 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/forward3_1024.hpp +2573 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/forward3_256.hpp +1296 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/forward3_512.hpp +1293 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/forward4_1024.hpp +2573 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/forward4_256.hpp +1296 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/forward4_512.hpp +1293 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/forward5_1024.hpp +2573 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/forward5_256.hpp +1296 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/forward5_512.hpp +1293 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/reverse1_1024.hpp +2571 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/reverse1_256.hpp +1296 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/reverse1_512.hpp +1291 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/reverse2_1024.hpp +2571 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/reverse2_256.hpp +1296 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/reverse2_512.hpp +1293 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/reverse3_1024.hpp +2571 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/reverse3_256.hpp +1296 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/reverse3_512.hpp +1293 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/reverse4_1024.hpp +2571 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/reverse4_256.hpp +1296 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/reverse4_512.hpp +1293 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/reverse5_1024.hpp +2571 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/reverse5_256.hpp +1296 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/limits/reverse5_512.hpp +1293 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/reverse1.hpp +25 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/reverse2.hpp +25 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/reverse3.hpp +25 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/reverse4.hpp +25 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/iter/reverse5.hpp +25 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/limits/local_1024.hpp +1549 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/limits/local_256.hpp +782 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/limits/local_512.hpp +781 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/limits/rlocal_1024.hpp +1549 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/limits/rlocal_256.hpp +782 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/limits/rlocal_512.hpp +781 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/local.hpp +27 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/iteration/detail/rlocal.hpp +25 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/dmc/fold_left.hpp +3 -2
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/edg/fold_left.hpp +28 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/edg/fold_right.hpp +29 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/edg/limits/fold_left_1024.hpp +1044 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/edg/limits/fold_left_256.hpp +533 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/edg/limits/fold_left_512.hpp +532 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/edg/limits/fold_right_1024.hpp +1557 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/edg/limits/fold_right_256.hpp +791 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/edg/limits/fold_right_512.hpp +789 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/fold_left.hpp +28 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/fold_right.hpp +26 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/limits/fold_left_1024.hpp +532 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/limits/fold_left_256.hpp +275 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/limits/fold_left_512.hpp +276 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/limits/fold_right_1024.hpp +532 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/limits/fold_right_256.hpp +275 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/detail/limits/fold_right_512.hpp +276 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/enum.hpp +13 -1
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/fold_left.hpp +60 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/fold_right.hpp +44 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/for_each_product.hpp +25 -6
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/limits/fold_left_1024.hpp +531 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/limits/fold_left_256.hpp +275 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/limits/fold_left_512.hpp +275 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/reverse.hpp +35 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/size.hpp +56 -1
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/to_array.hpp +21 -88
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/list/to_tuple.hpp +14 -14
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/logical/bool.hpp +22 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/logical/limits/bool_1024.hpp +531 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/logical/limits/bool_256.hpp +275 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/logical/limits/bool_512.hpp +275 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/punctuation/is_begin_parens.hpp +1 -5
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/punctuation/remove_parens.hpp +0 -4
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/deduce_r.hpp +27 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/detail/dmc/for.hpp +3 -2
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/detail/edg/for.hpp +26 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/detail/edg/limits/for_1024.hpp +1044 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/detail/edg/limits/for_256.hpp +533 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/detail/edg/limits/for_512.hpp +532 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/detail/for.hpp +28 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/detail/limits/for_1024.hpp +1044 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/detail/limits/for_256.hpp +533 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/detail/limits/for_512.hpp +532 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/detail/msvc/for.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/for.hpp +121 -7
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/limits/for_1024.hpp +531 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/limits/for_256.hpp +275 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/limits/for_512.hpp +275 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/limits/repeat_1024.hpp +1557 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/limits/repeat_256.hpp +791 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/limits/repeat_512.hpp +789 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/repeat.hpp +22 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/repetition/repeat_from_to.hpp +27 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/detail/binary_transform.hpp +6 -11
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/detail/is_empty.hpp +11 -11
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/detail/limits/split_1024.hpp +530 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/detail/limits/split_256.hpp +272 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/detail/limits/split_512.hpp +274 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/detail/split.hpp +23 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/elem.hpp +23 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/enum.hpp +23 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/fold_left.hpp +52 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/fold_right.hpp +37 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/for_each.hpp +27 -27
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/for_each_i.hpp +28 -28
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/limits/elem_1024.hpp +530 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/limits/elem_256.hpp +272 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/limits/elem_512.hpp +274 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/limits/enum_1024.hpp +530 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/limits/enum_256.hpp +272 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/limits/enum_512.hpp +274 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/limits/fold_left_1024.hpp +1556 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/limits/fold_left_256.hpp +1053 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/limits/fold_left_512.hpp +788 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/limits/fold_right_1024.hpp +530 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/limits/fold_right_256.hpp +273 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/limits/fold_right_512.hpp +274 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/limits/size_1024.hpp +1043 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/limits/size_256.hpp +532 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/limits/size_512.hpp +531 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/replace.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/rest_n.hpp +16 -10
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/size.hpp +23 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/variadic_seq_to_seq.hpp +0 -2
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/stringize.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/detail/is_single_return.hpp +5 -5
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/eat.hpp +4 -18
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/elem.hpp +11 -157
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/insert.hpp +2 -7
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/limits/reverse_128.hpp +403 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/limits/reverse_256.hpp +1171 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/limits/reverse_64.hpp +83 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/limits/to_list_128.hpp +595 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/limits/to_list_256.hpp +1747 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/limits/to_list_64.hpp +83 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/limits/to_seq_128.hpp +403 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/limits/to_seq_256.hpp +1171 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/limits/to_seq_64.hpp +84 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/pop_back.hpp +16 -21
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/pop_front.hpp +16 -21
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/push_back.hpp +1 -6
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/push_front.hpp +1 -7
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/rem.hpp +21 -43
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/remove.hpp +16 -21
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/replace.hpp +2 -7
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/reverse.hpp +38 -25
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/size.hpp +13 -6
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/to_array.hpp +15 -12
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/to_list.hpp +37 -25
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/tuple/to_seq.hpp +38 -24
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/detail/has_opt.hpp +39 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/detail/is_single_return.hpp +5 -5
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/elem.hpp +93 -71
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/has_opt.hpp +34 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/limits/elem_128.hpp +275 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/limits/elem_256.hpp +723 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/limits/elem_64.hpp +81 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/limits/size_128.hpp +47 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/limits/size_256.hpp +53 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/limits/size_64.hpp +23 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/size.hpp +39 -4
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/to_array.hpp +15 -9
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/to_list.hpp +9 -2
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/to_seq.hpp +1 -3
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic/to_tuple.hpp +1 -3
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/variadic.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/wstringize.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/random/additive_combine.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/gray_coded_qrng.hpp +190 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/int_float_pair.hpp +3 -4
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/integer_log2.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/mixmax_skip_N17.ipp +287 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/niederreiter_base2_table.hpp +514 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/operators.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/qrng_base.hpp +291 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/seed.hpp +9 -11
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/seed_impl.hpp +13 -14
- data/src/cxx_supportlib/vendor-modified/boost/random/detail/sobol_table.hpp +4107 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/discard_block.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/random/discrete_distribution.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/faure.hpp +367 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/generate_canonical.hpp +2 -3
- data/src/cxx_supportlib/vendor-modified/boost/random/hyperexponential_distribution.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/random/independent_bits.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/random/inversive_congruential.hpp +3 -4
- data/src/cxx_supportlib/vendor-modified/boost/random/lagged_fibonacci.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/random/linear_congruential.hpp +5 -7
- data/src/cxx_supportlib/vendor-modified/boost/random/linear_feedback_shift.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/random/mersenne_twister.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/random/mixmax.hpp +313 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/niederreiter_base2.hpp +360 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/random_device.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/random/shuffle_order.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/random/sobol.hpp +238 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/splitmix64.hpp +203 -0
- data/src/cxx_supportlib/vendor-modified/boost/random/subtract_with_carry.hpp +18 -18
- data/src/cxx_supportlib/vendor-modified/boost/random/traits.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/random/uniform_int_distribution.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/random/uniform_real_distribution.hpp +4 -5
- data/src/cxx_supportlib/vendor-modified/boost/random/uniform_smallint.hpp +4 -5
- data/src/cxx_supportlib/vendor-modified/boost/random/xor_combine.hpp +4 -2
- data/src/cxx_supportlib/vendor-modified/boost/random.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/range/as_literal.hpp +43 -6
- data/src/cxx_supportlib/vendor-modified/boost/range/begin.hpp +17 -15
- data/src/cxx_supportlib/vendor-modified/boost/range/concepts.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/range/config.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/range/detail/common.hpp +1 -3
- data/src/cxx_supportlib/vendor-modified/boost/range/detail/implementation_help.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/range/distance.hpp +11 -5
- data/src/cxx_supportlib/vendor-modified/boost/range/end.hpp +18 -16
- data/src/cxx_supportlib/vendor-modified/boost/range/has_range_iterator.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/range/iterator_range_core.hpp +0 -32
- data/src/cxx_supportlib/vendor-modified/boost/range/rbegin.hpp +0 -13
- data/src/cxx_supportlib/vendor-modified/boost/range/rend.hpp +0 -13
- data/src/cxx_supportlib/vendor-modified/boost/range/size.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/ratio/config.hpp +4 -78
- data/src/cxx_supportlib/vendor-modified/boost/ratio/detail/gcd_lcm.hpp +53 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/detail/is_evenly_divisible_by.hpp +32 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/detail/is_ratio.hpp +28 -0
- data/src/cxx_supportlib/vendor-modified/boost/ratio/include.hpp +1 -3
- data/src/cxx_supportlib/vendor-modified/boost/ratio/ratio.hpp +5 -249
- data/src/cxx_supportlib/vendor-modified/boost/ratio/ratio_fwd.hpp +30 -56
- data/src/cxx_supportlib/vendor-modified/boost/ratio/ratio_io.hpp +0 -533
- data/src/cxx_supportlib/vendor-modified/boost/rational.hpp +95 -51
- data/src/cxx_supportlib/vendor-modified/boost/regex/concepts.hpp +82 -76
- data/src/cxx_supportlib/vendor-modified/boost/regex/config/borland.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/regex/config.hpp +104 -101
- data/src/cxx_supportlib/vendor-modified/boost/regex/pattern_except.hpp +4 -72
- data/src/cxx_supportlib/vendor-modified/boost/regex/pending/object_cache.hpp +4 -140
- data/src/cxx_supportlib/vendor-modified/boost/regex/pending/unicode_iterator.hpp +8 -761
- data/src/cxx_supportlib/vendor-modified/boost/regex/regex_traits.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/user.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/basic_regex.hpp +32 -16
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/basic_regex_creator.hpp +50 -25
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/basic_regex_parser.hpp +64 -30
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/c_regex_traits.hpp +342 -42
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/cpp_regex_traits.hpp +111 -28
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/cregex.hpp +0 -117
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/icu.hpp +1516 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/indexed_bit_flag.hpp +54 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/match_flags.hpp +18 -7
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/match_results.hpp +21 -12
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/mem_block_cache.hpp +39 -1
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/object_cache.hpp +171 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/pattern_except.hpp +128 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/perl_matcher.hpp +42 -18
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/perl_matcher_common.hpp +24 -10
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/perl_matcher_non_recursive.hpp +57 -54
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/perl_matcher_recursive.hpp +12 -12
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/primary_transform.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/protected_call.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/regex.hpp +0 -36
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/regex_format.hpp +10 -8
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/regex_iterator.hpp +2 -8
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/regex_raw_buffer.hpp +38 -7
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/regex_split.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/regex_token_iterator.hpp +9 -15
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/regex_traits.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/regex_traits_defaults.hpp +653 -36
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/regex_workaround.hpp +7 -4
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/states.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/sub_match.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/u32regex_iterator.hpp +1 -9
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/u32regex_token_iterator.hpp +3 -11
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/unicode_iterator.hpp +871 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/w32_regex_traits.hpp +526 -40
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/basic_regex.hpp +734 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/basic_regex_creator.hpp +1576 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/basic_regex_parser.hpp +3130 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/c_regex_traits.hpp +474 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/char_regex_traits.hpp +59 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/cpp_regex_traits.hpp +1040 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/cregex.hpp +195 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/error_type.hpp +59 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/icu.hpp +1402 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/iterator_category.hpp +84 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/iterator_traits.hpp +32 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/match_flags.hpp +156 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/match_results.hpp +667 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/mem_block_cache.hpp +173 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/object_cache.hpp +160 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/pattern_except.hpp +106 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/perl_matcher.hpp +576 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/perl_matcher_common.hpp +921 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/perl_matcher_non_recursive.hpp +1874 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/primary_transform.hpp +120 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/regbase.hpp +158 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/regex.hpp +106 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/regex_format.hpp +1124 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/regex_fwd.hpp +73 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/regex_grep.hpp +98 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/regex_iterator.hpp +173 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/regex_match.hpp +92 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/regex_merge.hpp +71 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/regex_raw_buffer.hpp +213 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/regex_replace.hpp +77 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/regex_search.hpp +103 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/regex_split.hpp +152 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/regex_token_iterator.hpp +255 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/regex_traits.hpp +130 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/regex_traits_defaults.hpp +996 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/regex_workaround.hpp +159 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/states.hpp +299 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/sub_match.hpp +382 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/syntax_type.hpp +105 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/u32regex_iterator.hpp +177 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/u32regex_token_iterator.hpp +312 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/unicode_iterator.hpp +862 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v5/w32_regex_traits.hpp +1311 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex_fwd.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/allocate_shared_array.hpp +94 -444
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/bad_weak_ptr.hpp +5 -5
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/atomic_count.hpp +8 -4
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/atomic_count_gcc.hpp +7 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/atomic_count_gcc_atomic.hpp +63 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/atomic_count_gcc_x86.hpp +11 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/atomic_count_nt.hpp +7 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/atomic_count_pt.hpp +7 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/atomic_count_spin.hpp +7 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/atomic_count_std_atomic.hpp +8 -1
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/atomic_count_sync.hpp +13 -2
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/local_counted_base.hpp +9 -9
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/local_sp_deleter.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/requires_cxx11.hpp +23 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/shared_count.hpp +88 -48
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_convertible.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base.hpp +12 -16
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_acc_ia64.hpp +15 -4
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_aix.hpp +12 -4
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_cw_ppc.hpp +17 -4
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_gcc_atomic.hpp +148 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_gcc_ia64.hpp +15 -4
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_gcc_mips.hpp +15 -4
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_gcc_ppc.hpp +15 -4
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_gcc_sparc.hpp +15 -4
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_gcc_x86.hpp +15 -4
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_nt.hpp +27 -17
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_pt.hpp +18 -9
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_snc_ps3.hpp +16 -5
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_spin.hpp +12 -4
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_std_atomic.hpp +27 -18
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_sync.hpp +12 -4
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_vacpp_ppc.hpp +15 -4
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_impl.hpp +48 -31
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_has_gcc_intrinsics.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_has_sync_intrinsics.hpp +69 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_typeinfo_.hpp +58 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/spinlock.hpp +7 -9
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/spinlock_gcc_arm.hpp +7 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp +94 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/spinlock_nt.hpp +7 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/spinlock_pt.hpp +7 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/spinlock_std_atomic.hpp +13 -5
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/spinlock_sync.hpp +8 -1
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/yield_k.hpp +13 -141
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/enable_shared_from_this.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/intrusive_ptr.hpp +49 -12
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/make_shared.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/make_shared_array.hpp +23 -22
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/make_shared_object.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/make_unique.hpp +70 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/scoped_array.hpp +3 -2
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/scoped_ptr.hpp +3 -2
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/shared_array.hpp +6 -4
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/shared_ptr.hpp +120 -40
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/weak_ptr.hpp +80 -8
- data/src/cxx_supportlib/vendor-modified/boost/static_assert.hpp +5 -4
- data/src/cxx_supportlib/vendor-modified/boost/system/config.hpp +4 -24
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/append_int.hpp +32 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/cerrno.hpp +329 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/config.hpp +83 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/enable_if.hpp +23 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/errc.hpp +126 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_category.hpp +183 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_category_impl.hpp +166 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_code.hpp +659 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_condition.hpp +326 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/generic_category.hpp +123 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/generic_category_message.hpp +120 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/interop_category.hpp +107 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/is_same.hpp +23 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/mutex.hpp +128 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/snprintf.hpp +28 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/std_category.hpp +84 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/std_category_impl.hpp +97 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/system_category.hpp +110 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/system_category_impl.hpp +61 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/system_category_message.hpp +71 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/throws.hpp +59 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/errc.hpp +57 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/error_category.hpp +13 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/error_code.hpp +12 -760
- data/src/cxx_supportlib/vendor-modified/boost/system/error_condition.hpp +13 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/generic_category.hpp +13 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/is_error_code_enum.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/is_error_condition_enum.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/system_category.hpp +14 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/system_error.hpp +30 -59
- data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/deque_adaptor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/deque_base.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/detail/sync_deque_base.hpp +9 -21
- data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/detail/sync_queue_base.hpp +9 -21
- data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/queue_adaptor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/queue_base.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/queue_op_status.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/sync_bounded_queue.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/sync_deque.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/sync_priority_queue.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/sync_queue.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/sync_timed_queue.hpp +80 -14
- data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/deque.hpp +1 -24
- data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/functional.hpp +1 -14
- data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/list.hpp +1 -14
- data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/memory/allocator_arg.hpp +2 -12
- data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/memory/allocator_traits.hpp +0 -11
- data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/memory/config.hpp +0 -2
- data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/memory/default_delete.hpp +0 -16
- data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/memory/pointer_traits.hpp +0 -11
- data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/memory/scoped_allocator.hpp +0 -11
- data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/memory/shared_ptr.hpp +0 -19
- data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/memory/unique_ptr.hpp +4 -6
- data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/queue.hpp +1 -24
- data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/tuple.hpp +1 -18
- data/src/cxx_supportlib/vendor-modified/boost/thread/csbl/vector.hpp +1 -14
- data/src/cxx_supportlib/vendor-modified/boost/thread/detail/config.hpp +18 -3
- data/src/cxx_supportlib/vendor-modified/boost/thread/detail/invoke.hpp +27 -21
- data/src/cxx_supportlib/vendor-modified/boost/thread/detail/move.hpp +13 -6
- data/src/cxx_supportlib/vendor-modified/boost/thread/detail/nullary_function.hpp +8 -3
- data/src/cxx_supportlib/vendor-modified/boost/thread/detail/platform_time.hpp +8 -8
- data/src/cxx_supportlib/vendor-modified/boost/thread/detail/string_to_unsigned.hpp +55 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/detail/string_trim.hpp +29 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/detail/thread.hpp +33 -12
- data/src/cxx_supportlib/vendor-modified/boost/thread/detail/thread_safety.hpp +160 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/detail/tss_hooks.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/thread/exceptions.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/thread/executors/basic_thread_pool.hpp +27 -1
- data/src/cxx_supportlib/vendor-modified/boost/thread/executors/executor.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/executors/executor_adaptor.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/executors/generic_executor_ref.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/executors/inline_executor.hpp +8 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/executors/loop_executor.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/executors/scheduled_thread_pool.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/executors/scheduler.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/executors/scheduling_adaptor.hpp +3 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/executors/serial_executor.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/executors/serial_executor_cont.hpp +9 -2
- data/src/cxx_supportlib/vendor-modified/boost/thread/executors/thread_executor.hpp +6 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/executors/work.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/thread/experimental/parallel/v2/task_region.hpp +6 -2
- data/src/cxx_supportlib/vendor-modified/boost/thread/externally_locked.hpp +6 -5
- data/src/cxx_supportlib/vendor-modified/boost/thread/future.hpp +12 -3
- data/src/cxx_supportlib/vendor-modified/boost/thread/futures/wait_for_any.hpp +4 -2
- data/src/cxx_supportlib/vendor-modified/boost/thread/interruption.hpp +22 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/lock_guard.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/thread/lockable_traits.hpp +31 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/poly_lockable.hpp +7 -2
- data/src/cxx_supportlib/vendor-modified/boost/thread/poly_shared_lockable.hpp +16 -12
- data/src/cxx_supportlib/vendor-modified/boost/thread/poly_shared_lockable_adapter.hpp +3 -4
- data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/condition_variable.hpp +20 -26
- data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/condition_variable_fwd.hpp +8 -15
- data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/mutex.hpp +17 -88
- data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/once.hpp +29 -28
- data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/once_atomic.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/pthread_helpers.hpp +163 -18
- data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/pthread_mutex_scoped_lock.hpp +5 -4
- data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/recursive_mutex.hpp +25 -25
- data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/shared_mutex.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/thread_data.hpp +21 -13
- data/src/cxx_supportlib/vendor-modified/boost/thread/scoped_thread.hpp +9 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/synchronized_value.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/thread/thread_guard.hpp +5 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/tss.hpp +23 -41
- data/src/cxx_supportlib/vendor-modified/boost/thread/user_scheduler.hpp +3 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/v2/shared_mutex.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/thread/xtime.hpp +6 -6
- data/src/cxx_supportlib/vendor-modified/boost/throw_exception.hpp +232 -56
- data/src/cxx_supportlib/vendor-modified/boost/token_functions.hpp +3 -2
- data/src/cxx_supportlib/vendor-modified/boost/tuple/detail/tuple_basic.hpp +35 -30
- data/src/cxx_supportlib/vendor-modified/boost/tuple/tuple.hpp +52 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/add_pointer.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/aligned_storage.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/alignment_of.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/conjunction.hpp +40 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/copy_cv_ref.hpp +31 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/copy_reference.hpp +35 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/common_arithmetic_type.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/config.hpp +36 -3
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/detector.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/has_binary_operator.hpp +6 -6
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/has_postfix_operator.hpp +55 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/has_prefix_operator.hpp +72 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/is_function_cxx_03.hpp +108 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/is_function_cxx_11.hpp +676 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/is_function_msvc10_fix.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/is_function_ptr_helper.hpp +27 -27
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/is_function_ptr_tester.hpp +415 -255
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/is_likely_lambda.hpp +4 -3
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp +27 -27
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/is_mem_fun_pointer_tester.hpp +1345 -1542
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/is_member_function_pointer_cxx_03.hpp +117 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/is_member_function_pointer_cxx_11.hpp +697 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/is_rvalue_reference_msvc10_fix.hpp +43 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/is_swappable_cxx_11.hpp +70 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/detected.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/detected_or.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/disjunction.hpp +40 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/enable_if.hpp +37 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/extent.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_dereference.hpp +344 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_minus.hpp +11 -6
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_minus_assign.hpp +11 -6
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_nothrow_copy.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_plus_assign.hpp +11 -6
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_post_decrement.hpp +21 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_post_increment.hpp +21 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_pre_decrement.hpp +21 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_pre_increment.hpp +22 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_trivial_move_assign.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_trivial_move_constructor.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/integral_constant.hpp +6 -16
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/integral_promotion.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/intrinsics.hpp +39 -15
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_array.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_base_and_derived.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_bounded_array.hpp +42 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_complete.hpp +6 -3
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_compound.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_const.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_constructible.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_convertible.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_copy_assignable.hpp +3 -4
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_copy_constructible.hpp +4 -6
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_default_constructible.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_destructible.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_detected.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_detected_convertible.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_detected_exact.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_empty.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_enum.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_final.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_floating_point.hpp +22 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_function.hpp +4 -79
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_fundamental.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_integral.hpp +6 -3
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_lvalue_reference.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_member_function_pointer.hpp +3 -97
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_member_pointer.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_noncopyable.hpp +39 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_nothrow_move_assignable.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_nothrow_move_constructible.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_nothrow_swappable.hpp +4 -24
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_pointer.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_rvalue_reference.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_same.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_scoped_enum.hpp +26 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_signed.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_swappable.hpp +92 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_trivially_copyable.hpp +31 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_unbounded_array.hpp +41 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_unscoped_enum.hpp +25 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_unsigned.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_virtual_base_of.hpp +105 -64
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_volatile.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/make_void.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/negation.hpp +23 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/nonesuch.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/rank.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/remove_all_extents.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/remove_const.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/remove_cv.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/remove_extent.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/remove_volatile.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/type_with_alignment.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/typeof/constant.hpp +26 -0
- data/src/cxx_supportlib/vendor-modified/boost/typeof/decltype.hpp +2 -3
- data/src/cxx_supportlib/vendor-modified/boost/typeof/incr_registration_group.hpp +1 -10
- data/src/cxx_supportlib/vendor-modified/boost/typeof/msvc/typeof_impl.hpp +9 -10
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/bitset.hpp +2 -4
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/complex.hpp +2 -4
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/deque.hpp +2 -5
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/fstream.hpp +2 -15
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/functional.hpp +4 -51
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/iostream.hpp +2 -6
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/istream.hpp +2 -9
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/iterator.hpp +2 -46
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/list.hpp +2 -5
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/locale.hpp +2 -29
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/map.hpp +2 -9
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/memory.hpp +4 -9
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/ostream.hpp +2 -6
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/queue.hpp +2 -5
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/set.hpp +2 -9
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/sstream.hpp +2 -19
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/stack.hpp +2 -5
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/streambuf.hpp +2 -5
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/string.hpp +2 -12
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/utility.hpp +2 -4
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/valarray.hpp +2 -10
- data/src/cxx_supportlib/vendor-modified/boost/typeof/std/vector.hpp +2 -5
- data/src/cxx_supportlib/vendor-modified/boost/typeof/typeof.hpp +8 -202
- data/src/cxx_supportlib/vendor-modified/boost/unordered/concurrent_flat_map.hpp +872 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/concurrent_flat_map_fwd.hpp +66 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/concurrent_flat_set.hpp +728 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/concurrent_flat_set_fwd.hpp +67 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/allocator_constructed.hpp +59 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/archive_constructed.hpp +71 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/bad_archive_exception.hpp +27 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/concurrent_static_asserts.hpp +105 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/fca.hpp +900 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/concurrent_table.hpp +1792 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/core.hpp +2380 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/cumulative_stats.hpp +177 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/element_type.hpp +64 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/flat_map_types.hpp +86 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/flat_set_types.hpp +44 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/ignore_wshadow.hpp +35 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/node_handle.hpp +204 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/node_map_types.hpp +139 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/node_set_types.hpp +92 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/reentrancy_check.hpp +138 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/restore_wshadow.hpp +11 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/rw_spinlock.hpp +179 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/table.hpp +661 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/foa/tuple_rotate_right.hpp +52 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/implementation.hpp +1462 -3502
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/map.hpp +10 -14
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/mulx.hpp +129 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/narrow_cast.hpp +44 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/opt_storage.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/prime_fmod.hpp +214 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/serialization_version.hpp +74 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/serialize_container.hpp +204 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/serialize_fca_container.hpp +156 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/serialize_tracked_address.hpp +104 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/set.hpp +8 -13
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/static_assert.hpp +16 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/throw_exception.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/type_traits.hpp +226 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/xmx.hpp +75 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/hash_traits.hpp +70 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_flat_map.hpp +812 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_flat_map_fwd.hpp +59 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_flat_set.hpp +622 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_flat_set_fwd.hpp +58 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_map.hpp +768 -1002
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_map_fwd.hpp +35 -13
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_node_map.hpp +907 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_node_map_fwd.hpp +59 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_node_set.hpp +711 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_node_set_fwd.hpp +58 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_set.hpp +547 -672
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_set_fwd.hpp +35 -15
- data/src/cxx_supportlib/vendor-modified/boost/utility/base_from_member.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/utility/binary.hpp +3 -2
- data/src/cxx_supportlib/vendor-modified/boost/utility/detail/minstd_rand.hpp +4 -43
- data/src/cxx_supportlib/vendor-modified/boost/utility/detail/result_of_iterate.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/utility/detail/result_of_variadic.hpp +190 -0
- data/src/cxx_supportlib/vendor-modified/boost/utility/in_place_factory.hpp +6 -0
- data/src/cxx_supportlib/vendor-modified/boost/utility/result_of.hpp +33 -11
- data/src/cxx_supportlib/vendor-modified/boost/utility/string_ref.hpp +11 -44
- data/src/cxx_supportlib/vendor-modified/boost/utility/string_view.hpp +56 -52
- data/src/cxx_supportlib/vendor-modified/boost/utility/swap.hpp +4 -1
- data/src/cxx_supportlib/vendor-modified/boost/utility/typed_in_place_factory.hpp +6 -1
- data/src/cxx_supportlib/vendor-modified/boost/utility/value_init.hpp +41 -75
- data/src/cxx_supportlib/vendor-modified/boost/version.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/jsoncpp/jsoncpp.cpp +2 -9
- data/src/cxx_supportlib/vendor-modified/modp_b64_data.h +0 -4
- data/src/cxx_supportlib/vendor-modified/modp_b64_strict_aliasing.cpp +7 -3
- data/src/cxx_supportlib/vendor-modified/websocketpp/changelog.md +444 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/readme.md +49 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/close.hpp +353 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/common/asio.hpp +141 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/common/functional.hpp +100 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/common/md5.hpp +448 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/common/memory.hpp +88 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/common/thread.hpp +88 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/config/core.hpp +297 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/connection.hpp +1642 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/endpoint.hpp +700 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/extensions/permessage_deflate/disabled.hpp +129 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/extensions/permessage_deflate/enabled.hpp +817 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/frame.hpp +853 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/http/impl/parser.hpp +200 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/http/parser.hpp +629 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/impl/connection_impl.hpp +2375 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/impl/endpoint_impl.hpp +269 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/processors/base.hpp +299 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/processors/hybi13.hpp +1072 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/roles/client_endpoint.hpp +173 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/roles/server_endpoint.hpp +195 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/sha1/sha1.hpp +189 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/transport/asio/connection.hpp +1197 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/transport/asio/endpoint.hpp +1182 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/transport/asio/security/none.hpp +372 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/transport/asio/security/tls.hpp +474 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/transport/base/endpoint.hpp +77 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/transport/debug/connection.hpp +412 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/transport/debug/endpoint.hpp +140 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/transport/iostream/connection.hpp +714 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/transport/iostream/endpoint.hpp +222 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/transport/stub/connection.hpp +286 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/uri.hpp +356 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/utilities.hpp +180 -0
- data/src/cxx_supportlib/vendor-modified/websocketpp/websocketpp/version.hpp +61 -0
- data/src/helper-scripts/backtrace-sanitizer.rb +2 -2
- data/src/helper-scripts/crash-watch.rb +1 -1
- data/src/helper-scripts/download_binaries/extconf.rb +2 -2
- data/src/helper-scripts/meteor-loader.rb +9 -4
- data/src/helper-scripts/node-loader.js +3 -3
- data/src/helper-scripts/prespawn +3 -2
- data/src/helper-scripts/rack-loader.rb +2 -2
- data/src/helper-scripts/rack-preloader.rb +2 -2
- data/src/helper-scripts/wsgi-loader.py +36 -19
- data/src/nginx_module/ConfigGeneral/AutoGeneratedDefinitions.c +98 -2
- data/src/nginx_module/ConfigGeneral/AutoGeneratedDefinitions.c.cxxcodebuilder +2 -2
- data/src/nginx_module/ConfigGeneral/AutoGeneratedManifestDefaultsInitialization.c +59 -2
- data/src/nginx_module/ConfigGeneral/AutoGeneratedManifestDefaultsInitialization.c.cxxcodebuilder +2 -2
- data/src/nginx_module/ConfigGeneral/AutoGeneratedSetterFuncs.c +122 -2
- data/src/nginx_module/ConfigGeneral/AutoGeneratedSetterFuncs.c.cxxcodebuilder +2 -2
- data/src/nginx_module/ConfigGeneral/ManifestGeneration.c +2 -2
- data/src/nginx_module/Configuration.c +40 -11
- data/src/nginx_module/Configuration.h +1 -1
- data/src/nginx_module/ContentHandler.c +306 -24
- data/src/nginx_module/ContentHandler.h +6 -1
- data/src/nginx_module/LocationConfig/AutoGeneratedCreateFunction.c +49 -2
- data/src/nginx_module/LocationConfig/AutoGeneratedCreateFunction.c.cxxcodebuilder +2 -2
- data/src/nginx_module/LocationConfig/AutoGeneratedHeaderSerialization.c +86 -2
- data/src/nginx_module/LocationConfig/AutoGeneratedHeaderSerialization.c.cxxcodebuilder +2 -2
- data/src/nginx_module/LocationConfig/AutoGeneratedManifestGeneration.c +111 -2
- data/src/nginx_module/LocationConfig/AutoGeneratedManifestGeneration.c.cxxcodebuilder +2 -2
- data/src/nginx_module/LocationConfig/AutoGeneratedMergeFunction.c +23 -2
- data/src/nginx_module/LocationConfig/AutoGeneratedMergeFunction.c.cxxcodebuilder +2 -2
- data/src/nginx_module/LocationConfig/AutoGeneratedStruct.h +36 -2
- data/src/nginx_module/LocationConfig/AutoGeneratedStruct.h.cxxcodebuilder +2 -2
- data/src/nginx_module/MainConfig/AutoGeneratedCreateFunction.c +18 -2
- data/src/nginx_module/MainConfig/AutoGeneratedCreateFunction.c.cxxcodebuilder +2 -2
- data/src/nginx_module/MainConfig/AutoGeneratedManifestGeneration.c +36 -2
- data/src/nginx_module/MainConfig/AutoGeneratedManifestGeneration.c.cxxcodebuilder +2 -2
- data/src/nginx_module/MainConfig/AutoGeneratedStruct.h +14 -2
- data/src/nginx_module/MainConfig/AutoGeneratedStruct.h.cxxcodebuilder +2 -2
- data/src/nginx_module/StaticContentHandler.c +1 -1
- data/src/nginx_module/StaticContentHandler.h +1 -1
- data/src/nginx_module/config +2 -0
- data/src/nginx_module/ngx_http_passenger_module.c +7 -4
- data/src/nginx_module/ngx_http_passenger_module.h +6 -1
- data/src/nodejs_supportlib/phusion_passenger/line_reader.js +2 -2
- data/src/nodejs_supportlib/vendor-copy/winston/lib/winston/common.js +50 -29
- data/src/nodejs_supportlib/vendor-copy/winston/lib/winston/config/cli-config.js +20 -20
- data/src/nodejs_supportlib/vendor-copy/winston/lib/winston/config/npm-config.js +11 -11
- data/src/nodejs_supportlib/vendor-copy/winston/lib/winston/config/syslog-config.js +3 -3
- data/src/nodejs_supportlib/vendor-copy/winston/lib/winston/config.js +8 -2
- data/src/nodejs_supportlib/vendor-copy/winston/lib/winston/container.js +2 -1
- data/src/nodejs_supportlib/vendor-copy/winston/lib/winston/logger.js +174 -146
- data/src/nodejs_supportlib/vendor-copy/winston/lib/winston/transports/console.js +4 -2
- data/src/nodejs_supportlib/vendor-copy/winston/lib/winston/transports/file.js +15 -5
- data/src/nodejs_supportlib/vendor-copy/winston/lib/winston/transports/http.js +14 -4
- data/src/nodejs_supportlib/vendor-copy/winston/lib/winston/transports.js +26 -24
- data/src/nodejs_supportlib/vendor-copy/winston/lib/winston.js +5 -5
- data/src/nodejs_supportlib/vendor-copy/winston/node_modules/async/package.json +4 -13
- data/src/nodejs_supportlib/vendor-copy/winston/node_modules/colors/package.json +19 -33
- data/src/nodejs_supportlib/vendor-copy/winston/node_modules/cycle/package.json +11 -29
- data/src/nodejs_supportlib/vendor-copy/winston/node_modules/eyes/package.json +12 -40
- data/src/nodejs_supportlib/vendor-copy/winston/node_modules/isstream/package.json +3 -12
- data/src/nodejs_supportlib/vendor-copy/winston/node_modules/stack-trace/lib/stack-trace.js +49 -24
- data/src/nodejs_supportlib/vendor-copy/winston/node_modules/stack-trace/package.json +4 -16
- data/src/nodejs_supportlib/vendor-copy/winston/package.json +11 -55
- data/src/ruby_native_extension/extconf.rb +9 -2
- data/src/ruby_native_extension/passenger_native_support.c +3 -2
- data/src/ruby_supportlib/phusion_passenger/abstract_installer.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/admin_tools/instance.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/admin_tools/instance_registry.rb +15 -3
- data/src/ruby_supportlib/phusion_passenger/admin_tools/memory_stats.rb +3 -3
- data/src/ruby_supportlib/phusion_passenger/admin_tools.rb +3 -3
- data/src/ruby_supportlib/phusion_passenger/apache2/config_options.rb +55 -2
- data/src/ruby_supportlib/phusion_passenger/apache2/config_utils.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/common_library.rb +19 -6
- data/src/ruby_supportlib/phusion_passenger/config/about_command.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/config/agent_compiler.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/config/api_call_command.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/config/build_native_support_command.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/config/command.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/config/compile_agent_command.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/config/compile_nginx_engine_command.rb +8 -4
- data/src/ruby_supportlib/phusion_passenger/config/detach_process_command.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/config/download_agent_command.rb +3 -3
- data/src/ruby_supportlib/phusion_passenger/config/download_nginx_engine_command.rb +3 -3
- data/src/ruby_supportlib/phusion_passenger/config/install_agent_command.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/config/install_standalone_runtime_command.rb +12 -2
- data/src/ruby_supportlib/phusion_passenger/config/installation_utils.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/config/list_instances_command.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/config/main.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/config/nginx_engine_compiler.rb +16 -7
- data/src/ruby_supportlib/phusion_passenger/config/reopen_logs_command.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/config/restart_app_command.rb +18 -14
- data/src/ruby_supportlib/phusion_passenger/config/system_metrics_command.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/config/system_properties_command.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/config/utils.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/config/validate_install_command.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/console_text_template.rb +9 -4
- data/src/ruby_supportlib/phusion_passenger/constants.rb +6 -4
- data/src/ruby_supportlib/phusion_passenger/debug_logging.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/loader_shared_helpers.rb +39 -12
- data/src/ruby_supportlib/phusion_passenger/message_channel.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/message_client.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/native_support.rb +12 -7
- data/src/ruby_supportlib/phusion_passenger/nginx/config_options.rb +84 -2
- data/src/ruby_supportlib/phusion_passenger/packaging.rb +5 -3
- data/src/ruby_supportlib/phusion_passenger/platform_info/apache.rb +12 -15
- data/src/ruby_supportlib/phusion_passenger/platform_info/apache_detector.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/platform_info/binary_compatibility.rb +25 -21
- data/src/ruby_supportlib/phusion_passenger/platform_info/compiler.rb +49 -8
- data/src/ruby_supportlib/phusion_passenger/platform_info/crypto.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/platform_info/curl.rb +5 -2
- data/src/ruby_supportlib/phusion_passenger/platform_info/cxx_portability.rb +10 -4
- data/src/ruby_supportlib/phusion_passenger/platform_info/depcheck_specs/gems.rb +10 -0
- data/src/ruby_supportlib/phusion_passenger/platform_info/depcheck_specs/libs.rb +10 -6
- data/src/ruby_supportlib/phusion_passenger/platform_info/linux.rb +4 -3
- data/src/ruby_supportlib/phusion_passenger/platform_info/networking.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/platform_info/openssl.rb +7 -2
- data/src/ruby_supportlib/phusion_passenger/platform_info/operating_system.rb +49 -30
- data/src/ruby_supportlib/phusion_passenger/platform_info/pcre.rb +64 -0
- data/src/ruby_supportlib/phusion_passenger/platform_info/ruby.rb +4 -4
- data/src/ruby_supportlib/phusion_passenger/platform_info/zlib.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/platform_info.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/plugin.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/preloader_shared_helpers.rb +14 -8
- data/src/ruby_supportlib/phusion_passenger/public_api.rb +5 -2
- data/src/ruby_supportlib/phusion_passenger/rack/handler.rb +73 -0
- data/src/ruby_supportlib/phusion_passenger/rack/out_of_band_gc.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/rack/thread_handler_extension.rb +24 -3
- data/src/ruby_supportlib/phusion_passenger/rack_handler.rb +32 -58
- data/src/ruby_supportlib/phusion_passenger/request_handler/thread_handler.rb +25 -20
- data/src/ruby_supportlib/phusion_passenger/request_handler.rb +13 -9
- data/src/ruby_supportlib/phusion_passenger/ruby_core_enhancements.rb +7 -2
- data/src/ruby_supportlib/phusion_passenger/ruby_core_io_enhancements.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/simple_benchmarking.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/standalone/app_finder.rb +3 -2
- data/src/ruby_supportlib/phusion_passenger/standalone/command.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/standalone/config_options_list.rb +53 -3
- data/src/ruby_supportlib/phusion_passenger/standalone/config_utils.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/standalone/control_utils.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/standalone/main.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/standalone/start_command/builtin_engine.rb +13 -5
- data/src/ruby_supportlib/phusion_passenger/standalone/start_command/nginx_engine.rb +32 -21
- data/src/ruby_supportlib/phusion_passenger/standalone/start_command.rb +3 -7
- data/src/ruby_supportlib/phusion_passenger/standalone/status_command.rb +3 -4
- data/src/ruby_supportlib/phusion_passenger/standalone/stop_command.rb +9 -3
- data/src/ruby_supportlib/phusion_passenger/standalone/version_command.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/utils/ansi_colors.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/utils/download.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/utils/file_system_watcher.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/utils/hosts_file_parser.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/utils/json.rb +7 -198
- data/src/ruby_supportlib/phusion_passenger/utils/lock.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/utils/native_support_utils.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/utils/progress_bar.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/utils/strscan.rb +67 -0
- data/src/ruby_supportlib/phusion_passenger/utils/tee_input.rb +6 -0
- data/src/ruby_supportlib/phusion_passenger/utils/terminal_choice_menu.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/utils/unseekable_socket.rb +17 -13
- data/src/ruby_supportlib/phusion_passenger/utils.rb +8 -17
- data/src/ruby_supportlib/phusion_passenger/vendor/crash_watch/app.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/vendor/crash_watch/base.rb +1 -1
- data/src/ruby_supportlib/phusion_passenger/vendor/crash_watch/gdb_controller.rb +5 -1
- data/src/ruby_supportlib/phusion_passenger/vendor/crash_watch/lldb_controller.rb +6 -2
- data/src/ruby_supportlib/phusion_passenger/vendor/crash_watch/utils.rb +1 -1
- data/src/ruby_supportlib/phusion_passenger/vendor/crash_watch/version.rb +1 -1
- data/src/ruby_supportlib/phusion_passenger/vendor/daemon_controller/lock_file.rb +1 -1
- data/src/ruby_supportlib/phusion_passenger/vendor/daemon_controller/spawn.rb +1 -1
- data/src/ruby_supportlib/phusion_passenger/vendor/daemon_controller/version.rb +1 -1
- data/src/ruby_supportlib/phusion_passenger/vendor/daemon_controller.rb +1 -1
- data/src/ruby_supportlib/phusion_passenger.rb +12 -11
- data/src/schema_printer/SchemaPrinterMain.cpp +2 -2
- data/src/schema_printer/SchemaPrinterMain.cpp.cxxcodebuilder +2 -2
- metadata +935 -308
- data/src/cxx_supportlib/ServerKit/http_parser.cpp +0 -2265
- data/src/cxx_supportlib/ServerKit/http_parser.h +0 -330
- data/src/cxx_supportlib/vendor-copy/websocketpp/changelog.md +0 -342
- data/src/cxx_supportlib/vendor-copy/websocketpp/readme.md +0 -49
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/close.hpp +0 -342
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/asio.hpp +0 -131
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/functional.hpp +0 -105
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/md5.hpp +0 -448
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/memory.hpp +0 -89
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/common/thread.hpp +0 -84
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/config/core.hpp +0 -285
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/connection.hpp +0 -1651
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/endpoint.hpp +0 -700
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/extensions/permessage_deflate/disabled.hpp +0 -128
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/extensions/permessage_deflate/enabled.hpp +0 -752
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/frame.hpp +0 -861
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/http/impl/parser.hpp +0 -196
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/http/parser.hpp +0 -619
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/impl/connection_impl.hpp +0 -2372
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/impl/endpoint_impl.hpp +0 -269
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/processors/base.hpp +0 -299
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/processors/hybi13.hpp +0 -1056
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/roles/client_endpoint.hpp +0 -173
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/roles/server_endpoint.hpp +0 -190
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/sha1/sha1.hpp +0 -189
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/asio/connection.hpp +0 -1204
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/asio/endpoint.hpp +0 -1147
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/asio/security/none.hpp +0 -370
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/asio/security/tls.hpp +0 -484
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/base/endpoint.hpp +0 -77
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/debug/connection.hpp +0 -412
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/debug/endpoint.hpp +0 -140
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/iostream/connection.hpp +0 -714
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/iostream/endpoint.hpp +0 -222
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/transport/stub/connection.hpp +0 -286
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/uri.hpp +0 -355
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/utilities.hpp +0 -182
- data/src/cxx_supportlib/vendor-copy/websocketpp/websocketpp/version.hpp +0 -61
- data/src/cxx_supportlib/vendor-modified/boost/array.hpp +0 -457
- data/src/cxx_supportlib/vendor-modified/boost/asio/datagram_socket_service.hpp +0 -468
- data/src/cxx_supportlib/vendor-modified/boost/asio/deadline_timer_service.hpp +0 -175
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/gcc_arm_fenced_block.hpp +0 -93
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/gcc_hppa_fenced_block.hpp +0 -70
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/gcc_sync_fenced_block.hpp +0 -67
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/gcc_x86_fenced_block.hpp +0 -101
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_invoke_helpers.hpp +0 -57
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/reactive_serial_port_service.ipp +0 -154
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/macos_fenced_block.hpp +0 -64
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/old_win_sdk_compat.hpp +0 -216
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_serial_port_service.hpp +0 -238
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor_fwd.hpp +0 -42
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/solaris_fenced_block.hpp +0 -64
- data/src/cxx_supportlib/vendor-modified/boost/asio/detail/variadic_templates.hpp +0 -119
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detached.hpp +0 -67
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/co_spawn.hpp +0 -878
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/detached.hpp +0 -93
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/redirect_error.hpp +0 -296
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/redirect_error.hpp +0 -69
- data/src/cxx_supportlib/vendor-modified/boost/asio/experimental.hpp +0 -22
- data/src/cxx_supportlib/vendor-modified/boost/asio/handler_alloc_hook.hpp +0 -83
- data/src/cxx_supportlib/vendor-modified/boost/asio/handler_invoke_hook.hpp +0 -87
- data/src/cxx_supportlib/vendor-modified/boost/asio/handler_type.hpp +0 -52
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/defer.hpp +0 -79
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/dispatch.hpp +0 -80
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/handler_alloc_hook.ipp +0 -54
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/post.hpp +0 -79
- data/src/cxx_supportlib/vendor-modified/boost/asio/impl/src.cpp +0 -25
- data/src/cxx_supportlib/vendor-modified/boost/asio/ip/resolver_service.hpp +0 -202
- data/src/cxx_supportlib/vendor-modified/boost/asio/posix/stream_descriptor_service.hpp +0 -281
- data/src/cxx_supportlib/vendor-modified/boost/asio/raw_socket_service.hpp +0 -468
- data/src/cxx_supportlib/vendor-modified/boost/asio/seq_packet_socket_service.hpp +0 -418
- data/src/cxx_supportlib/vendor-modified/boost/asio/serial_port_service.hpp +0 -251
- data/src/cxx_supportlib/vendor-modified/boost/asio/signal_set_service.hpp +0 -144
- data/src/cxx_supportlib/vendor-modified/boost/asio/socket_acceptor_service.hpp +0 -374
- data/src/cxx_supportlib/vendor-modified/boost/asio/stream_socket_service.hpp +0 -414
- data/src/cxx_supportlib/vendor-modified/boost/asio/waitable_timer_service.hpp +0 -212
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_handle.hpp +0 -275
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_object_handle.hpp +0 -184
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_random_access_handle.hpp +0 -378
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_stream_handle.hpp +0 -361
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/object_handle.hpp +0 -383
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/object_handle_service.hpp +0 -185
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/overlapped_handle.hpp +0 -333
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/overlapped_ptr.hpp +0 -118
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/random_access_handle.hpp +0 -380
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/random_access_handle_service.hpp +0 -216
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/stream_handle.hpp +0 -364
- data/src/cxx_supportlib/vendor-modified/boost/asio/windows/stream_handle_service.hpp +0 -212
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/atomic_flag.hpp +0 -71
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/atomic_template.hpp +0 -1248
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_gcc_alpha.hpp +0 -34
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_gcc_arm.hpp +0 -39
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_gcc_ppc.hpp +0 -37
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_gcc_sparc.hpp +0 -34
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_gcc_x86.hpp +0 -40
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_msvc_arm.hpp +0 -34
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_msvc_x86.hpp +0 -55
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/hwcaps_gcc_arm.hpp +0 -67
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/hwcaps_gcc_ppc.hpp +0 -42
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/hwcaps_gcc_x86.hpp +0 -58
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/integral_extend.hpp +0 -105
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/lockpool.hpp +0 -51
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/operations.hpp +0 -24
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/operations_fwd.hpp +0 -35
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/operations_lockfree.hpp +0 -30
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_cas_based.hpp +0 -107
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_emulated.hpp +0 -162
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_extending_cas_based.hpp +0 -69
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_alpha.hpp +0 -876
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_arm.hpp +0 -1397
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_atomic.hpp +0 -392
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_ppc.hpp +0 -1232
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_sparc.hpp +0 -240
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_sync.hpp +0 -240
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_x86.hpp +0 -563
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_x86_dcas.hpp +0 -555
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_linux_arm.hpp +0 -180
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_msvc_arm.hpp +0 -824
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_msvc_x86.hpp +0 -908
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/storage_type.hpp +0 -207
- data/src/cxx_supportlib/vendor-modified/boost/bind/bind_cc.hpp +0 -117
- data/src/cxx_supportlib/vendor-modified/boost/bind/bind_mf2_cc.hpp +0 -228
- data/src/cxx_supportlib/vendor-modified/boost/bind/bind_mf_cc.hpp +0 -441
- data/src/cxx_supportlib/vendor-modified/boost/bind/bind_template.hpp +0 -345
- data/src/cxx_supportlib/vendor-modified/boost/bind/mem_fn_cc.hpp +0 -103
- data/src/cxx_supportlib/vendor-modified/boost/bind/mem_fn_template.hpp +0 -1047
- data/src/cxx_supportlib/vendor-modified/boost/bind/mem_fn_vw.hpp +0 -130
- data/src/cxx_supportlib/vendor-modified/boost/bind/storage.hpp +0 -475
- data/src/cxx_supportlib/vendor-modified/boost/bind.hpp +0 -41
- data/src/cxx_supportlib/vendor-modified/boost/call_traits.hpp +0 -20
- data/src/cxx_supportlib/vendor-modified/boost/checked_delete.hpp +0 -17
- data/src/cxx_supportlib/vendor-modified/boost/config/platform/cygwin.hpp +0 -68
- data/src/cxx_supportlib/vendor-modified/boost/container_hash/detail/float_functions.hpp +0 -336
- data/src/cxx_supportlib/vendor-modified/boost/container_hash/detail/hash_float.hpp +0 -271
- data/src/cxx_supportlib/vendor-modified/boost/container_hash/detail/limits.hpp +0 -62
- data/src/cxx_supportlib/vendor-modified/boost/container_hash/extensions.hpp +0 -414
- data/src/cxx_supportlib/vendor-modified/boost/detail/atomic_count.hpp +0 -21
- data/src/cxx_supportlib/vendor-modified/boost/detail/call_traits.hpp +0 -172
- data/src/cxx_supportlib/vendor-modified/boost/detail/container_fwd.hpp +0 -157
- data/src/cxx_supportlib/vendor-modified/boost/detail/endian.hpp +0 -11
- data/src/cxx_supportlib/vendor-modified/boost/detail/iterator.hpp +0 -39
- data/src/cxx_supportlib/vendor-modified/boost/detail/no_exceptions_support.hpp +0 -17
- data/src/cxx_supportlib/vendor-modified/boost/detail/sp_typeinfo.hpp +0 -36
- data/src/cxx_supportlib/vendor-modified/boost/function/detail/function_iterate.hpp +0 -16
- data/src/cxx_supportlib/vendor-modified/boost/function/detail/gen_maybe_include.pl +0 -39
- data/src/cxx_supportlib/vendor-modified/boost/function/detail/maybe_include.hpp +0 -369
- data/src/cxx_supportlib/vendor-modified/boost/function/detail/prologue.hpp +0 -26
- data/src/cxx_supportlib/vendor-modified/boost/function/gen_function_N.pl +0 -26
- data/src/cxx_supportlib/vendor-modified/boost/functional/hash_fwd.hpp +0 -6
- data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/c_regex_traits.cpp +0 -206
- data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/cpp_regex_traits.cpp +0 -117
- data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/cregex.cpp +0 -660
- data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/instances.cpp +0 -32
- data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/regex_raw_buffer.cpp +0 -72
- data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/regex_traits_defaults.cpp +0 -692
- data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/wc_regex_traits.cpp +0 -314
- data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/winstances.cpp +0 -35
- data/src/cxx_supportlib/vendor-modified/boost/math/policies/policy.hpp +0 -1040
- data/src/cxx_supportlib/vendor-modified/boost/math/special_functions/detail/fp_traits.hpp +0 -581
- data/src/cxx_supportlib/vendor-modified/boost/math/special_functions/detail/round_fwd.hpp +0 -93
- data/src/cxx_supportlib/vendor-modified/boost/math/special_functions/fpclassify.hpp +0 -640
- data/src/cxx_supportlib/vendor-modified/boost/math/special_functions/math_fwd.hpp +0 -1651
- data/src/cxx_supportlib/vendor-modified/boost/math/special_functions/sign.hpp +0 -194
- data/src/cxx_supportlib/vendor-modified/boost/math/tools/config.hpp +0 -469
- data/src/cxx_supportlib/vendor-modified/boost/math/tools/promotion.hpp +0 -182
- data/src/cxx_supportlib/vendor-modified/boost/math/tools/real_cast.hpp +0 -31
- data/src/cxx_supportlib/vendor-modified/boost/math/tools/user.hpp +0 -105
- data/src/cxx_supportlib/vendor-modified/boost/parameter/aux_/overloads.hpp +0 -88
- data/src/cxx_supportlib/vendor-modified/boost/pointer_to_other.hpp +0 -55
- data/src/cxx_supportlib/vendor-modified/boost/predef/detail/endian_compat.h +0 -26
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/android.h +0 -45
- data/src/cxx_supportlib/vendor-modified/boost/ratio/detail/mpl/abs.hpp +0 -89
- data/src/cxx_supportlib/vendor-modified/boost/ratio/detail/mpl/gcd.hpp +0 -124
- data/src/cxx_supportlib/vendor-modified/boost/ratio/detail/mpl/lcm.hpp +0 -126
- data/src/cxx_supportlib/vendor-modified/boost/ratio/detail/mpl/sign.hpp +0 -89
- data/src/cxx_supportlib/vendor-modified/boost/ratio/detail/overflow_helpers.hpp +0 -367
- data/src/cxx_supportlib/vendor-modified/boost/ratio/detail/ratio_io.hpp +0 -1342
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/abs.hpp +0 -30
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/arithmetic.hpp +0 -22
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/comparison.hpp +0 -19
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/divides.hpp +0 -30
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/equal_to.hpp +0 -30
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/gcd.hpp +0 -30
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/greater.hpp +0 -30
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/greater_equal.hpp +0 -30
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/lcm.hpp +0 -30
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/less.hpp +0 -30
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/less_equal.hpp +0 -30
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/minus.hpp +0 -30
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/negate.hpp +0 -30
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/not_equal_to.hpp +0 -30
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/numeric_cast.hpp +0 -31
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/plus.hpp +0 -30
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/rational_c_tag.hpp +0 -25
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/rational_constant.hpp +0 -15
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/sign.hpp +0 -30
- data/src/cxx_supportlib/vendor-modified/boost/ratio/mpl/times.hpp +0 -30
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/fileiter.hpp +0 -455
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/instances.hpp +0 -225
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/atomic_count_solaris.hpp +0 -59
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_clang.hpp +0 -150
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_cw_x86.hpp +0 -160
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_solaris.hpp +0 -115
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_has_sync.hpp +0 -69
- data/src/cxx_supportlib/vendor-modified/boost/swap.hpp +0 -17
- data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_code.ipp +0 -496
- data/src/cxx_supportlib/vendor-modified/boost/type_index/stl_type_index.hpp +0 -276
- data/src/cxx_supportlib/vendor-modified/boost/type_index/type_index_facade.hpp +0 -297
- data/src/cxx_supportlib/vendor-modified/boost/type_index.hpp +0 -265
- data/src/cxx_supportlib/vendor-modified/boost/typeof/dmc/typeof_impl.hpp +0 -100
- data/src/cxx_supportlib/vendor-modified/boost/typeof/encode_decode.hpp +0 -61
- data/src/cxx_supportlib/vendor-modified/boost/typeof/encode_decode_params.hpp +0 -34
- data/src/cxx_supportlib/vendor-modified/boost/typeof/int_encoding.hpp +0 -118
- data/src/cxx_supportlib/vendor-modified/boost/typeof/integral_template_param.hpp +0 -80
- data/src/cxx_supportlib/vendor-modified/boost/typeof/message.hpp +0 -8
- data/src/cxx_supportlib/vendor-modified/boost/typeof/modifiers.hpp +0 -121
- data/src/cxx_supportlib/vendor-modified/boost/typeof/native.hpp +0 -60
- data/src/cxx_supportlib/vendor-modified/boost/typeof/pointers_data_members.hpp +0 -38
- data/src/cxx_supportlib/vendor-modified/boost/typeof/register_functions.hpp +0 -50
- data/src/cxx_supportlib/vendor-modified/boost/typeof/register_functions_iterate.hpp +0 -135
- data/src/cxx_supportlib/vendor-modified/boost/typeof/register_fundamental.hpp +0 -61
- data/src/cxx_supportlib/vendor-modified/boost/typeof/register_mem_functions.hpp +0 -32
- data/src/cxx_supportlib/vendor-modified/boost/typeof/template_encoding.hpp +0 -160
- data/src/cxx_supportlib/vendor-modified/boost/typeof/template_template_param.hpp +0 -149
- data/src/cxx_supportlib/vendor-modified/boost/typeof/type_encoding.hpp +0 -27
- data/src/cxx_supportlib/vendor-modified/boost/typeof/type_template_param.hpp +0 -37
- data/src/cxx_supportlib/vendor-modified/boost/typeof/typeof_impl.hpp +0 -186
- data/src/cxx_supportlib/vendor-modified/boost/typeof/unsupported.hpp +0 -29
- data/src/cxx_supportlib/vendor-modified/boost/typeof/vector.hpp +0 -166
- data/src/cxx_supportlib/vendor-modified/boost/typeof/vector100.hpp +0 -321
- data/src/cxx_supportlib/vendor-modified/boost/typeof/vector150.hpp +0 -471
- data/src/cxx_supportlib/vendor-modified/boost/typeof/vector200.hpp +0 -621
- data/src/cxx_supportlib/vendor-modified/boost/typeof/vector50.hpp +0 -171
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/fwd.hpp +0 -63
- data/src/nodejs_supportlib/vendor-copy/winston/lib/winston/transports/daily-rotate-file.js +0 -601
- data/src/nodejs_supportlib/vendor-copy/winston/lib/winston/transports/webhook.js +0 -146
- data/src/nodejs_supportlib/vendor-copy/winston/node_modules/pkginfo/LICENSE +0 -19
- data/src/nodejs_supportlib/vendor-copy/winston/node_modules/pkginfo/lib/pkginfo.js +0 -136
- data/src/nodejs_supportlib/vendor-copy/winston/node_modules/pkginfo/package.json +0 -56
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/COPYING +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/base64/base64.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/client.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/common/asio_ssl.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/common/chrono.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/common/connection_hdl.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/common/cpp11.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/common/network.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/common/platforms.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/common/random.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/common/regex.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/common/stdint.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/common/system_error.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/common/time.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/common/type_traits.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/concurrency/basic.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/concurrency/none.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/config/asio.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/config/asio_client.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/config/asio_no_tls.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/config/asio_no_tls_client.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/config/boost_config.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/config/core_client.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/config/debug.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/config/debug_asio.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/config/debug_asio_no_tls.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/config/minimal_client.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/config/minimal_server.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/connection_base.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/endpoint_base.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/error.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/extensions/extension.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/http/constants.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/http/impl/request.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/http/impl/response.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/http/request.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/http/response.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/impl/utilities_impl.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/logger/basic.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/logger/levels.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/logger/stub.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/logger/syslog.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/message_buffer/alloc.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/message_buffer/message.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/message_buffer/pool.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/processors/hybi00.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/processors/hybi07.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/processors/hybi08.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/processors/processor.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/random/none.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/random/random_device.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/server.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/transport/asio/base.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/transport/asio/security/base.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/transport/base/connection.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/transport/debug/base.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/transport/iostream/base.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/transport/stub/base.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/transport/stub/endpoint.hpp +0 -0
- /data/src/cxx_supportlib/{vendor-copy → vendor-modified}/websocketpp/websocketpp/utf8_validator.hpp +0 -0
@@ -2,7 +2,7 @@
|
|
2
2
|
// read_until.hpp
|
3
3
|
// ~~~~~~~~~~~~~~
|
4
4
|
//
|
5
|
-
// Copyright (c) 2003-
|
5
|
+
// Copyright (c) 2003-2024 Christopher M. Kohlhoff (chris at kohlhoff dot com)
|
6
6
|
//
|
7
7
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
8
8
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
@@ -19,6 +19,7 @@
|
|
19
19
|
#include <cstddef>
|
20
20
|
#include <string>
|
21
21
|
#include <boost/asio/async_result.hpp>
|
22
|
+
#include <boost/asio/buffer.hpp>
|
22
23
|
#include <boost/asio/detail/regex_fwd.hpp>
|
23
24
|
#include <boost/asio/detail/string_view.hpp>
|
24
25
|
#include <boost/asio/detail/type_traits.hpp>
|
@@ -32,19 +33,34 @@
|
|
32
33
|
|
33
34
|
namespace boost {
|
34
35
|
namespace asio {
|
36
|
+
namespace detail {
|
35
37
|
|
36
|
-
|
38
|
+
char (&has_result_type_helper(...))[2];
|
39
|
+
|
40
|
+
template <typename T>
|
41
|
+
char has_result_type_helper(T*, typename T::result_type* = 0);
|
42
|
+
|
43
|
+
template <typename T>
|
44
|
+
struct has_result_type
|
37
45
|
{
|
38
|
-
|
46
|
+
enum { value = (sizeof((has_result_type_helper)((T*)(0))) == 1) };
|
47
|
+
};
|
39
48
|
|
40
|
-
|
41
|
-
|
49
|
+
#if !defined(BOOST_ASIO_NO_DYNAMIC_BUFFER_V1)
|
50
|
+
template <typename> class initiate_async_read_until_delim_v1;
|
51
|
+
template <typename> class initiate_async_read_until_delim_string_v1;
|
52
|
+
#if defined(BOOST_ASIO_HAS_BOOST_REGEX)
|
53
|
+
template <typename> class initiate_async_read_until_expr_v1;
|
54
|
+
#endif // defined(BOOST_ASIO_HAS_BOOST_REGEX)
|
55
|
+
template <typename> class initiate_async_read_until_match_v1;
|
56
|
+
#endif // !defined(BOOST_ASIO_NO_DYNAMIC_BUFFER_V1)
|
57
|
+
template <typename> class initiate_async_read_until_delim_v2;
|
58
|
+
template <typename> class initiate_async_read_until_delim_string_v2;
|
59
|
+
#if defined(BOOST_ASIO_HAS_BOOST_REGEX)
|
60
|
+
template <typename> class initiate_async_read_until_expr_v2;
|
61
|
+
#endif // defined(BOOST_ASIO_HAS_BOOST_REGEX)
|
62
|
+
template <typename> class initiate_async_read_until_match_v2;
|
42
63
|
|
43
|
-
template <typename T>
|
44
|
-
struct has_result_type
|
45
|
-
{
|
46
|
-
enum { value = (sizeof((has_result_type_helper)((T*)(0))) == 1) };
|
47
|
-
};
|
48
64
|
} // namespace detail
|
49
65
|
|
50
66
|
/// Type trait used to determine whether a type can be used as a match condition
|
@@ -58,8 +74,7 @@ struct is_match_condition
|
|
58
74
|
#else
|
59
75
|
enum
|
60
76
|
{
|
61
|
-
value = boost::asio::is_function<
|
62
|
-
typename boost::asio::remove_pointer<T>::type>::value
|
77
|
+
value = boost::asio::is_function<remove_pointer_t<T>>::value
|
63
78
|
|| detail::has_result_type<T>::value
|
64
79
|
};
|
65
80
|
#endif
|
@@ -68,12 +83,15 @@ struct is_match_condition
|
|
68
83
|
/**
|
69
84
|
* @defgroup read_until boost::asio::read_until
|
70
85
|
*
|
71
|
-
* @brief
|
72
|
-
*
|
73
|
-
* indicates a
|
86
|
+
* @brief The @c read_until function is a composed operation that reads data
|
87
|
+
* into a dynamic buffer sequence, or into a streambuf, until it contains a
|
88
|
+
* delimiter, matches a regular expression, or a function object indicates a
|
89
|
+
* match.
|
74
90
|
*/
|
75
91
|
/*@{*/
|
76
92
|
|
93
|
+
#if !defined(BOOST_ASIO_NO_DYNAMIC_BUFFER_V1)
|
94
|
+
|
77
95
|
/// Read data into a dynamic buffer sequence until it contains a specified
|
78
96
|
/// delimiter.
|
79
97
|
/**
|
@@ -111,7 +129,7 @@ struct is_match_condition
|
|
111
129
|
* @par Example
|
112
130
|
* To read data into a @c std::string until a newline is encountered:
|
113
131
|
* @code std::string data;
|
114
|
-
* std::
|
132
|
+
* std::size_t n = boost::asio::read_until(s,
|
115
133
|
* boost::asio::dynamic_buffer(data), '\n');
|
116
134
|
* std::string line = data.substr(0, n);
|
117
135
|
* data.erase(0, n); @endcode
|
@@ -127,9 +145,15 @@ struct is_match_condition
|
|
127
145
|
* This data may be the start of a new line, to be extracted by a subsequent
|
128
146
|
* @c read_until operation.
|
129
147
|
*/
|
130
|
-
template <typename SyncReadStream, typename
|
148
|
+
template <typename SyncReadStream, typename DynamicBuffer_v1>
|
131
149
|
std::size_t read_until(SyncReadStream& s,
|
132
|
-
|
150
|
+
DynamicBuffer_v1&& buffers, char delim,
|
151
|
+
constraint_t<
|
152
|
+
is_dynamic_buffer_v1<decay_t<DynamicBuffer_v1>>::value
|
153
|
+
> = 0,
|
154
|
+
constraint_t<
|
155
|
+
!is_dynamic_buffer_v2<decay_t<DynamicBuffer_v1>>::value
|
156
|
+
> = 0);
|
133
157
|
|
134
158
|
/// Read data into a dynamic buffer sequence until it contains a specified
|
135
159
|
/// delimiter.
|
@@ -165,10 +189,16 @@ std::size_t read_until(SyncReadStream& s,
|
|
165
189
|
* typically leave that data in the dynamic buffer sequence for a subsequent
|
166
190
|
* read_until operation to examine.
|
167
191
|
*/
|
168
|
-
template <typename SyncReadStream, typename
|
192
|
+
template <typename SyncReadStream, typename DynamicBuffer_v1>
|
169
193
|
std::size_t read_until(SyncReadStream& s,
|
170
|
-
|
171
|
-
char delim, boost::system::error_code& ec
|
194
|
+
DynamicBuffer_v1&& buffers,
|
195
|
+
char delim, boost::system::error_code& ec,
|
196
|
+
constraint_t<
|
197
|
+
is_dynamic_buffer_v1<decay_t<DynamicBuffer_v1>>::value
|
198
|
+
> = 0,
|
199
|
+
constraint_t<
|
200
|
+
!is_dynamic_buffer_v2<decay_t<DynamicBuffer_v1>>::value
|
201
|
+
> = 0);
|
172
202
|
|
173
203
|
/// Read data into a dynamic buffer sequence until it contains a specified
|
174
204
|
/// delimiter.
|
@@ -205,7 +235,7 @@ std::size_t read_until(SyncReadStream& s,
|
|
205
235
|
* @par Example
|
206
236
|
* To read data into a @c std::string until a CR-LF sequence is encountered:
|
207
237
|
* @code std::string data;
|
208
|
-
* std::
|
238
|
+
* std::size_t n = boost::asio::read_until(s,
|
209
239
|
* boost::asio::dynamic_buffer(data), "\r\n");
|
210
240
|
* std::string line = data.substr(0, n);
|
211
241
|
* data.erase(0, n); @endcode
|
@@ -221,10 +251,16 @@ std::size_t read_until(SyncReadStream& s,
|
|
221
251
|
* This data may be the start of a new line, to be extracted by a subsequent
|
222
252
|
* @c read_until operation.
|
223
253
|
*/
|
224
|
-
template <typename SyncReadStream, typename
|
254
|
+
template <typename SyncReadStream, typename DynamicBuffer_v1>
|
225
255
|
std::size_t read_until(SyncReadStream& s,
|
226
|
-
|
227
|
-
BOOST_ASIO_STRING_VIEW_PARAM delim
|
256
|
+
DynamicBuffer_v1&& buffers,
|
257
|
+
BOOST_ASIO_STRING_VIEW_PARAM delim,
|
258
|
+
constraint_t<
|
259
|
+
is_dynamic_buffer_v1<decay_t<DynamicBuffer_v1>>::value
|
260
|
+
> = 0,
|
261
|
+
constraint_t<
|
262
|
+
!is_dynamic_buffer_v2<decay_t<DynamicBuffer_v1>>::value
|
263
|
+
> = 0);
|
228
264
|
|
229
265
|
/// Read data into a dynamic buffer sequence until it contains a specified
|
230
266
|
/// delimiter.
|
@@ -260,11 +296,17 @@ std::size_t read_until(SyncReadStream& s,
|
|
260
296
|
* typically leave that data in the dynamic buffer sequence for a subsequent
|
261
297
|
* read_until operation to examine.
|
262
298
|
*/
|
263
|
-
template <typename SyncReadStream, typename
|
299
|
+
template <typename SyncReadStream, typename DynamicBuffer_v1>
|
264
300
|
std::size_t read_until(SyncReadStream& s,
|
265
|
-
|
301
|
+
DynamicBuffer_v1&& buffers,
|
266
302
|
BOOST_ASIO_STRING_VIEW_PARAM delim,
|
267
|
-
boost::system::error_code& ec
|
303
|
+
boost::system::error_code& ec,
|
304
|
+
constraint_t<
|
305
|
+
is_dynamic_buffer_v1<decay_t<DynamicBuffer_v1>>::value
|
306
|
+
> = 0,
|
307
|
+
constraint_t<
|
308
|
+
!is_dynamic_buffer_v2<decay_t<DynamicBuffer_v1>>::value
|
309
|
+
> = 0);
|
268
310
|
|
269
311
|
#if !defined(BOOST_ASIO_NO_EXTENSIONS)
|
270
312
|
#if defined(BOOST_ASIO_HAS_BOOST_REGEX) \
|
@@ -308,7 +350,7 @@ std::size_t read_until(SyncReadStream& s,
|
|
308
350
|
* @par Example
|
309
351
|
* To read data into a @c std::string until a CR-LF sequence is encountered:
|
310
352
|
* @code std::string data;
|
311
|
-
* std::
|
353
|
+
* std::size_t n = boost::asio::read_until(s,
|
312
354
|
* boost::asio::dynamic_buffer(data), boost::regex("\r\n"));
|
313
355
|
* std::string line = data.substr(0, n);
|
314
356
|
* data.erase(0, n); @endcode
|
@@ -324,10 +366,15 @@ std::size_t read_until(SyncReadStream& s,
|
|
324
366
|
* This data may be the start of a new line, to be extracted by a subsequent
|
325
367
|
* @c read_until operation.
|
326
368
|
*/
|
327
|
-
template <typename SyncReadStream, typename
|
328
|
-
std::size_t read_until(SyncReadStream& s,
|
329
|
-
|
330
|
-
|
369
|
+
template <typename SyncReadStream, typename DynamicBuffer_v1, typename Traits>
|
370
|
+
std::size_t read_until(SyncReadStream& s, DynamicBuffer_v1&& buffers,
|
371
|
+
const boost::basic_regex<char, Traits>& expr,
|
372
|
+
constraint_t<
|
373
|
+
is_dynamic_buffer_v1<decay_t<DynamicBuffer_v1>>::value
|
374
|
+
> = 0,
|
375
|
+
constraint_t<
|
376
|
+
!is_dynamic_buffer_v2<decay_t<DynamicBuffer_v1>>::value
|
377
|
+
> = 0);
|
331
378
|
|
332
379
|
/// Read data into a dynamic buffer sequence until some part of the data it
|
333
380
|
/// contains matches a regular expression.
|
@@ -365,10 +412,15 @@ std::size_t read_until(SyncReadStream& s,
|
|
365
412
|
* expression. An application will typically leave that data in the dynamic
|
366
413
|
* buffer sequence for a subsequent read_until operation to examine.
|
367
414
|
*/
|
368
|
-
template <typename SyncReadStream, typename
|
369
|
-
std::size_t read_until(SyncReadStream& s,
|
370
|
-
|
371
|
-
|
415
|
+
template <typename SyncReadStream, typename DynamicBuffer_v1, typename Traits>
|
416
|
+
std::size_t read_until(SyncReadStream& s, DynamicBuffer_v1&& buffers,
|
417
|
+
const boost::basic_regex<char, Traits>& expr, boost::system::error_code& ec,
|
418
|
+
constraint_t<
|
419
|
+
is_dynamic_buffer_v1<decay_t<DynamicBuffer_v1>>::value
|
420
|
+
> = 0,
|
421
|
+
constraint_t<
|
422
|
+
!is_dynamic_buffer_v2<decay_t<DynamicBuffer_v1>>::value
|
423
|
+
> = 0);
|
372
424
|
|
373
425
|
#endif // defined(BOOST_ASIO_HAS_BOOST_REGEX)
|
374
426
|
// || defined(GENERATING_DOCUMENTATION)
|
@@ -401,7 +453,7 @@ std::size_t read_until(SyncReadStream& s,
|
|
401
453
|
* @code pair<iterator, bool> match_condition(iterator begin, iterator end);
|
402
454
|
* @endcode
|
403
455
|
* where @c iterator represents the type:
|
404
|
-
* @code buffers_iterator<typename
|
456
|
+
* @code buffers_iterator<typename DynamicBuffer_v1::const_buffers_type>
|
405
457
|
* @endcode
|
406
458
|
* The iterator parameters @c begin and @c end define the range of bytes to be
|
407
459
|
* scanned to determine whether there is a match. The @c first member of the
|
@@ -476,11 +528,19 @@ std::size_t read_until(SyncReadStream& s,
|
|
476
528
|
* @endcode
|
477
529
|
*/
|
478
530
|
template <typename SyncReadStream,
|
479
|
-
typename
|
531
|
+
typename DynamicBuffer_v1, typename MatchCondition>
|
480
532
|
std::size_t read_until(SyncReadStream& s,
|
481
|
-
|
533
|
+
DynamicBuffer_v1&& buffers,
|
482
534
|
MatchCondition match_condition,
|
483
|
-
|
535
|
+
constraint_t<
|
536
|
+
is_match_condition<MatchCondition>::value
|
537
|
+
> = 0,
|
538
|
+
constraint_t<
|
539
|
+
is_dynamic_buffer_v1<decay_t<DynamicBuffer_v1>>::value
|
540
|
+
> = 0,
|
541
|
+
constraint_t<
|
542
|
+
!is_dynamic_buffer_v2<decay_t<DynamicBuffer_v1>>::value
|
543
|
+
> = 0);
|
484
544
|
|
485
545
|
/// Read data into a dynamic buffer sequence until a function object indicates a
|
486
546
|
/// match.
|
@@ -509,7 +569,7 @@ std::size_t read_until(SyncReadStream& s,
|
|
509
569
|
* @code pair<iterator, bool> match_condition(iterator begin, iterator end);
|
510
570
|
* @endcode
|
511
571
|
* where @c iterator represents the type:
|
512
|
-
* @code buffers_iterator<
|
572
|
+
* @code buffers_iterator<DynamicBuffer_v1::const_buffers_type>
|
513
573
|
* @endcode
|
514
574
|
* The iterator parameters @c begin and @c end define the range of bytes to be
|
515
575
|
* scanned to determine whether there is a match. The @c first member of the
|
@@ -536,11 +596,19 @@ std::size_t read_until(SyncReadStream& s,
|
|
536
596
|
* function objects.
|
537
597
|
*/
|
538
598
|
template <typename SyncReadStream,
|
539
|
-
typename
|
599
|
+
typename DynamicBuffer_v1, typename MatchCondition>
|
540
600
|
std::size_t read_until(SyncReadStream& s,
|
541
|
-
|
601
|
+
DynamicBuffer_v1&& buffers,
|
542
602
|
MatchCondition match_condition, boost::system::error_code& ec,
|
543
|
-
|
603
|
+
constraint_t<
|
604
|
+
is_match_condition<MatchCondition>::value
|
605
|
+
> = 0,
|
606
|
+
constraint_t<
|
607
|
+
is_dynamic_buffer_v1<decay_t<DynamicBuffer_v1>>::value
|
608
|
+
> = 0,
|
609
|
+
constraint_t<
|
610
|
+
!is_dynamic_buffer_v2<decay_t<DynamicBuffer_v1>>::value
|
611
|
+
> = 0);
|
544
612
|
|
545
613
|
#if !defined(BOOST_ASIO_NO_IOSTREAM)
|
546
614
|
|
@@ -772,9 +840,10 @@ std::size_t read_until(SyncReadStream& s,
|
|
772
840
|
* This data may be the start of a new line, to be extracted by a subsequent
|
773
841
|
* @c read_until operation.
|
774
842
|
*/
|
775
|
-
template <typename SyncReadStream, typename Allocator>
|
843
|
+
template <typename SyncReadStream, typename Allocator, typename Traits>
|
776
844
|
std::size_t read_until(SyncReadStream& s,
|
777
|
-
boost::asio::basic_streambuf<Allocator>& b,
|
845
|
+
boost::asio::basic_streambuf<Allocator>& b,
|
846
|
+
const boost::basic_regex<char, Traits>& expr);
|
778
847
|
|
779
848
|
/// Read data into a streambuf until some part of the data it contains matches
|
780
849
|
/// a regular expression.
|
@@ -809,9 +878,10 @@ std::size_t read_until(SyncReadStream& s,
|
|
809
878
|
* application will typically leave that data in the streambuf for a subsequent
|
810
879
|
* read_until operation to examine.
|
811
880
|
*/
|
812
|
-
template <typename SyncReadStream, typename Allocator>
|
881
|
+
template <typename SyncReadStream, typename Allocator, typename Traits>
|
813
882
|
std::size_t read_until(SyncReadStream& s,
|
814
|
-
boost::asio::basic_streambuf<Allocator>& b,
|
883
|
+
boost::asio::basic_streambuf<Allocator>& b,
|
884
|
+
const boost::basic_regex<char, Traits>& expr,
|
815
885
|
boost::system::error_code& ec);
|
816
886
|
|
817
887
|
#endif // defined(BOOST_ASIO_HAS_BOOST_REGEX)
|
@@ -920,7 +990,7 @@ std::size_t read_until(SyncReadStream& s,
|
|
920
990
|
template <typename SyncReadStream, typename Allocator, typename MatchCondition>
|
921
991
|
std::size_t read_until(SyncReadStream& s,
|
922
992
|
boost::asio::basic_streambuf<Allocator>& b, MatchCondition match_condition,
|
923
|
-
|
993
|
+
constraint_t<is_match_condition<MatchCondition>::value> = 0);
|
924
994
|
|
925
995
|
/// Read data into a streambuf until a function object indicates a match.
|
926
996
|
/**
|
@@ -977,29 +1047,19 @@ template <typename SyncReadStream, typename Allocator, typename MatchCondition>
|
|
977
1047
|
std::size_t read_until(SyncReadStream& s,
|
978
1048
|
boost::asio::basic_streambuf<Allocator>& b,
|
979
1049
|
MatchCondition match_condition, boost::system::error_code& ec,
|
980
|
-
|
1050
|
+
constraint_t<is_match_condition<MatchCondition>::value> = 0);
|
981
1051
|
|
982
1052
|
#endif // !defined(BOOST_ASIO_NO_IOSTREAM)
|
983
1053
|
#endif // !defined(BOOST_ASIO_NO_EXTENSIONS)
|
1054
|
+
#endif // !defined(BOOST_ASIO_NO_DYNAMIC_BUFFER_V1)
|
984
1055
|
|
985
|
-
|
986
|
-
|
987
|
-
* @defgroup async_read_until boost::asio::async_read_until
|
988
|
-
*
|
989
|
-
* @brief Start an asynchronous operation to read data into a dynamic buffer
|
990
|
-
* sequence, or into a streambuf, until it contains a delimiter, matches a
|
991
|
-
* regular expression, or a function object indicates a match.
|
992
|
-
*/
|
993
|
-
/*@{*/
|
994
|
-
|
995
|
-
/// Start an asynchronous operation to read data into a dynamic buffer sequence
|
996
|
-
/// until it contains a specified delimiter.
|
1056
|
+
/// Read data into a dynamic buffer sequence until it contains a specified
|
1057
|
+
/// delimiter.
|
997
1058
|
/**
|
998
|
-
* This function is used to
|
999
|
-
*
|
1000
|
-
*
|
1001
|
-
*
|
1002
|
-
* is true:
|
1059
|
+
* This function is used to read data into the specified dynamic buffer
|
1060
|
+
* sequence until the dynamic buffer sequence's get area contains the specified
|
1061
|
+
* delimiter. The call will block until one of the following conditions is
|
1062
|
+
* true:
|
1003
1063
|
*
|
1004
1064
|
* @li The get area of the dynamic buffer sequence contains the specified
|
1005
1065
|
* delimiter.
|
@@ -1007,89 +1067,58 @@ std::size_t read_until(SyncReadStream& s,
|
|
1007
1067
|
* @li An error occurred.
|
1008
1068
|
*
|
1009
1069
|
* This operation is implemented in terms of zero or more calls to the stream's
|
1010
|
-
*
|
1011
|
-
*
|
1012
|
-
* asynchronous operation completes immediately. The program must ensure that
|
1013
|
-
* the stream performs no other read operations (such as async_read,
|
1014
|
-
* async_read_until, the stream's async_read_some function, or any other
|
1015
|
-
* composed operations that perform reads) until this operation completes.
|
1070
|
+
* read_some function. If the dynamic buffer sequence's get area already
|
1071
|
+
* contains the delimiter, the function returns immediately.
|
1016
1072
|
*
|
1017
1073
|
* @param s The stream from which the data is to be read. The type must support
|
1018
|
-
* the
|
1074
|
+
* the SyncReadStream concept.
|
1019
1075
|
*
|
1020
1076
|
* @param buffers The dynamic buffer sequence into which the data will be read.
|
1021
|
-
* Although the buffers object may be copied as necessary, ownership of the
|
1022
|
-
* underlying memory blocks is retained by the caller, which must guarantee
|
1023
|
-
* that they remain valid until the handler is called.
|
1024
1077
|
*
|
1025
1078
|
* @param delim The delimiter character.
|
1026
1079
|
*
|
1027
|
-
* @
|
1028
|
-
*
|
1029
|
-
* handler must be:
|
1030
|
-
* @code void handler(
|
1031
|
-
* // Result of operation.
|
1032
|
-
* const boost::system::error_code& error,
|
1080
|
+
* @returns The number of bytes in the dynamic buffer sequence's get area up to
|
1081
|
+
* and including the delimiter.
|
1033
1082
|
*
|
1034
|
-
*
|
1035
|
-
* // get area up to and including the delimiter.
|
1036
|
-
* // 0 if an error occurred.
|
1037
|
-
* std::size_t bytes_transferred
|
1038
|
-
* ); @endcode
|
1039
|
-
* Regardless of whether the asynchronous operation completes immediately or
|
1040
|
-
* not, the handler will not be invoked from within this function. Invocation of
|
1041
|
-
* the handler will be performed in a manner equivalent to using
|
1042
|
-
* boost::asio::io_context::post().
|
1083
|
+
* @throws boost::system::system_error Thrown on failure.
|
1043
1084
|
*
|
1044
|
-
* @note After a successful
|
1045
|
-
*
|
1046
|
-
*
|
1047
|
-
*
|
1085
|
+
* @note After a successful read_until operation, the dynamic buffer sequence
|
1086
|
+
* may contain additional data beyond the delimiter. An application will
|
1087
|
+
* typically leave that data in the dynamic buffer sequence for a subsequent
|
1088
|
+
* read_until operation to examine.
|
1048
1089
|
*
|
1049
1090
|
* @par Example
|
1050
|
-
* To
|
1051
|
-
* encountered:
|
1091
|
+
* To read data into a @c std::string until a newline is encountered:
|
1052
1092
|
* @code std::string data;
|
1053
|
-
*
|
1054
|
-
*
|
1055
|
-
*
|
1056
|
-
*
|
1057
|
-
*
|
1058
|
-
*
|
1059
|
-
* data.erase(0, n);
|
1060
|
-
* ...
|
1061
|
-
* }
|
1062
|
-
* }
|
1063
|
-
* ...
|
1064
|
-
* boost::asio::async_read_until(s, data, '\n', handler); @endcode
|
1065
|
-
* After the @c async_read_until operation completes successfully, the buffer
|
1066
|
-
* @c data contains the delimiter:
|
1093
|
+
* std::size_t n = boost::asio::read_until(s,
|
1094
|
+
* boost::asio::dynamic_buffer(data), '\n');
|
1095
|
+
* std::string line = data.substr(0, n);
|
1096
|
+
* data.erase(0, n); @endcode
|
1097
|
+
* After the @c read_until operation completes successfully, the string @c data
|
1098
|
+
* contains the delimiter:
|
1067
1099
|
* @code { 'a', 'b', ..., 'c', '\n', 'd', 'e', ... } @endcode
|
1068
1100
|
* The call to @c substr then extracts the data up to and including the
|
1069
1101
|
* delimiter, so that the string @c line contains:
|
1070
1102
|
* @code { 'a', 'b', ..., 'c', '\n' } @endcode
|
1071
|
-
* After the call to @c erase, the remaining data is left in the buffer @c
|
1072
|
-
*
|
1103
|
+
* After the call to @c erase, the remaining data is left in the buffer @c b as
|
1104
|
+
* follows:
|
1073
1105
|
* @code { 'd', 'e', ... } @endcode
|
1074
1106
|
* This data may be the start of a new line, to be extracted by a subsequent
|
1075
|
-
* @c
|
1107
|
+
* @c read_until operation.
|
1076
1108
|
*/
|
1077
|
-
template <typename
|
1078
|
-
|
1079
|
-
|
1080
|
-
|
1081
|
-
|
1082
|
-
BOOST_ASIO_MOVE_ARG(DynamicBuffer) buffers,
|
1083
|
-
char delim, BOOST_ASIO_MOVE_ARG(ReadHandler) handler);
|
1109
|
+
template <typename SyncReadStream, typename DynamicBuffer_v2>
|
1110
|
+
std::size_t read_until(SyncReadStream& s, DynamicBuffer_v2 buffers, char delim,
|
1111
|
+
constraint_t<
|
1112
|
+
is_dynamic_buffer_v2<DynamicBuffer_v2>::value
|
1113
|
+
> = 0);
|
1084
1114
|
|
1085
|
-
///
|
1086
|
-
///
|
1115
|
+
/// Read data into a dynamic buffer sequence until it contains a specified
|
1116
|
+
/// delimiter.
|
1087
1117
|
/**
|
1088
|
-
* This function is used to
|
1089
|
-
*
|
1090
|
-
*
|
1091
|
-
*
|
1092
|
-
* is true:
|
1118
|
+
* This function is used to read data into the specified dynamic buffer
|
1119
|
+
* sequence until the dynamic buffer sequence's get area contains the specified
|
1120
|
+
* delimiter. The call will block until one of the following conditions is
|
1121
|
+
* true:
|
1093
1122
|
*
|
1094
1123
|
* @li The get area of the dynamic buffer sequence contains the specified
|
1095
1124
|
* delimiter.
|
@@ -1097,136 +1126,745 @@ async_read_until(AsyncReadStream& s,
|
|
1097
1126
|
* @li An error occurred.
|
1098
1127
|
*
|
1099
1128
|
* This operation is implemented in terms of zero or more calls to the stream's
|
1100
|
-
*
|
1101
|
-
*
|
1102
|
-
* asynchronous operation completes immediately. The program must ensure that
|
1103
|
-
* the stream performs no other read operations (such as async_read,
|
1104
|
-
* async_read_until, the stream's async_read_some function, or any other
|
1105
|
-
* composed operations that perform reads) until this operation completes.
|
1129
|
+
* read_some function. If the dynamic buffer sequence's get area already
|
1130
|
+
* contains the delimiter, the function returns immediately.
|
1106
1131
|
*
|
1107
1132
|
* @param s The stream from which the data is to be read. The type must support
|
1108
|
-
* the
|
1133
|
+
* the SyncReadStream concept.
|
1109
1134
|
*
|
1110
1135
|
* @param buffers The dynamic buffer sequence into which the data will be read.
|
1111
|
-
* Although the buffers object may be copied as necessary, ownership of the
|
1112
|
-
* underlying memory blocks is retained by the caller, which must guarantee
|
1113
|
-
* that they remain valid until the handler is called.
|
1114
1136
|
*
|
1115
|
-
* @param delim The delimiter
|
1137
|
+
* @param delim The delimiter character.
|
1116
1138
|
*
|
1117
|
-
* @param
|
1118
|
-
* Copies will be made of the handler as required. The function signature of the
|
1119
|
-
* handler must be:
|
1120
|
-
* @code void handler(
|
1121
|
-
* // Result of operation.
|
1122
|
-
* const boost::system::error_code& error,
|
1139
|
+
* @param ec Set to indicate what error occurred, if any.
|
1123
1140
|
*
|
1124
|
-
*
|
1125
|
-
*
|
1126
|
-
* // 0 if an error occurred.
|
1127
|
-
* std::size_t bytes_transferred
|
1128
|
-
* ); @endcode
|
1129
|
-
* Regardless of whether the asynchronous operation completes immediately or
|
1130
|
-
* not, the handler will not be invoked from within this function. Invocation of
|
1131
|
-
* the handler will be performed in a manner equivalent to using
|
1132
|
-
* boost::asio::io_context::post().
|
1141
|
+
* @returns The number of bytes in the dynamic buffer sequence's get area up to
|
1142
|
+
* and including the delimiter. Returns 0 if an error occurred.
|
1133
1143
|
*
|
1134
|
-
* @note After a successful
|
1135
|
-
*
|
1136
|
-
*
|
1137
|
-
*
|
1144
|
+
* @note After a successful read_until operation, the dynamic buffer sequence
|
1145
|
+
* may contain additional data beyond the delimiter. An application will
|
1146
|
+
* typically leave that data in the dynamic buffer sequence for a subsequent
|
1147
|
+
* read_until operation to examine.
|
1148
|
+
*/
|
1149
|
+
template <typename SyncReadStream, typename DynamicBuffer_v2>
|
1150
|
+
std::size_t read_until(SyncReadStream& s, DynamicBuffer_v2 buffers,
|
1151
|
+
char delim, boost::system::error_code& ec,
|
1152
|
+
constraint_t<
|
1153
|
+
is_dynamic_buffer_v2<DynamicBuffer_v2>::value
|
1154
|
+
> = 0);
|
1155
|
+
|
1156
|
+
/// Read data into a dynamic buffer sequence until it contains a specified
|
1157
|
+
/// delimiter.
|
1158
|
+
/**
|
1159
|
+
* This function is used to read data into the specified dynamic buffer
|
1160
|
+
* sequence until the dynamic buffer sequence's get area contains the specified
|
1161
|
+
* delimiter. The call will block until one of the following conditions is
|
1162
|
+
* true:
|
1163
|
+
*
|
1164
|
+
* @li The get area of the dynamic buffer sequence contains the specified
|
1165
|
+
* delimiter.
|
1166
|
+
*
|
1167
|
+
* @li An error occurred.
|
1168
|
+
*
|
1169
|
+
* This operation is implemented in terms of zero or more calls to the stream's
|
1170
|
+
* read_some function. If the dynamic buffer sequence's get area already
|
1171
|
+
* contains the delimiter, the function returns immediately.
|
1172
|
+
*
|
1173
|
+
* @param s The stream from which the data is to be read. The type must support
|
1174
|
+
* the SyncReadStream concept.
|
1175
|
+
*
|
1176
|
+
* @param buffers The dynamic buffer sequence into which the data will be read.
|
1177
|
+
*
|
1178
|
+
* @param delim The delimiter string.
|
1179
|
+
*
|
1180
|
+
* @returns The number of bytes in the dynamic buffer sequence's get area up to
|
1181
|
+
* and including the delimiter.
|
1182
|
+
*
|
1183
|
+
* @note After a successful read_until operation, the dynamic buffer sequence
|
1184
|
+
* may contain additional data beyond the delimiter. An application will
|
1185
|
+
* typically leave that data in the dynamic buffer sequence for a subsequent
|
1186
|
+
* read_until operation to examine.
|
1138
1187
|
*
|
1139
1188
|
* @par Example
|
1140
|
-
* To
|
1141
|
-
* encountered:
|
1189
|
+
* To read data into a @c std::string until a CR-LF sequence is encountered:
|
1142
1190
|
* @code std::string data;
|
1143
|
-
*
|
1144
|
-
*
|
1145
|
-
*
|
1146
|
-
*
|
1147
|
-
*
|
1148
|
-
*
|
1149
|
-
* data.erase(0, n);
|
1150
|
-
* ...
|
1151
|
-
* }
|
1152
|
-
* }
|
1153
|
-
* ...
|
1154
|
-
* boost::asio::async_read_until(s, data, "\r\n", handler); @endcode
|
1155
|
-
* After the @c async_read_until operation completes successfully, the string
|
1156
|
-
* @c data contains the delimiter:
|
1191
|
+
* std::size_t n = boost::asio::read_until(s,
|
1192
|
+
* boost::asio::dynamic_buffer(data), "\r\n");
|
1193
|
+
* std::string line = data.substr(0, n);
|
1194
|
+
* data.erase(0, n); @endcode
|
1195
|
+
* After the @c read_until operation completes successfully, the string @c data
|
1196
|
+
* contains the delimiter:
|
1157
1197
|
* @code { 'a', 'b', ..., 'c', '\r', '\n', 'd', 'e', ... } @endcode
|
1158
1198
|
* The call to @c substr then extracts the data up to and including the
|
1159
1199
|
* delimiter, so that the string @c line contains:
|
1160
1200
|
* @code { 'a', 'b', ..., 'c', '\r', '\n' } @endcode
|
1161
|
-
* After the call to @c erase, the remaining data is left in the
|
1162
|
-
*
|
1201
|
+
* After the call to @c erase, the remaining data is left in the buffer @c b as
|
1202
|
+
* follows:
|
1163
1203
|
* @code { 'd', 'e', ... } @endcode
|
1164
1204
|
* This data may be the start of a new line, to be extracted by a subsequent
|
1165
|
-
* @c
|
1205
|
+
* @c read_until operation.
|
1166
1206
|
*/
|
1167
|
-
template <typename
|
1168
|
-
|
1169
|
-
BOOST_ASIO_INITFN_RESULT_TYPE(ReadHandler,
|
1170
|
-
void (boost::system::error_code, std::size_t))
|
1171
|
-
async_read_until(AsyncReadStream& s,
|
1172
|
-
BOOST_ASIO_MOVE_ARG(DynamicBuffer) buffers,
|
1207
|
+
template <typename SyncReadStream, typename DynamicBuffer_v2>
|
1208
|
+
std::size_t read_until(SyncReadStream& s, DynamicBuffer_v2 buffers,
|
1173
1209
|
BOOST_ASIO_STRING_VIEW_PARAM delim,
|
1174
|
-
|
1175
|
-
|
1176
|
-
|
1177
|
-
#if defined(BOOST_ASIO_HAS_BOOST_REGEX) \
|
1178
|
-
|| defined(GENERATING_DOCUMENTATION)
|
1210
|
+
constraint_t<
|
1211
|
+
is_dynamic_buffer_v2<DynamicBuffer_v2>::value
|
1212
|
+
> = 0);
|
1179
1213
|
|
1180
|
-
///
|
1181
|
-
///
|
1214
|
+
/// Read data into a dynamic buffer sequence until it contains a specified
|
1215
|
+
/// delimiter.
|
1182
1216
|
/**
|
1183
|
-
* This function is used to
|
1184
|
-
*
|
1185
|
-
*
|
1186
|
-
*
|
1187
|
-
* following conditions is true:
|
1217
|
+
* This function is used to read data into the specified dynamic buffer
|
1218
|
+
* sequence until the dynamic buffer sequence's get area contains the specified
|
1219
|
+
* delimiter. The call will block until one of the following conditions is
|
1220
|
+
* true:
|
1188
1221
|
*
|
1189
|
-
* @li
|
1190
|
-
*
|
1222
|
+
* @li The get area of the dynamic buffer sequence contains the specified
|
1223
|
+
* delimiter.
|
1191
1224
|
*
|
1192
1225
|
* @li An error occurred.
|
1193
1226
|
*
|
1194
1227
|
* This operation is implemented in terms of zero or more calls to the stream's
|
1195
|
-
*
|
1196
|
-
* the
|
1197
|
-
* the regular expression, this asynchronous operation completes immediately.
|
1198
|
-
* The program must ensure that the stream performs no other read operations
|
1199
|
-
* (such as async_read, async_read_until, the stream's async_read_some
|
1200
|
-
* function, or any other composed operations that perform reads) until this
|
1201
|
-
* operation completes.
|
1228
|
+
* read_some function. If the dynamic buffer sequence's get area already
|
1229
|
+
* contains the delimiter, the function returns immediately.
|
1202
1230
|
*
|
1203
1231
|
* @param s The stream from which the data is to be read. The type must support
|
1204
|
-
* the
|
1232
|
+
* the SyncReadStream concept.
|
1205
1233
|
*
|
1206
1234
|
* @param buffers The dynamic buffer sequence into which the data will be read.
|
1207
|
-
* Although the buffers object may be copied as necessary, ownership of the
|
1208
|
-
* underlying memory blocks is retained by the caller, which must guarantee
|
1209
|
-
* that they remain valid until the handler is called.
|
1210
1235
|
*
|
1211
|
-
* @param
|
1236
|
+
* @param delim The delimiter string.
|
1212
1237
|
*
|
1213
|
-
* @param
|
1214
|
-
* Copies will be made of the handler as required. The function signature of the
|
1215
|
-
* handler must be:
|
1216
|
-
* @code void handler(
|
1217
|
-
* // Result of operation.
|
1218
|
-
* const boost::system::error_code& error,
|
1238
|
+
* @param ec Set to indicate what error occurred, if any.
|
1219
1239
|
*
|
1220
|
-
*
|
1221
|
-
*
|
1222
|
-
*
|
1223
|
-
*
|
1224
|
-
*
|
1225
|
-
*
|
1226
|
-
*
|
1227
|
-
|
1228
|
-
|
1229
|
-
|
1240
|
+
* @returns The number of bytes in the dynamic buffer sequence's get area up to
|
1241
|
+
* and including the delimiter. Returns 0 if an error occurred.
|
1242
|
+
*
|
1243
|
+
* @note After a successful read_until operation, the dynamic buffer sequence
|
1244
|
+
* may contain additional data beyond the delimiter. An application will
|
1245
|
+
* typically leave that data in the dynamic buffer sequence for a subsequent
|
1246
|
+
* read_until operation to examine.
|
1247
|
+
*/
|
1248
|
+
template <typename SyncReadStream, typename DynamicBuffer_v2>
|
1249
|
+
std::size_t read_until(SyncReadStream& s, DynamicBuffer_v2 buffers,
|
1250
|
+
BOOST_ASIO_STRING_VIEW_PARAM delim, boost::system::error_code& ec,
|
1251
|
+
constraint_t<
|
1252
|
+
is_dynamic_buffer_v2<DynamicBuffer_v2>::value
|
1253
|
+
> = 0);
|
1254
|
+
|
1255
|
+
#if !defined(BOOST_ASIO_NO_EXTENSIONS)
|
1256
|
+
#if defined(BOOST_ASIO_HAS_BOOST_REGEX) \
|
1257
|
+
|| defined(GENERATING_DOCUMENTATION)
|
1258
|
+
|
1259
|
+
/// Read data into a dynamic buffer sequence until some part of the data it
|
1260
|
+
/// contains matches a regular expression.
|
1261
|
+
/**
|
1262
|
+
* This function is used to read data into the specified dynamic buffer
|
1263
|
+
* sequence until the dynamic buffer sequence's get area contains some data
|
1264
|
+
* that matches a regular expression. The call will block until one of the
|
1265
|
+
* following conditions is true:
|
1266
|
+
*
|
1267
|
+
* @li A substring of the dynamic buffer sequence's get area matches the
|
1268
|
+
* regular expression.
|
1269
|
+
*
|
1270
|
+
* @li An error occurred.
|
1271
|
+
*
|
1272
|
+
* This operation is implemented in terms of zero or more calls to the stream's
|
1273
|
+
* read_some function. If the dynamic buffer sequence's get area already
|
1274
|
+
* contains data that matches the regular expression, the function returns
|
1275
|
+
* immediately.
|
1276
|
+
*
|
1277
|
+
* @param s The stream from which the data is to be read. The type must support
|
1278
|
+
* the SyncReadStream concept.
|
1279
|
+
*
|
1280
|
+
* @param buffers A dynamic buffer sequence into which the data will be read.
|
1281
|
+
*
|
1282
|
+
* @param expr The regular expression.
|
1283
|
+
*
|
1284
|
+
* @returns The number of bytes in the dynamic buffer sequence's get area up to
|
1285
|
+
* and including the substring that matches the regular expression.
|
1286
|
+
*
|
1287
|
+
* @throws boost::system::system_error Thrown on failure.
|
1288
|
+
*
|
1289
|
+
* @note After a successful read_until operation, the dynamic buffer sequence
|
1290
|
+
* may contain additional data beyond that which matched the regular
|
1291
|
+
* expression. An application will typically leave that data in the dynamic
|
1292
|
+
* buffer sequence for a subsequent read_until operation to examine.
|
1293
|
+
*
|
1294
|
+
* @par Example
|
1295
|
+
* To read data into a @c std::string until a CR-LF sequence is encountered:
|
1296
|
+
* @code std::string data;
|
1297
|
+
* std::size_t n = boost::asio::read_until(s,
|
1298
|
+
* boost::asio::dynamic_buffer(data), boost::regex("\r\n"));
|
1299
|
+
* std::string line = data.substr(0, n);
|
1300
|
+
* data.erase(0, n); @endcode
|
1301
|
+
* After the @c read_until operation completes successfully, the string @c data
|
1302
|
+
* contains the delimiter:
|
1303
|
+
* @code { 'a', 'b', ..., 'c', '\r', '\n', 'd', 'e', ... } @endcode
|
1304
|
+
* The call to @c substr then extracts the data up to and including the
|
1305
|
+
* delimiter, so that the string @c line contains:
|
1306
|
+
* @code { 'a', 'b', ..., 'c', '\r', '\n' } @endcode
|
1307
|
+
* After the call to @c erase, the remaining data is left in the buffer @c b as
|
1308
|
+
* follows:
|
1309
|
+
* @code { 'd', 'e', ... } @endcode
|
1310
|
+
* This data may be the start of a new line, to be extracted by a subsequent
|
1311
|
+
* @c read_until operation.
|
1312
|
+
*/
|
1313
|
+
template <typename SyncReadStream, typename DynamicBuffer_v2, typename Traits>
|
1314
|
+
std::size_t read_until(SyncReadStream& s, DynamicBuffer_v2 buffers,
|
1315
|
+
const boost::basic_regex<char, Traits>& expr,
|
1316
|
+
constraint_t<
|
1317
|
+
is_dynamic_buffer_v2<DynamicBuffer_v2>::value
|
1318
|
+
> = 0);
|
1319
|
+
|
1320
|
+
/// Read data into a dynamic buffer sequence until some part of the data it
|
1321
|
+
/// contains matches a regular expression.
|
1322
|
+
/**
|
1323
|
+
* This function is used to read data into the specified dynamic buffer
|
1324
|
+
* sequence until the dynamic buffer sequence's get area contains some data
|
1325
|
+
* that matches a regular expression. The call will block until one of the
|
1326
|
+
* following conditions is true:
|
1327
|
+
*
|
1328
|
+
* @li A substring of the dynamic buffer sequence's get area matches the
|
1329
|
+
* regular expression.
|
1330
|
+
*
|
1331
|
+
* @li An error occurred.
|
1332
|
+
*
|
1333
|
+
* This operation is implemented in terms of zero or more calls to the stream's
|
1334
|
+
* read_some function. If the dynamic buffer sequence's get area already
|
1335
|
+
* contains data that matches the regular expression, the function returns
|
1336
|
+
* immediately.
|
1337
|
+
*
|
1338
|
+
* @param s The stream from which the data is to be read. The type must support
|
1339
|
+
* the SyncReadStream concept.
|
1340
|
+
*
|
1341
|
+
* @param buffers A dynamic buffer sequence into which the data will be read.
|
1342
|
+
*
|
1343
|
+
* @param expr The regular expression.
|
1344
|
+
*
|
1345
|
+
* @param ec Set to indicate what error occurred, if any.
|
1346
|
+
*
|
1347
|
+
* @returns The number of bytes in the dynamic buffer sequence's get area up to
|
1348
|
+
* and including the substring that matches the regular expression. Returns 0
|
1349
|
+
* if an error occurred.
|
1350
|
+
*
|
1351
|
+
* @note After a successful read_until operation, the dynamic buffer sequence
|
1352
|
+
* may contain additional data beyond that which matched the regular
|
1353
|
+
* expression. An application will typically leave that data in the dynamic
|
1354
|
+
* buffer sequence for a subsequent read_until operation to examine.
|
1355
|
+
*/
|
1356
|
+
template <typename SyncReadStream, typename DynamicBuffer_v2, typename Traits>
|
1357
|
+
std::size_t read_until(SyncReadStream& s, DynamicBuffer_v2 buffers,
|
1358
|
+
const boost::basic_regex<char, Traits>& expr, boost::system::error_code& ec,
|
1359
|
+
constraint_t<
|
1360
|
+
is_dynamic_buffer_v2<DynamicBuffer_v2>::value
|
1361
|
+
> = 0);
|
1362
|
+
|
1363
|
+
#endif // defined(BOOST_ASIO_HAS_BOOST_REGEX)
|
1364
|
+
// || defined(GENERATING_DOCUMENTATION)
|
1365
|
+
|
1366
|
+
/// Read data into a dynamic buffer sequence until a function object indicates a
|
1367
|
+
/// match.
|
1368
|
+
|
1369
|
+
/**
|
1370
|
+
* This function is used to read data into the specified dynamic buffer
|
1371
|
+
* sequence until a user-defined match condition function object, when applied
|
1372
|
+
* to the data contained in the dynamic buffer sequence, indicates a successful
|
1373
|
+
* match. The call will block until one of the following conditions is true:
|
1374
|
+
*
|
1375
|
+
* @li The match condition function object returns a std::pair where the second
|
1376
|
+
* element evaluates to true.
|
1377
|
+
*
|
1378
|
+
* @li An error occurred.
|
1379
|
+
*
|
1380
|
+
* This operation is implemented in terms of zero or more calls to the stream's
|
1381
|
+
* read_some function. If the match condition function object already indicates
|
1382
|
+
* a match, the function returns immediately.
|
1383
|
+
*
|
1384
|
+
* @param s The stream from which the data is to be read. The type must support
|
1385
|
+
* the SyncReadStream concept.
|
1386
|
+
*
|
1387
|
+
* @param buffers A dynamic buffer sequence into which the data will be read.
|
1388
|
+
*
|
1389
|
+
* @param match_condition The function object to be called to determine whether
|
1390
|
+
* a match exists. The signature of the function object must be:
|
1391
|
+
* @code pair<iterator, bool> match_condition(iterator begin, iterator end);
|
1392
|
+
* @endcode
|
1393
|
+
* where @c iterator represents the type:
|
1394
|
+
* @code buffers_iterator<typename DynamicBuffer_v2::const_buffers_type>
|
1395
|
+
* @endcode
|
1396
|
+
* The iterator parameters @c begin and @c end define the range of bytes to be
|
1397
|
+
* scanned to determine whether there is a match. The @c first member of the
|
1398
|
+
* return value is an iterator marking one-past-the-end of the bytes that have
|
1399
|
+
* been consumed by the match function. This iterator is used to calculate the
|
1400
|
+
* @c begin parameter for any subsequent invocation of the match condition. The
|
1401
|
+
* @c second member of the return value is true if a match has been found, false
|
1402
|
+
* otherwise.
|
1403
|
+
*
|
1404
|
+
* @returns The number of bytes in the dynamic_buffer's get area that
|
1405
|
+
* have been fully consumed by the match function.
|
1406
|
+
*
|
1407
|
+
* @throws boost::system::system_error Thrown on failure.
|
1408
|
+
*
|
1409
|
+
* @note After a successful read_until operation, the dynamic buffer sequence
|
1410
|
+
* may contain additional data beyond that which matched the function object.
|
1411
|
+
* An application will typically leave that data in the dynamic buffer sequence
|
1412
|
+
* for a subsequent read_until operation to examine.
|
1413
|
+
|
1414
|
+
* @note The default implementation of the @c is_match_condition type trait
|
1415
|
+
* evaluates to true for function pointers and function objects with a
|
1416
|
+
* @c result_type typedef. It must be specialised for other user-defined
|
1417
|
+
* function objects.
|
1418
|
+
*
|
1419
|
+
* @par Examples
|
1420
|
+
* To read data into a dynamic buffer sequence until whitespace is encountered:
|
1421
|
+
* @code typedef boost::asio::buffers_iterator<
|
1422
|
+
* boost::asio::const_buffers_1> iterator;
|
1423
|
+
*
|
1424
|
+
* std::pair<iterator, bool>
|
1425
|
+
* match_whitespace(iterator begin, iterator end)
|
1426
|
+
* {
|
1427
|
+
* iterator i = begin;
|
1428
|
+
* while (i != end)
|
1429
|
+
* if (std::isspace(*i++))
|
1430
|
+
* return std::make_pair(i, true);
|
1431
|
+
* return std::make_pair(i, false);
|
1432
|
+
* }
|
1433
|
+
* ...
|
1434
|
+
* std::string data;
|
1435
|
+
* boost::asio::read_until(s, data, match_whitespace);
|
1436
|
+
* @endcode
|
1437
|
+
*
|
1438
|
+
* To read data into a @c std::string until a matching character is found:
|
1439
|
+
* @code class match_char
|
1440
|
+
* {
|
1441
|
+
* public:
|
1442
|
+
* explicit match_char(char c) : c_(c) {}
|
1443
|
+
*
|
1444
|
+
* template <typename Iterator>
|
1445
|
+
* std::pair<Iterator, bool> operator()(
|
1446
|
+
* Iterator begin, Iterator end) const
|
1447
|
+
* {
|
1448
|
+
* Iterator i = begin;
|
1449
|
+
* while (i != end)
|
1450
|
+
* if (c_ == *i++)
|
1451
|
+
* return std::make_pair(i, true);
|
1452
|
+
* return std::make_pair(i, false);
|
1453
|
+
* }
|
1454
|
+
*
|
1455
|
+
* private:
|
1456
|
+
* char c_;
|
1457
|
+
* };
|
1458
|
+
*
|
1459
|
+
* namespace asio {
|
1460
|
+
* template <> struct is_match_condition<match_char>
|
1461
|
+
* : public boost::true_type {};
|
1462
|
+
* } // namespace asio
|
1463
|
+
* ...
|
1464
|
+
* std::string data;
|
1465
|
+
* boost::asio::read_until(s, data, match_char('a'));
|
1466
|
+
* @endcode
|
1467
|
+
*/
|
1468
|
+
template <typename SyncReadStream,
|
1469
|
+
typename DynamicBuffer_v2, typename MatchCondition>
|
1470
|
+
std::size_t read_until(SyncReadStream& s, DynamicBuffer_v2 buffers,
|
1471
|
+
MatchCondition match_condition,
|
1472
|
+
constraint_t<
|
1473
|
+
is_match_condition<MatchCondition>::value
|
1474
|
+
> = 0,
|
1475
|
+
constraint_t<
|
1476
|
+
is_dynamic_buffer_v2<DynamicBuffer_v2>::value
|
1477
|
+
> = 0);
|
1478
|
+
|
1479
|
+
/// Read data into a dynamic buffer sequence until a function object indicates a
|
1480
|
+
/// match.
|
1481
|
+
/**
|
1482
|
+
* This function is used to read data into the specified dynamic buffer
|
1483
|
+
* sequence until a user-defined match condition function object, when applied
|
1484
|
+
* to the data contained in the dynamic buffer sequence, indicates a successful
|
1485
|
+
* match. The call will block until one of the following conditions is true:
|
1486
|
+
*
|
1487
|
+
* @li The match condition function object returns a std::pair where the second
|
1488
|
+
* element evaluates to true.
|
1489
|
+
*
|
1490
|
+
* @li An error occurred.
|
1491
|
+
*
|
1492
|
+
* This operation is implemented in terms of zero or more calls to the stream's
|
1493
|
+
* read_some function. If the match condition function object already indicates
|
1494
|
+
* a match, the function returns immediately.
|
1495
|
+
*
|
1496
|
+
* @param s The stream from which the data is to be read. The type must support
|
1497
|
+
* the SyncReadStream concept.
|
1498
|
+
*
|
1499
|
+
* @param buffers A dynamic buffer sequence into which the data will be read.
|
1500
|
+
*
|
1501
|
+
* @param match_condition The function object to be called to determine whether
|
1502
|
+
* a match exists. The signature of the function object must be:
|
1503
|
+
* @code pair<iterator, bool> match_condition(iterator begin, iterator end);
|
1504
|
+
* @endcode
|
1505
|
+
* where @c iterator represents the type:
|
1506
|
+
* @code buffers_iterator<DynamicBuffer_v2::const_buffers_type>
|
1507
|
+
* @endcode
|
1508
|
+
* The iterator parameters @c begin and @c end define the range of bytes to be
|
1509
|
+
* scanned to determine whether there is a match. The @c first member of the
|
1510
|
+
* return value is an iterator marking one-past-the-end of the bytes that have
|
1511
|
+
* been consumed by the match function. This iterator is used to calculate the
|
1512
|
+
* @c begin parameter for any subsequent invocation of the match condition. The
|
1513
|
+
* @c second member of the return value is true if a match has been found, false
|
1514
|
+
* otherwise.
|
1515
|
+
*
|
1516
|
+
* @param ec Set to indicate what error occurred, if any.
|
1517
|
+
*
|
1518
|
+
* @returns The number of bytes in the dynamic buffer sequence's get area that
|
1519
|
+
* have been fully consumed by the match function. Returns 0 if an error
|
1520
|
+
* occurred.
|
1521
|
+
*
|
1522
|
+
* @note After a successful read_until operation, the dynamic buffer sequence
|
1523
|
+
* may contain additional data beyond that which matched the function object.
|
1524
|
+
* An application will typically leave that data in the dynamic buffer sequence
|
1525
|
+
* for a subsequent read_until operation to examine.
|
1526
|
+
*
|
1527
|
+
* @note The default implementation of the @c is_match_condition type trait
|
1528
|
+
* evaluates to true for function pointers and function objects with a
|
1529
|
+
* @c result_type typedef. It must be specialised for other user-defined
|
1530
|
+
* function objects.
|
1531
|
+
*/
|
1532
|
+
template <typename SyncReadStream,
|
1533
|
+
typename DynamicBuffer_v2, typename MatchCondition>
|
1534
|
+
std::size_t read_until(SyncReadStream& s, DynamicBuffer_v2 buffers,
|
1535
|
+
MatchCondition match_condition, boost::system::error_code& ec,
|
1536
|
+
constraint_t<
|
1537
|
+
is_match_condition<MatchCondition>::value
|
1538
|
+
> = 0,
|
1539
|
+
constraint_t<
|
1540
|
+
is_dynamic_buffer_v2<DynamicBuffer_v2>::value
|
1541
|
+
> = 0);
|
1542
|
+
|
1543
|
+
#endif // !defined(BOOST_ASIO_NO_EXTENSIONS)
|
1544
|
+
|
1545
|
+
/*@}*/
|
1546
|
+
/**
|
1547
|
+
* @defgroup async_read_until boost::asio::async_read_until
|
1548
|
+
*
|
1549
|
+
* @brief The @c async_read_until function is a composed asynchronous operation
|
1550
|
+
* that reads data into a dynamic buffer sequence, or into a streambuf, until
|
1551
|
+
* it contains a delimiter, matches a regular expression, or a function object
|
1552
|
+
* indicates a match.
|
1553
|
+
*/
|
1554
|
+
/*@{*/
|
1555
|
+
|
1556
|
+
#if !defined(BOOST_ASIO_NO_DYNAMIC_BUFFER_V1)
|
1557
|
+
|
1558
|
+
/// Start an asynchronous operation to read data into a dynamic buffer sequence
|
1559
|
+
/// until it contains a specified delimiter.
|
1560
|
+
/**
|
1561
|
+
* This function is used to asynchronously read data into the specified dynamic
|
1562
|
+
* buffer sequence until the dynamic buffer sequence's get area contains the
|
1563
|
+
* specified delimiter. It is an initiating function for an @ref
|
1564
|
+
* asynchronous_operation, and always returns immediately. The asynchronous
|
1565
|
+
* operation will continue until one of the following conditions is true:
|
1566
|
+
*
|
1567
|
+
* @li The get area of the dynamic buffer sequence contains the specified
|
1568
|
+
* delimiter.
|
1569
|
+
*
|
1570
|
+
* @li An error occurred.
|
1571
|
+
*
|
1572
|
+
* This operation is implemented in terms of zero or more calls to the stream's
|
1573
|
+
* async_read_some function, and is known as a <em>composed operation</em>. If
|
1574
|
+
* the dynamic buffer sequence's get area already contains the delimiter, this
|
1575
|
+
* asynchronous operation completes immediately. The program must ensure that
|
1576
|
+
* the stream performs no other read operations (such as async_read,
|
1577
|
+
* async_read_until, the stream's async_read_some function, or any other
|
1578
|
+
* composed operations that perform reads) until this operation completes.
|
1579
|
+
*
|
1580
|
+
* @param s The stream from which the data is to be read. The type must support
|
1581
|
+
* the AsyncReadStream concept.
|
1582
|
+
*
|
1583
|
+
* @param buffers The dynamic buffer sequence into which the data will be read.
|
1584
|
+
* Although the buffers object may be copied as necessary, ownership of the
|
1585
|
+
* underlying memory blocks is retained by the caller, which must guarantee
|
1586
|
+
* that they remain valid until the completion handler is called.
|
1587
|
+
*
|
1588
|
+
* @param delim The delimiter character.
|
1589
|
+
*
|
1590
|
+
* @param token The @ref completion_token that will be used to produce a
|
1591
|
+
* completion handler, which will be called when the read completes.
|
1592
|
+
* Potential completion tokens include @ref use_future, @ref use_awaitable,
|
1593
|
+
* @ref yield_context, or a function object with the correct completion
|
1594
|
+
* signature. The function signature of the completion handler must be:
|
1595
|
+
* @code void handler(
|
1596
|
+
* // Result of operation.
|
1597
|
+
* const boost::system::error_code& error,
|
1598
|
+
*
|
1599
|
+
* // The number of bytes in the dynamic buffer sequence's
|
1600
|
+
* // get area up to and including the delimiter.
|
1601
|
+
* std::size_t bytes_transferred
|
1602
|
+
* ); @endcode
|
1603
|
+
* Regardless of whether the asynchronous operation completes immediately or
|
1604
|
+
* not, the completion handler will not be invoked from within this function.
|
1605
|
+
* On immediate completion, invocation of the handler will be performed in a
|
1606
|
+
* manner equivalent to using boost::asio::async_immediate().
|
1607
|
+
*
|
1608
|
+
* @par Completion Signature
|
1609
|
+
* @code void(boost::system::error_code, std::size_t) @endcode
|
1610
|
+
*
|
1611
|
+
* @note After a successful async_read_until operation, the dynamic buffer
|
1612
|
+
* sequence may contain additional data beyond the delimiter. An application
|
1613
|
+
* will typically leave that data in the dynamic buffer sequence for a
|
1614
|
+
* subsequent async_read_until operation to examine.
|
1615
|
+
*
|
1616
|
+
* @par Example
|
1617
|
+
* To asynchronously read data into a @c std::string until a newline is
|
1618
|
+
* encountered:
|
1619
|
+
* @code std::string data;
|
1620
|
+
* ...
|
1621
|
+
* void handler(const boost::system::error_code& e, std::size_t size)
|
1622
|
+
* {
|
1623
|
+
* if (!e)
|
1624
|
+
* {
|
1625
|
+
* std::string line = data.substr(0, n);
|
1626
|
+
* data.erase(0, n);
|
1627
|
+
* ...
|
1628
|
+
* }
|
1629
|
+
* }
|
1630
|
+
* ...
|
1631
|
+
* boost::asio::async_read_until(s, data, '\n', handler); @endcode
|
1632
|
+
* After the @c async_read_until operation completes successfully, the buffer
|
1633
|
+
* @c data contains the delimiter:
|
1634
|
+
* @code { 'a', 'b', ..., 'c', '\n', 'd', 'e', ... } @endcode
|
1635
|
+
* The call to @c substr then extracts the data up to and including the
|
1636
|
+
* delimiter, so that the string @c line contains:
|
1637
|
+
* @code { 'a', 'b', ..., 'c', '\n' } @endcode
|
1638
|
+
* After the call to @c erase, the remaining data is left in the buffer @c data
|
1639
|
+
* as follows:
|
1640
|
+
* @code { 'd', 'e', ... } @endcode
|
1641
|
+
* This data may be the start of a new line, to be extracted by a subsequent
|
1642
|
+
* @c async_read_until operation.
|
1643
|
+
*
|
1644
|
+
* @par Per-Operation Cancellation
|
1645
|
+
* This asynchronous operation supports cancellation for the following
|
1646
|
+
* boost::asio::cancellation_type values:
|
1647
|
+
*
|
1648
|
+
* @li @c cancellation_type::terminal
|
1649
|
+
*
|
1650
|
+
* @li @c cancellation_type::partial
|
1651
|
+
*
|
1652
|
+
* if they are also supported by the @c AsyncReadStream type's
|
1653
|
+
* @c async_read_some operation.
|
1654
|
+
*/
|
1655
|
+
template <typename AsyncReadStream, typename DynamicBuffer_v1,
|
1656
|
+
BOOST_ASIO_COMPLETION_TOKEN_FOR(void (boost::system::error_code,
|
1657
|
+
std::size_t)) ReadToken = default_completion_token_t<
|
1658
|
+
typename AsyncReadStream::executor_type>>
|
1659
|
+
inline auto async_read_until(AsyncReadStream& s,
|
1660
|
+
DynamicBuffer_v1&& buffers, char delim,
|
1661
|
+
ReadToken&& token = default_completion_token_t<
|
1662
|
+
typename AsyncReadStream::executor_type>(),
|
1663
|
+
constraint_t<
|
1664
|
+
is_dynamic_buffer_v1<decay_t<DynamicBuffer_v1>>::value
|
1665
|
+
> = 0,
|
1666
|
+
constraint_t<
|
1667
|
+
!is_dynamic_buffer_v2<decay_t<DynamicBuffer_v1>>::value
|
1668
|
+
> = 0)
|
1669
|
+
-> decltype(
|
1670
|
+
async_initiate<ReadToken,
|
1671
|
+
void (boost::system::error_code, std::size_t)>(
|
1672
|
+
declval<detail::initiate_async_read_until_delim_v1<AsyncReadStream>>(),
|
1673
|
+
token, static_cast<DynamicBuffer_v1&&>(buffers), delim))
|
1674
|
+
{
|
1675
|
+
return async_initiate<ReadToken,
|
1676
|
+
void (boost::system::error_code, std::size_t)>(
|
1677
|
+
detail::initiate_async_read_until_delim_v1<AsyncReadStream>(s),
|
1678
|
+
token, static_cast<DynamicBuffer_v1&&>(buffers), delim);
|
1679
|
+
}
|
1680
|
+
|
1681
|
+
/// Start an asynchronous operation to read data into a dynamic buffer sequence
|
1682
|
+
/// until it contains a specified delimiter.
|
1683
|
+
/**
|
1684
|
+
* This function is used to asynchronously read data into the specified dynamic
|
1685
|
+
* buffer sequence until the dynamic buffer sequence's get area contains the
|
1686
|
+
* specified delimiter. It is an initiating function for an @ref
|
1687
|
+
* asynchronous_operation, and always returns immediately. The asynchronous
|
1688
|
+
* operation will continue until one of the following conditions is true:
|
1689
|
+
*
|
1690
|
+
* @li The get area of the dynamic buffer sequence contains the specified
|
1691
|
+
* delimiter.
|
1692
|
+
*
|
1693
|
+
* @li An error occurred.
|
1694
|
+
*
|
1695
|
+
* This operation is implemented in terms of zero or more calls to the stream's
|
1696
|
+
* async_read_some function, and is known as a <em>composed operation</em>. If
|
1697
|
+
* the dynamic buffer sequence's get area already contains the delimiter, this
|
1698
|
+
* asynchronous operation completes immediately. The program must ensure that
|
1699
|
+
* the stream performs no other read operations (such as async_read,
|
1700
|
+
* async_read_until, the stream's async_read_some function, or any other
|
1701
|
+
* composed operations that perform reads) until this operation completes.
|
1702
|
+
*
|
1703
|
+
* @param s The stream from which the data is to be read. The type must support
|
1704
|
+
* the AsyncReadStream concept.
|
1705
|
+
*
|
1706
|
+
* @param buffers The dynamic buffer sequence into which the data will be read.
|
1707
|
+
* Although the buffers object may be copied as necessary, ownership of the
|
1708
|
+
* underlying memory blocks is retained by the caller, which must guarantee
|
1709
|
+
* that they remain valid until the completion handler is called.
|
1710
|
+
*
|
1711
|
+
* @param delim The delimiter string.
|
1712
|
+
*
|
1713
|
+
* @param token The @ref completion_token that will be used to produce a
|
1714
|
+
* completion handler, which will be called when the read completes.
|
1715
|
+
* Potential completion tokens include @ref use_future, @ref use_awaitable,
|
1716
|
+
* @ref yield_context, or a function object with the correct completion
|
1717
|
+
* signature. The function signature of the completion handler must be:
|
1718
|
+
* @code void handler(
|
1719
|
+
* // Result of operation.
|
1720
|
+
* const boost::system::error_code& error,
|
1721
|
+
*
|
1722
|
+
* // The number of bytes in the dynamic buffer sequence's
|
1723
|
+
* // get area up to and including the delimiter.
|
1724
|
+
* std::size_t bytes_transferred
|
1725
|
+
* ); @endcode
|
1726
|
+
* Regardless of whether the asynchronous operation completes immediately or
|
1727
|
+
* not, the completion handler will not be invoked from within this function.
|
1728
|
+
* On immediate completion, invocation of the handler will be performed in a
|
1729
|
+
* manner equivalent to using boost::asio::async_immediate().
|
1730
|
+
*
|
1731
|
+
* @par Completion Signature
|
1732
|
+
* @code void(boost::system::error_code, std::size_t) @endcode
|
1733
|
+
*
|
1734
|
+
* @note After a successful async_read_until operation, the dynamic buffer
|
1735
|
+
* sequence may contain additional data beyond the delimiter. An application
|
1736
|
+
* will typically leave that data in the dynamic buffer sequence for a
|
1737
|
+
* subsequent async_read_until operation to examine.
|
1738
|
+
*
|
1739
|
+
* @par Example
|
1740
|
+
* To asynchronously read data into a @c std::string until a CR-LF sequence is
|
1741
|
+
* encountered:
|
1742
|
+
* @code std::string data;
|
1743
|
+
* ...
|
1744
|
+
* void handler(const boost::system::error_code& e, std::size_t size)
|
1745
|
+
* {
|
1746
|
+
* if (!e)
|
1747
|
+
* {
|
1748
|
+
* std::string line = data.substr(0, n);
|
1749
|
+
* data.erase(0, n);
|
1750
|
+
* ...
|
1751
|
+
* }
|
1752
|
+
* }
|
1753
|
+
* ...
|
1754
|
+
* boost::asio::async_read_until(s, data, "\r\n", handler); @endcode
|
1755
|
+
* After the @c async_read_until operation completes successfully, the string
|
1756
|
+
* @c data contains the delimiter:
|
1757
|
+
* @code { 'a', 'b', ..., 'c', '\r', '\n', 'd', 'e', ... } @endcode
|
1758
|
+
* The call to @c substr then extracts the data up to and including the
|
1759
|
+
* delimiter, so that the string @c line contains:
|
1760
|
+
* @code { 'a', 'b', ..., 'c', '\r', '\n' } @endcode
|
1761
|
+
* After the call to @c erase, the remaining data is left in the string @c data
|
1762
|
+
* as follows:
|
1763
|
+
* @code { 'd', 'e', ... } @endcode
|
1764
|
+
* This data may be the start of a new line, to be extracted by a subsequent
|
1765
|
+
* @c async_read_until operation.
|
1766
|
+
*
|
1767
|
+
* @par Per-Operation Cancellation
|
1768
|
+
* This asynchronous operation supports cancellation for the following
|
1769
|
+
* boost::asio::cancellation_type values:
|
1770
|
+
*
|
1771
|
+
* @li @c cancellation_type::terminal
|
1772
|
+
*
|
1773
|
+
* @li @c cancellation_type::partial
|
1774
|
+
*
|
1775
|
+
* if they are also supported by the @c AsyncReadStream type's
|
1776
|
+
* @c async_read_some operation.
|
1777
|
+
*/
|
1778
|
+
template <typename AsyncReadStream, typename DynamicBuffer_v1,
|
1779
|
+
BOOST_ASIO_COMPLETION_TOKEN_FOR(void (boost::system::error_code,
|
1780
|
+
std::size_t)) ReadToken = default_completion_token_t<
|
1781
|
+
typename AsyncReadStream::executor_type>>
|
1782
|
+
inline auto async_read_until(AsyncReadStream& s,
|
1783
|
+
DynamicBuffer_v1&& buffers,
|
1784
|
+
BOOST_ASIO_STRING_VIEW_PARAM delim,
|
1785
|
+
ReadToken&& token = default_completion_token_t<
|
1786
|
+
typename AsyncReadStream::executor_type>(),
|
1787
|
+
constraint_t<
|
1788
|
+
is_dynamic_buffer_v1<decay_t<DynamicBuffer_v1>>::value
|
1789
|
+
> = 0,
|
1790
|
+
constraint_t<
|
1791
|
+
!is_dynamic_buffer_v2<decay_t<DynamicBuffer_v1>>::value
|
1792
|
+
> = 0)
|
1793
|
+
-> decltype(
|
1794
|
+
async_initiate<ReadToken,
|
1795
|
+
void (boost::system::error_code, std::size_t)>(
|
1796
|
+
declval<detail::initiate_async_read_until_delim_string_v1<
|
1797
|
+
AsyncReadStream>>(),
|
1798
|
+
token, static_cast<DynamicBuffer_v1&&>(buffers),
|
1799
|
+
static_cast<std::string>(delim)))
|
1800
|
+
{
|
1801
|
+
return async_initiate<ReadToken,
|
1802
|
+
void (boost::system::error_code, std::size_t)>(
|
1803
|
+
detail::initiate_async_read_until_delim_string_v1<AsyncReadStream>(s),
|
1804
|
+
token, static_cast<DynamicBuffer_v1&&>(buffers),
|
1805
|
+
static_cast<std::string>(delim));
|
1806
|
+
}
|
1807
|
+
|
1808
|
+
#if !defined(BOOST_ASIO_NO_EXTENSIONS)
|
1809
|
+
#if defined(BOOST_ASIO_HAS_BOOST_REGEX) \
|
1810
|
+
|| defined(GENERATING_DOCUMENTATION)
|
1811
|
+
|
1812
|
+
/// Start an asynchronous operation to read data into a dynamic buffer sequence
|
1813
|
+
/// until some part of its data matches a regular expression.
|
1814
|
+
/**
|
1815
|
+
* This function is used to asynchronously read data into the specified dynamic
|
1816
|
+
* buffer sequence until the dynamic buffer sequence's get area contains some
|
1817
|
+
* data that matches a regular expression. It is an initiating function for an
|
1818
|
+
* @ref asynchronous_operation, and always returns immediately. The
|
1819
|
+
* asynchronous operation will continue until one of the following conditions
|
1820
|
+
* is true:
|
1821
|
+
*
|
1822
|
+
* @li A substring of the dynamic buffer sequence's get area matches the regular
|
1823
|
+
* expression.
|
1824
|
+
*
|
1825
|
+
* @li An error occurred.
|
1826
|
+
*
|
1827
|
+
* This operation is implemented in terms of zero or more calls to the stream's
|
1828
|
+
* async_read_some function, and is known as a <em>composed operation</em>. If
|
1829
|
+
* the dynamic buffer sequence's get area already contains data that matches
|
1830
|
+
* the regular expression, this asynchronous operation completes immediately.
|
1831
|
+
* The program must ensure that the stream performs no other read operations
|
1832
|
+
* (such as async_read, async_read_until, the stream's async_read_some
|
1833
|
+
* function, or any other composed operations that perform reads) until this
|
1834
|
+
* operation completes.
|
1835
|
+
*
|
1836
|
+
* @param s The stream from which the data is to be read. The type must support
|
1837
|
+
* the AsyncReadStream concept.
|
1838
|
+
*
|
1839
|
+
* @param buffers The dynamic buffer sequence into which the data will be read.
|
1840
|
+
* Although the buffers object may be copied as necessary, ownership of the
|
1841
|
+
* underlying memory blocks is retained by the caller, which must guarantee
|
1842
|
+
* that they remain valid until the completion handler is called.
|
1843
|
+
*
|
1844
|
+
* @param expr The regular expression.
|
1845
|
+
*
|
1846
|
+
* @param token The @ref completion_token that will be used to produce a
|
1847
|
+
* completion handler, which will be called when the read completes.
|
1848
|
+
* Potential completion tokens include @ref use_future, @ref use_awaitable,
|
1849
|
+
* @ref yield_context, or a function object with the correct completion
|
1850
|
+
* signature. The function signature of the completion handler must be:
|
1851
|
+
* @code void handler(
|
1852
|
+
* // Result of operation.
|
1853
|
+
* const boost::system::error_code& error,
|
1854
|
+
*
|
1855
|
+
* // The number of bytes in the dynamic buffer
|
1856
|
+
* // sequence's get area up to and including the
|
1857
|
+
* // substring that matches the regular expression.
|
1858
|
+
* // 0 if an error occurred.
|
1859
|
+
* std::size_t bytes_transferred
|
1860
|
+
* ); @endcode
|
1861
|
+
* Regardless of whether the asynchronous operation completes immediately or
|
1862
|
+
* not, the completion handler will not be invoked from within this function.
|
1863
|
+
* On immediate completion, invocation of the handler will be performed in a
|
1864
|
+
* manner equivalent to using boost::asio::async_immediate().
|
1865
|
+
*
|
1866
|
+
* @par Completion Signature
|
1867
|
+
* @code void(boost::system::error_code, std::size_t) @endcode
|
1230
1868
|
*
|
1231
1869
|
* @note After a successful async_read_until operation, the dynamic buffer
|
1232
1870
|
* sequence may contain additional data beyond that which matched the regular
|
@@ -1234,55 +1872,620 @@ async_read_until(AsyncReadStream& s,
|
|
1234
1872
|
* buffer sequence for a subsequent async_read_until operation to examine.
|
1235
1873
|
*
|
1236
1874
|
* @par Example
|
1237
|
-
* To asynchronously read data into a @c std::string until a CR-LF sequence is
|
1875
|
+
* To asynchronously read data into a @c std::string until a CR-LF sequence is
|
1876
|
+
* encountered:
|
1877
|
+
* @code std::string data;
|
1878
|
+
* ...
|
1879
|
+
* void handler(const boost::system::error_code& e, std::size_t size)
|
1880
|
+
* {
|
1881
|
+
* if (!e)
|
1882
|
+
* {
|
1883
|
+
* std::string line = data.substr(0, n);
|
1884
|
+
* data.erase(0, n);
|
1885
|
+
* ...
|
1886
|
+
* }
|
1887
|
+
* }
|
1888
|
+
* ...
|
1889
|
+
* boost::asio::async_read_until(s, data,
|
1890
|
+
* boost::regex("\r\n"), handler); @endcode
|
1891
|
+
* After the @c async_read_until operation completes successfully, the string
|
1892
|
+
* @c data contains the data which matched the regular expression:
|
1893
|
+
* @code { 'a', 'b', ..., 'c', '\r', '\n', 'd', 'e', ... } @endcode
|
1894
|
+
* The call to @c substr then extracts the data up to and including the match,
|
1895
|
+
* so that the string @c line contains:
|
1896
|
+
* @code { 'a', 'b', ..., 'c', '\r', '\n' } @endcode
|
1897
|
+
* After the call to @c erase, the remaining data is left in the string @c data
|
1898
|
+
* as follows:
|
1899
|
+
* @code { 'd', 'e', ... } @endcode
|
1900
|
+
* This data may be the start of a new line, to be extracted by a subsequent
|
1901
|
+
* @c async_read_until operation.
|
1902
|
+
*
|
1903
|
+
* @par Per-Operation Cancellation
|
1904
|
+
* This asynchronous operation supports cancellation for the following
|
1905
|
+
* boost::asio::cancellation_type values:
|
1906
|
+
*
|
1907
|
+
* @li @c cancellation_type::terminal
|
1908
|
+
*
|
1909
|
+
* @li @c cancellation_type::partial
|
1910
|
+
*
|
1911
|
+
* if they are also supported by the @c AsyncReadStream type's
|
1912
|
+
* @c async_read_some operation.
|
1913
|
+
*/
|
1914
|
+
template <typename AsyncReadStream, typename DynamicBuffer_v1, typename Traits,
|
1915
|
+
BOOST_ASIO_COMPLETION_TOKEN_FOR(void (boost::system::error_code,
|
1916
|
+
std::size_t)) ReadToken = default_completion_token_t<
|
1917
|
+
typename AsyncReadStream::executor_type>>
|
1918
|
+
inline auto async_read_until(AsyncReadStream& s, DynamicBuffer_v1&& buffers,
|
1919
|
+
const boost::basic_regex<char, Traits>& expr,
|
1920
|
+
ReadToken&& token = default_completion_token_t<
|
1921
|
+
typename AsyncReadStream::executor_type>(),
|
1922
|
+
constraint_t<
|
1923
|
+
is_dynamic_buffer_v1<decay_t<DynamicBuffer_v1>>::value
|
1924
|
+
> = 0,
|
1925
|
+
constraint_t<
|
1926
|
+
!is_dynamic_buffer_v2<decay_t<DynamicBuffer_v1>>::value
|
1927
|
+
> = 0)
|
1928
|
+
-> decltype(
|
1929
|
+
async_initiate<ReadToken,
|
1930
|
+
void (boost::system::error_code, std::size_t)>(
|
1931
|
+
declval<detail::initiate_async_read_until_expr_v1<AsyncReadStream>>(),
|
1932
|
+
token, static_cast<DynamicBuffer_v1&&>(buffers), expr))
|
1933
|
+
{
|
1934
|
+
return async_initiate<ReadToken,
|
1935
|
+
void (boost::system::error_code, std::size_t)>(
|
1936
|
+
detail::initiate_async_read_until_expr_v1<AsyncReadStream>(s),
|
1937
|
+
token, static_cast<DynamicBuffer_v1&&>(buffers), expr);
|
1938
|
+
}
|
1939
|
+
|
1940
|
+
#endif // defined(BOOST_ASIO_HAS_BOOST_REGEX)
|
1941
|
+
// || defined(GENERATING_DOCUMENTATION)
|
1942
|
+
|
1943
|
+
/// Start an asynchronous operation to read data into a dynamic buffer sequence
|
1944
|
+
/// until a function object indicates a match.
|
1945
|
+
/**
|
1946
|
+
* This function is used to asynchronously read data into the specified dynamic
|
1947
|
+
* buffer sequence until a user-defined match condition function object, when
|
1948
|
+
* applied to the data contained in the dynamic buffer sequence, indicates a
|
1949
|
+
* successful match. It is an initiating function for an @ref
|
1950
|
+
* asynchronous_operation, and always returns immediately. The asynchronous
|
1951
|
+
* operation will continue until one of the following conditions is true:
|
1952
|
+
*
|
1953
|
+
* @li The match condition function object returns a std::pair where the second
|
1954
|
+
* element evaluates to true.
|
1955
|
+
*
|
1956
|
+
* @li An error occurred.
|
1957
|
+
*
|
1958
|
+
* This operation is implemented in terms of zero or more calls to the stream's
|
1959
|
+
* async_read_some function, and is known as a <em>composed operation</em>. If
|
1960
|
+
* the match condition function object already indicates a match, this
|
1961
|
+
* asynchronous operation completes immediately. The program must ensure that
|
1962
|
+
* the stream performs no other read operations (such as async_read,
|
1963
|
+
* async_read_until, the stream's async_read_some function, or any other
|
1964
|
+
* composed operations that perform reads) until this operation completes.
|
1965
|
+
*
|
1966
|
+
* @param s The stream from which the data is to be read. The type must support
|
1967
|
+
* the AsyncReadStream concept.
|
1968
|
+
*
|
1969
|
+
* @param buffers The dynamic buffer sequence into which the data will be read.
|
1970
|
+
* Although the buffers object may be copied as necessary, ownership of the
|
1971
|
+
* underlying memory blocks is retained by the caller, which must guarantee
|
1972
|
+
* that they remain valid until the completion handler is called.
|
1973
|
+
*
|
1974
|
+
* @param match_condition The function object to be called to determine whether
|
1975
|
+
* a match exists. The signature of the function object must be:
|
1976
|
+
* @code pair<iterator, bool> match_condition(iterator begin, iterator end);
|
1977
|
+
* @endcode
|
1978
|
+
* where @c iterator represents the type:
|
1979
|
+
* @code buffers_iterator<typename DynamicBuffer_v1::const_buffers_type>
|
1980
|
+
* @endcode
|
1981
|
+
* The iterator parameters @c begin and @c end define the range of bytes to be
|
1982
|
+
* scanned to determine whether there is a match. The @c first member of the
|
1983
|
+
* return value is an iterator marking one-past-the-end of the bytes that have
|
1984
|
+
* been consumed by the match function. This iterator is used to calculate the
|
1985
|
+
* @c begin parameter for any subsequent invocation of the match condition. The
|
1986
|
+
* @c second member of the return value is true if a match has been found, false
|
1987
|
+
* otherwise.
|
1988
|
+
*
|
1989
|
+
* @param token The @ref completion_token that will be used to produce a
|
1990
|
+
* completion handler, which will be called when the read completes.
|
1991
|
+
* Potential completion tokens include @ref use_future, @ref use_awaitable,
|
1992
|
+
* @ref yield_context, or a function object with the correct completion
|
1993
|
+
* signature. The function signature of the completion handler must be:
|
1994
|
+
* @code void handler(
|
1995
|
+
* // Result of operation.
|
1996
|
+
* const boost::system::error_code& error,
|
1997
|
+
*
|
1998
|
+
* // The number of bytes in the dynamic buffer sequence's
|
1999
|
+
* // get area that have been fully consumed by the match
|
2000
|
+
* // function. O if an error occurred.
|
2001
|
+
* std::size_t bytes_transferred
|
2002
|
+
* ); @endcode
|
2003
|
+
* Regardless of whether the asynchronous operation completes immediately or
|
2004
|
+
* not, the completion handler will not be invoked from within this function.
|
2005
|
+
* On immediate completion, invocation of the handler will be performed in a
|
2006
|
+
* manner equivalent to using boost::asio::async_immediate().
|
2007
|
+
*
|
2008
|
+
* @note After a successful async_read_until operation, the dynamic buffer
|
2009
|
+
* sequence may contain additional data beyond that which matched the function
|
2010
|
+
* object. An application will typically leave that data in the dynamic buffer
|
2011
|
+
* sequence for a subsequent async_read_until operation to examine.
|
2012
|
+
*
|
2013
|
+
* @par Completion Signature
|
2014
|
+
* @code void(boost::system::error_code, std::size_t) @endcode
|
2015
|
+
*
|
2016
|
+
* @note The default implementation of the @c is_match_condition type trait
|
2017
|
+
* evaluates to true for function pointers and function objects with a
|
2018
|
+
* @c result_type typedef. It must be specialised for other user-defined
|
2019
|
+
* function objects.
|
2020
|
+
*
|
2021
|
+
* @par Examples
|
2022
|
+
* To asynchronously read data into a @c std::string until whitespace is
|
2023
|
+
* encountered:
|
2024
|
+
* @code typedef boost::asio::buffers_iterator<
|
2025
|
+
* boost::asio::const_buffers_1> iterator;
|
2026
|
+
*
|
2027
|
+
* std::pair<iterator, bool>
|
2028
|
+
* match_whitespace(iterator begin, iterator end)
|
2029
|
+
* {
|
2030
|
+
* iterator i = begin;
|
2031
|
+
* while (i != end)
|
2032
|
+
* if (std::isspace(*i++))
|
2033
|
+
* return std::make_pair(i, true);
|
2034
|
+
* return std::make_pair(i, false);
|
2035
|
+
* }
|
2036
|
+
* ...
|
2037
|
+
* void handler(const boost::system::error_code& e, std::size_t size);
|
2038
|
+
* ...
|
2039
|
+
* std::string data;
|
2040
|
+
* boost::asio::async_read_until(s, data, match_whitespace, handler);
|
2041
|
+
* @endcode
|
2042
|
+
*
|
2043
|
+
* To asynchronously read data into a @c std::string until a matching character
|
2044
|
+
* is found:
|
2045
|
+
* @code class match_char
|
2046
|
+
* {
|
2047
|
+
* public:
|
2048
|
+
* explicit match_char(char c) : c_(c) {}
|
2049
|
+
*
|
2050
|
+
* template <typename Iterator>
|
2051
|
+
* std::pair<Iterator, bool> operator()(
|
2052
|
+
* Iterator begin, Iterator end) const
|
2053
|
+
* {
|
2054
|
+
* Iterator i = begin;
|
2055
|
+
* while (i != end)
|
2056
|
+
* if (c_ == *i++)
|
2057
|
+
* return std::make_pair(i, true);
|
2058
|
+
* return std::make_pair(i, false);
|
2059
|
+
* }
|
2060
|
+
*
|
2061
|
+
* private:
|
2062
|
+
* char c_;
|
2063
|
+
* };
|
2064
|
+
*
|
2065
|
+
* namespace asio {
|
2066
|
+
* template <> struct is_match_condition<match_char>
|
2067
|
+
* : public boost::true_type {};
|
2068
|
+
* } // namespace asio
|
2069
|
+
* ...
|
2070
|
+
* void handler(const boost::system::error_code& e, std::size_t size);
|
2071
|
+
* ...
|
2072
|
+
* std::string data;
|
2073
|
+
* boost::asio::async_read_until(s, data, match_char('a'), handler);
|
2074
|
+
* @endcode
|
2075
|
+
*
|
2076
|
+
* @par Per-Operation Cancellation
|
2077
|
+
* This asynchronous operation supports cancellation for the following
|
2078
|
+
* boost::asio::cancellation_type values:
|
2079
|
+
*
|
2080
|
+
* @li @c cancellation_type::terminal
|
2081
|
+
*
|
2082
|
+
* @li @c cancellation_type::partial
|
2083
|
+
*
|
2084
|
+
* if they are also supported by the @c AsyncReadStream type's
|
2085
|
+
* @c async_read_some operation.
|
2086
|
+
*/
|
2087
|
+
template <typename AsyncReadStream,
|
2088
|
+
typename DynamicBuffer_v1, typename MatchCondition,
|
2089
|
+
BOOST_ASIO_COMPLETION_TOKEN_FOR(void (boost::system::error_code,
|
2090
|
+
std::size_t)) ReadToken = default_completion_token_t<
|
2091
|
+
typename AsyncReadStream::executor_type>>
|
2092
|
+
inline auto async_read_until(AsyncReadStream& s,
|
2093
|
+
DynamicBuffer_v1&& buffers, MatchCondition match_condition,
|
2094
|
+
ReadToken&& token = default_completion_token_t<
|
2095
|
+
typename AsyncReadStream::executor_type>(),
|
2096
|
+
constraint_t<
|
2097
|
+
is_match_condition<MatchCondition>::value
|
2098
|
+
> = 0,
|
2099
|
+
constraint_t<
|
2100
|
+
is_dynamic_buffer_v1<decay_t<DynamicBuffer_v1>>::value
|
2101
|
+
> = 0,
|
2102
|
+
constraint_t<
|
2103
|
+
!is_dynamic_buffer_v2<decay_t<DynamicBuffer_v1>>::value
|
2104
|
+
> = 0)
|
2105
|
+
-> decltype(
|
2106
|
+
async_initiate<ReadToken,
|
2107
|
+
void (boost::system::error_code, std::size_t)>(
|
2108
|
+
declval<detail::initiate_async_read_until_match_v1<AsyncReadStream>>(),
|
2109
|
+
token, static_cast<DynamicBuffer_v1&&>(buffers),
|
2110
|
+
match_condition))
|
2111
|
+
{
|
2112
|
+
return async_initiate<ReadToken,
|
2113
|
+
void (boost::system::error_code, std::size_t)>(
|
2114
|
+
detail::initiate_async_read_until_match_v1<AsyncReadStream>(s),
|
2115
|
+
token, static_cast<DynamicBuffer_v1&&>(buffers),
|
2116
|
+
match_condition);
|
2117
|
+
}
|
2118
|
+
|
2119
|
+
#if !defined(BOOST_ASIO_NO_IOSTREAM)
|
2120
|
+
|
2121
|
+
/// Start an asynchronous operation to read data into a streambuf until it
|
2122
|
+
/// contains a specified delimiter.
|
2123
|
+
/**
|
2124
|
+
* This function is used to asynchronously read data into the specified
|
2125
|
+
* streambuf until the streambuf's get area contains the specified delimiter.
|
2126
|
+
* It is an initiating function for an @ref asynchronous_operation, and always
|
2127
|
+
* returns immediately. The asynchronous operation will continue until one of
|
2128
|
+
* the following conditions is true:
|
2129
|
+
*
|
2130
|
+
* @li The get area of the streambuf contains the specified delimiter.
|
2131
|
+
*
|
2132
|
+
* @li An error occurred.
|
2133
|
+
*
|
2134
|
+
* This operation is implemented in terms of zero or more calls to the stream's
|
2135
|
+
* async_read_some function, and is known as a <em>composed operation</em>. If
|
2136
|
+
* the streambuf's get area already contains the delimiter, this asynchronous
|
2137
|
+
* operation completes immediately. The program must ensure that the stream
|
2138
|
+
* performs no other read operations (such as async_read, async_read_until, the
|
2139
|
+
* stream's async_read_some function, or any other composed operations that
|
2140
|
+
* perform reads) until this operation completes.
|
2141
|
+
*
|
2142
|
+
* @param s The stream from which the data is to be read. The type must support
|
2143
|
+
* the AsyncReadStream concept.
|
2144
|
+
*
|
2145
|
+
* @param b A streambuf object into which the data will be read. Ownership of
|
2146
|
+
* the streambuf is retained by the caller, which must guarantee that it remains
|
2147
|
+
* valid until the completion handler is called.
|
2148
|
+
*
|
2149
|
+
* @param delim The delimiter character.
|
2150
|
+
*
|
2151
|
+
* @param token The @ref completion_token that will be used to produce a
|
2152
|
+
* completion handler, which will be called when the read completes.
|
2153
|
+
* Potential completion tokens include @ref use_future, @ref use_awaitable,
|
2154
|
+
* @ref yield_context, or a function object with the correct completion
|
2155
|
+
* signature. The function signature of the completion handler must be:
|
2156
|
+
* @code void handler(
|
2157
|
+
* // Result of operation.
|
2158
|
+
* const boost::system::error_code& error,
|
2159
|
+
*
|
2160
|
+
* // The number of bytes in the streambuf's get
|
2161
|
+
* // area up to and including the delimiter.
|
2162
|
+
* // 0 if an error occurred.
|
2163
|
+
* std::size_t bytes_transferred
|
2164
|
+
* ); @endcode
|
2165
|
+
* Regardless of whether the asynchronous operation completes immediately or
|
2166
|
+
* not, the completion handler will not be invoked from within this function.
|
2167
|
+
* On immediate completion, invocation of the handler will be performed in a
|
2168
|
+
* manner equivalent to using boost::asio::async_immediate().
|
2169
|
+
*
|
2170
|
+
* @par Completion Signature
|
2171
|
+
* @code void(boost::system::error_code, std::size_t) @endcode
|
2172
|
+
*
|
2173
|
+
* @note After a successful async_read_until operation, the streambuf may
|
2174
|
+
* contain additional data beyond the delimiter. An application will typically
|
2175
|
+
* leave that data in the streambuf for a subsequent async_read_until operation
|
2176
|
+
* to examine.
|
2177
|
+
*
|
2178
|
+
* @par Example
|
2179
|
+
* To asynchronously read data into a streambuf until a newline is encountered:
|
2180
|
+
* @code boost::asio::streambuf b;
|
2181
|
+
* ...
|
2182
|
+
* void handler(const boost::system::error_code& e, std::size_t size)
|
2183
|
+
* {
|
2184
|
+
* if (!e)
|
2185
|
+
* {
|
2186
|
+
* std::istream is(&b);
|
2187
|
+
* std::string line;
|
2188
|
+
* std::getline(is, line);
|
2189
|
+
* ...
|
2190
|
+
* }
|
2191
|
+
* }
|
2192
|
+
* ...
|
2193
|
+
* boost::asio::async_read_until(s, b, '\n', handler); @endcode
|
2194
|
+
* After the @c async_read_until operation completes successfully, the buffer
|
2195
|
+
* @c b contains the delimiter:
|
2196
|
+
* @code { 'a', 'b', ..., 'c', '\n', 'd', 'e', ... } @endcode
|
2197
|
+
* The call to @c std::getline then extracts the data up to and including the
|
2198
|
+
* newline (which is discarded), so that the string @c line contains:
|
2199
|
+
* @code { 'a', 'b', ..., 'c' } @endcode
|
2200
|
+
* The remaining data is left in the buffer @c b as follows:
|
2201
|
+
* @code { 'd', 'e', ... } @endcode
|
2202
|
+
* This data may be the start of a new line, to be extracted by a subsequent
|
2203
|
+
* @c async_read_until operation.
|
2204
|
+
*
|
2205
|
+
* @par Per-Operation Cancellation
|
2206
|
+
* This asynchronous operation supports cancellation for the following
|
2207
|
+
* boost::asio::cancellation_type values:
|
2208
|
+
*
|
2209
|
+
* @li @c cancellation_type::terminal
|
2210
|
+
*
|
2211
|
+
* @li @c cancellation_type::partial
|
2212
|
+
*
|
2213
|
+
* if they are also supported by the @c AsyncReadStream type's
|
2214
|
+
* @c async_read_some operation.
|
2215
|
+
*/
|
2216
|
+
template <typename AsyncReadStream, typename Allocator,
|
2217
|
+
BOOST_ASIO_COMPLETION_TOKEN_FOR(void (boost::system::error_code,
|
2218
|
+
std::size_t)) ReadToken = default_completion_token_t<
|
2219
|
+
typename AsyncReadStream::executor_type>>
|
2220
|
+
inline auto async_read_until(AsyncReadStream& s,
|
2221
|
+
boost::asio::basic_streambuf<Allocator>& b, char delim,
|
2222
|
+
ReadToken&& token = default_completion_token_t<
|
2223
|
+
typename AsyncReadStream::executor_type>())
|
2224
|
+
-> decltype(
|
2225
|
+
async_initiate<ReadToken,
|
2226
|
+
void (boost::system::error_code, std::size_t)>(
|
2227
|
+
declval<detail::initiate_async_read_until_delim_v1<AsyncReadStream>>(),
|
2228
|
+
token, basic_streambuf_ref<Allocator>(b), delim))
|
2229
|
+
{
|
2230
|
+
return async_initiate<ReadToken,
|
2231
|
+
void (boost::system::error_code, std::size_t)>(
|
2232
|
+
detail::initiate_async_read_until_delim_v1<AsyncReadStream>(s),
|
2233
|
+
token, basic_streambuf_ref<Allocator>(b), delim);
|
2234
|
+
}
|
2235
|
+
|
2236
|
+
/// Start an asynchronous operation to read data into a streambuf until it
|
2237
|
+
/// contains a specified delimiter.
|
2238
|
+
/**
|
2239
|
+
* This function is used to asynchronously read data into the specified
|
2240
|
+
* streambuf until the streambuf's get area contains the specified delimiter.
|
2241
|
+
* It is an initiating function for an @ref asynchronous_operation, and always
|
2242
|
+
* returns immediately. The asynchronous operation will continue until one of
|
2243
|
+
* the following conditions is true:
|
2244
|
+
*
|
2245
|
+
* @li The get area of the streambuf contains the specified delimiter.
|
2246
|
+
*
|
2247
|
+
* @li An error occurred.
|
2248
|
+
*
|
2249
|
+
* This operation is implemented in terms of zero or more calls to the stream's
|
2250
|
+
* async_read_some function, and is known as a <em>composed operation</em>. If
|
2251
|
+
* the streambuf's get area already contains the delimiter, this asynchronous
|
2252
|
+
* operation completes immediately. The program must ensure that the stream
|
2253
|
+
* performs no other read operations (such as async_read, async_read_until, the
|
2254
|
+
* stream's async_read_some function, or any other composed operations that
|
2255
|
+
* perform reads) until this operation completes.
|
2256
|
+
*
|
2257
|
+
* @param s The stream from which the data is to be read. The type must support
|
2258
|
+
* the AsyncReadStream concept.
|
2259
|
+
*
|
2260
|
+
* @param b A streambuf object into which the data will be read. Ownership of
|
2261
|
+
* the streambuf is retained by the caller, which must guarantee that it remains
|
2262
|
+
* valid until the completion handler is called.
|
2263
|
+
*
|
2264
|
+
* @param delim The delimiter string.
|
2265
|
+
*
|
2266
|
+
* @param token The @ref completion_token that will be used to produce a
|
2267
|
+
* completion handler, which will be called when the read completes.
|
2268
|
+
* Potential completion tokens include @ref use_future, @ref use_awaitable,
|
2269
|
+
* @ref yield_context, or a function object with the correct completion
|
2270
|
+
* signature. The function signature of the completion handler must be:
|
2271
|
+
* @code void handler(
|
2272
|
+
* // Result of operation.
|
2273
|
+
* const boost::system::error_code& error,
|
2274
|
+
*
|
2275
|
+
* // The number of bytes in the streambuf's get
|
2276
|
+
* // area up to and including the delimiter.
|
2277
|
+
* // 0 if an error occurred.
|
2278
|
+
* std::size_t bytes_transferred
|
2279
|
+
* ); @endcode
|
2280
|
+
* Regardless of whether the asynchronous operation completes immediately or
|
2281
|
+
* not, the completion handler will not be invoked from within this function.
|
2282
|
+
* On immediate completion, invocation of the handler will be performed in a
|
2283
|
+
* manner equivalent to using boost::asio::async_immediate().
|
2284
|
+
*
|
2285
|
+
* @par Completion Signature
|
2286
|
+
* @code void(boost::system::error_code, std::size_t) @endcode
|
2287
|
+
*
|
2288
|
+
* @note After a successful async_read_until operation, the streambuf may
|
2289
|
+
* contain additional data beyond the delimiter. An application will typically
|
2290
|
+
* leave that data in the streambuf for a subsequent async_read_until operation
|
2291
|
+
* to examine.
|
2292
|
+
*
|
2293
|
+
* @par Example
|
2294
|
+
* To asynchronously read data into a streambuf until a newline is encountered:
|
2295
|
+
* @code boost::asio::streambuf b;
|
2296
|
+
* ...
|
2297
|
+
* void handler(const boost::system::error_code& e, std::size_t size)
|
2298
|
+
* {
|
2299
|
+
* if (!e)
|
2300
|
+
* {
|
2301
|
+
* std::istream is(&b);
|
2302
|
+
* std::string line;
|
2303
|
+
* std::getline(is, line);
|
2304
|
+
* ...
|
2305
|
+
* }
|
2306
|
+
* }
|
2307
|
+
* ...
|
2308
|
+
* boost::asio::async_read_until(s, b, "\r\n", handler); @endcode
|
2309
|
+
* After the @c async_read_until operation completes successfully, the buffer
|
2310
|
+
* @c b contains the delimiter:
|
2311
|
+
* @code { 'a', 'b', ..., 'c', '\r', '\n', 'd', 'e', ... } @endcode
|
2312
|
+
* The call to @c std::getline then extracts the data up to and including the
|
2313
|
+
* newline (which is discarded), so that the string @c line contains:
|
2314
|
+
* @code { 'a', 'b', ..., 'c', '\r' } @endcode
|
2315
|
+
* The remaining data is left in the buffer @c b as follows:
|
2316
|
+
* @code { 'd', 'e', ... } @endcode
|
2317
|
+
* This data may be the start of a new line, to be extracted by a subsequent
|
2318
|
+
* @c async_read_until operation.
|
2319
|
+
*
|
2320
|
+
* @par Per-Operation Cancellation
|
2321
|
+
* This asynchronous operation supports cancellation for the following
|
2322
|
+
* boost::asio::cancellation_type values:
|
2323
|
+
*
|
2324
|
+
* @li @c cancellation_type::terminal
|
2325
|
+
*
|
2326
|
+
* @li @c cancellation_type::partial
|
2327
|
+
*
|
2328
|
+
* if they are also supported by the @c AsyncReadStream type's
|
2329
|
+
* @c async_read_some operation.
|
2330
|
+
*/
|
2331
|
+
template <typename AsyncReadStream, typename Allocator,
|
2332
|
+
BOOST_ASIO_COMPLETION_TOKEN_FOR(void (boost::system::error_code,
|
2333
|
+
std::size_t)) ReadToken = default_completion_token_t<
|
2334
|
+
typename AsyncReadStream::executor_type>>
|
2335
|
+
inline auto async_read_until(AsyncReadStream& s,
|
2336
|
+
boost::asio::basic_streambuf<Allocator>& b,
|
2337
|
+
BOOST_ASIO_STRING_VIEW_PARAM delim,
|
2338
|
+
ReadToken&& token = default_completion_token_t<
|
2339
|
+
typename AsyncReadStream::executor_type>())
|
2340
|
+
-> decltype(
|
2341
|
+
async_initiate<ReadToken,
|
2342
|
+
void (boost::system::error_code, std::size_t)>(
|
2343
|
+
declval<detail::initiate_async_read_until_delim_string_v1<
|
2344
|
+
AsyncReadStream>>(),
|
2345
|
+
token, basic_streambuf_ref<Allocator>(b),
|
2346
|
+
static_cast<std::string>(delim)))
|
2347
|
+
{
|
2348
|
+
return async_initiate<ReadToken,
|
2349
|
+
void (boost::system::error_code, std::size_t)>(
|
2350
|
+
detail::initiate_async_read_until_delim_string_v1<AsyncReadStream>(s),
|
2351
|
+
token, basic_streambuf_ref<Allocator>(b),
|
2352
|
+
static_cast<std::string>(delim));
|
2353
|
+
}
|
2354
|
+
|
2355
|
+
#if defined(BOOST_ASIO_HAS_BOOST_REGEX) \
|
2356
|
+
|| defined(GENERATING_DOCUMENTATION)
|
2357
|
+
|
2358
|
+
/// Start an asynchronous operation to read data into a streambuf until some
|
2359
|
+
/// part of its data matches a regular expression.
|
2360
|
+
/**
|
2361
|
+
* This function is used to asynchronously read data into the specified
|
2362
|
+
* streambuf until the streambuf's get area contains some data that matches a
|
2363
|
+
* regular expression. It is an initiating function for an @ref
|
2364
|
+
* asynchronous_operation, and always returns immediately. The asynchronous
|
2365
|
+
* operation will continue until one of the following conditions is true:
|
2366
|
+
*
|
2367
|
+
* @li A substring of the streambuf's get area matches the regular expression.
|
2368
|
+
*
|
2369
|
+
* @li An error occurred.
|
2370
|
+
*
|
2371
|
+
* This operation is implemented in terms of zero or more calls to the stream's
|
2372
|
+
* async_read_some function, and is known as a <em>composed operation</em>. If
|
2373
|
+
* the streambuf's get area already contains data that matches the regular
|
2374
|
+
* expression, this asynchronous operation completes immediately. The program
|
2375
|
+
* must ensure that the stream performs no other read operations (such as
|
2376
|
+
* async_read, async_read_until, the stream's async_read_some function, or any
|
2377
|
+
* other composed operations that perform reads) until this operation
|
2378
|
+
* completes.
|
2379
|
+
*
|
2380
|
+
* @param s The stream from which the data is to be read. The type must support
|
2381
|
+
* the AsyncReadStream concept.
|
2382
|
+
*
|
2383
|
+
* @param b A streambuf object into which the data will be read. Ownership of
|
2384
|
+
* the streambuf is retained by the caller, which must guarantee that it remains
|
2385
|
+
* valid until the completion handler is called.
|
2386
|
+
*
|
2387
|
+
* @param expr The regular expression.
|
2388
|
+
*
|
2389
|
+
* @param token The @ref completion_token that will be used to produce a
|
2390
|
+
* completion handler, which will be called when the read completes.
|
2391
|
+
* Potential completion tokens include @ref use_future, @ref use_awaitable,
|
2392
|
+
* @ref yield_context, or a function object with the correct completion
|
2393
|
+
* signature. The function signature of the completion handler must be:
|
2394
|
+
* @code void handler(
|
2395
|
+
* // Result of operation.
|
2396
|
+
* const boost::system::error_code& error,
|
2397
|
+
*
|
2398
|
+
* // The number of bytes in the streambuf's get
|
2399
|
+
* // area up to and including the substring
|
2400
|
+
* // that matches the regular. expression.
|
2401
|
+
* // 0 if an error occurred.
|
2402
|
+
* std::size_t bytes_transferred
|
2403
|
+
* ); @endcode
|
2404
|
+
* Regardless of whether the asynchronous operation completes immediately or
|
2405
|
+
* not, the completion handler will not be invoked from within this function.
|
2406
|
+
* On immediate completion, invocation of the handler will be performed in a
|
2407
|
+
* manner equivalent to using boost::asio::async_immediate().
|
2408
|
+
*
|
2409
|
+
* @par Completion Signature
|
2410
|
+
* @code void(boost::system::error_code, std::size_t) @endcode
|
2411
|
+
*
|
2412
|
+
* @note After a successful async_read_until operation, the streambuf may
|
2413
|
+
* contain additional data beyond that which matched the regular expression. An
|
2414
|
+
* application will typically leave that data in the streambuf for a subsequent
|
2415
|
+
* async_read_until operation to examine.
|
2416
|
+
*
|
2417
|
+
* @par Example
|
2418
|
+
* To asynchronously read data into a streambuf until a CR-LF sequence is
|
1238
2419
|
* encountered:
|
1239
|
-
* @code
|
2420
|
+
* @code boost::asio::streambuf b;
|
1240
2421
|
* ...
|
1241
2422
|
* void handler(const boost::system::error_code& e, std::size_t size)
|
1242
2423
|
* {
|
1243
2424
|
* if (!e)
|
1244
2425
|
* {
|
1245
|
-
* std::
|
1246
|
-
*
|
2426
|
+
* std::istream is(&b);
|
2427
|
+
* std::string line;
|
2428
|
+
* std::getline(is, line);
|
1247
2429
|
* ...
|
1248
2430
|
* }
|
1249
2431
|
* }
|
1250
2432
|
* ...
|
1251
|
-
* boost::asio::async_read_until(s,
|
1252
|
-
*
|
1253
|
-
*
|
1254
|
-
* @c data contains the data which matched the regular expression:
|
2433
|
+
* boost::asio::async_read_until(s, b, boost::regex("\r\n"), handler); @endcode
|
2434
|
+
* After the @c async_read_until operation completes successfully, the buffer
|
2435
|
+
* @c b contains the data which matched the regular expression:
|
1255
2436
|
* @code { 'a', 'b', ..., 'c', '\r', '\n', 'd', 'e', ... } @endcode
|
1256
|
-
* The call to @c
|
1257
|
-
* so that the string @c line contains:
|
1258
|
-
* @code { 'a', 'b', ..., 'c', '\r'
|
1259
|
-
*
|
1260
|
-
* as follows:
|
2437
|
+
* The call to @c std::getline then extracts the data up to and including the
|
2438
|
+
* newline (which is discarded), so that the string @c line contains:
|
2439
|
+
* @code { 'a', 'b', ..., 'c', '\r' } @endcode
|
2440
|
+
* The remaining data is left in the buffer @c b as follows:
|
1261
2441
|
* @code { 'd', 'e', ... } @endcode
|
1262
2442
|
* This data may be the start of a new line, to be extracted by a subsequent
|
1263
2443
|
* @c async_read_until operation.
|
2444
|
+
*
|
2445
|
+
* @par Per-Operation Cancellation
|
2446
|
+
* This asynchronous operation supports cancellation for the following
|
2447
|
+
* boost::asio::cancellation_type values:
|
2448
|
+
*
|
2449
|
+
* @li @c cancellation_type::terminal
|
2450
|
+
*
|
2451
|
+
* @li @c cancellation_type::partial
|
2452
|
+
*
|
2453
|
+
* if they are also supported by the @c AsyncReadStream type's
|
2454
|
+
* @c async_read_some operation.
|
1264
2455
|
*/
|
1265
|
-
template <typename AsyncReadStream,
|
1266
|
-
|
1267
|
-
|
1268
|
-
|
1269
|
-
async_read_until(AsyncReadStream& s,
|
1270
|
-
|
1271
|
-
const boost::
|
1272
|
-
|
2456
|
+
template <typename AsyncReadStream, typename Allocator, typename Traits,
|
2457
|
+
BOOST_ASIO_COMPLETION_TOKEN_FOR(void (boost::system::error_code,
|
2458
|
+
std::size_t)) ReadToken = default_completion_token_t<
|
2459
|
+
typename AsyncReadStream::executor_type>>
|
2460
|
+
inline auto async_read_until(AsyncReadStream& s,
|
2461
|
+
boost::asio::basic_streambuf<Allocator>& b,
|
2462
|
+
const boost::basic_regex<char, Traits>& expr,
|
2463
|
+
ReadToken&& token = default_completion_token_t<
|
2464
|
+
typename AsyncReadStream::executor_type>())
|
2465
|
+
-> decltype(
|
2466
|
+
async_initiate<ReadToken,
|
2467
|
+
void (boost::system::error_code, std::size_t)>(
|
2468
|
+
declval<detail::initiate_async_read_until_expr_v1<AsyncReadStream>>(),
|
2469
|
+
token, basic_streambuf_ref<Allocator>(b), expr))
|
2470
|
+
{
|
2471
|
+
return async_initiate<ReadToken,
|
2472
|
+
void (boost::system::error_code, std::size_t)>(
|
2473
|
+
detail::initiate_async_read_until_expr_v1<AsyncReadStream>(s),
|
2474
|
+
token, basic_streambuf_ref<Allocator>(b), expr);
|
2475
|
+
}
|
1273
2476
|
|
1274
2477
|
#endif // defined(BOOST_ASIO_HAS_BOOST_REGEX)
|
1275
2478
|
// || defined(GENERATING_DOCUMENTATION)
|
1276
2479
|
|
1277
|
-
/// Start an asynchronous operation to read data into a
|
1278
|
-
///
|
2480
|
+
/// Start an asynchronous operation to read data into a streambuf until a
|
2481
|
+
/// function object indicates a match.
|
1279
2482
|
/**
|
1280
|
-
* This function is used to asynchronously read data into the specified
|
1281
|
-
*
|
1282
|
-
*
|
1283
|
-
*
|
1284
|
-
* asynchronous operation will continue until one of
|
1285
|
-
* is true:
|
2483
|
+
* This function is used to asynchronously read data into the specified
|
2484
|
+
* streambuf until a user-defined match condition function object, when applied
|
2485
|
+
* to the data contained in the streambuf, indicates a successful match. It is
|
2486
|
+
* an initiating function for an @ref asynchronous_operation, and always
|
2487
|
+
* returns immediately. The asynchronous operation will continue until one of
|
2488
|
+
* the following conditions is true:
|
1286
2489
|
*
|
1287
2490
|
* @li The match condition function object returns a std::pair where the second
|
1288
2491
|
* element evaluates to true.
|
@@ -1300,17 +2503,14 @@ async_read_until(AsyncReadStream& s,
|
|
1300
2503
|
* @param s The stream from which the data is to be read. The type must support
|
1301
2504
|
* the AsyncReadStream concept.
|
1302
2505
|
*
|
1303
|
-
* @param
|
1304
|
-
* Although the buffers object may be copied as necessary, ownership of the
|
1305
|
-
* underlying memory blocks is retained by the caller, which must guarantee
|
1306
|
-
* that they remain valid until the handler is called.
|
2506
|
+
* @param b A streambuf object into which the data will be read.
|
1307
2507
|
*
|
1308
2508
|
* @param match_condition The function object to be called to determine whether
|
1309
2509
|
* a match exists. The signature of the function object must be:
|
1310
2510
|
* @code pair<iterator, bool> match_condition(iterator begin, iterator end);
|
1311
2511
|
* @endcode
|
1312
2512
|
* where @c iterator represents the type:
|
1313
|
-
* @code buffers_iterator<
|
2513
|
+
* @code buffers_iterator<basic_streambuf<Allocator>::const_buffers_type>
|
1314
2514
|
* @endcode
|
1315
2515
|
* The iterator parameters @c begin and @c end define the range of bytes to be
|
1316
2516
|
* scanned to determine whether there is a match. The @c first member of the
|
@@ -1320,27 +2520,32 @@ async_read_until(AsyncReadStream& s,
|
|
1320
2520
|
* @c second member of the return value is true if a match has been found, false
|
1321
2521
|
* otherwise.
|
1322
2522
|
*
|
1323
|
-
* @param
|
1324
|
-
*
|
1325
|
-
*
|
2523
|
+
* @param token The @ref completion_token that will be used to produce a
|
2524
|
+
* completion handler, which will be called when the read completes.
|
2525
|
+
* Potential completion tokens include @ref use_future, @ref use_awaitable,
|
2526
|
+
* @ref yield_context, or a function object with the correct completion
|
2527
|
+
* signature. The function signature of the completion handler must be:
|
1326
2528
|
* @code void handler(
|
1327
2529
|
* // Result of operation.
|
1328
2530
|
* const boost::system::error_code& error,
|
1329
2531
|
*
|
1330
|
-
* // The number of bytes in the
|
1331
|
-
* //
|
1332
|
-
* // function. O if an error occurred.
|
2532
|
+
* // The number of bytes in the streambuf's get
|
2533
|
+
* // area that have been fully consumed by the
|
2534
|
+
* // match function. O if an error occurred.
|
1333
2535
|
* std::size_t bytes_transferred
|
1334
2536
|
* ); @endcode
|
1335
2537
|
* Regardless of whether the asynchronous operation completes immediately or
|
1336
|
-
* not, the handler will not be invoked from within this function.
|
1337
|
-
* the handler will be performed in a
|
1338
|
-
* boost::asio::
|
2538
|
+
* not, the completion handler will not be invoked from within this function.
|
2539
|
+
* On immediate completion, invocation of the handler will be performed in a
|
2540
|
+
* manner equivalent to using boost::asio::async_immediate().
|
1339
2541
|
*
|
1340
|
-
* @note After a successful async_read_until operation, the
|
1341
|
-
*
|
1342
|
-
*
|
1343
|
-
*
|
2542
|
+
* @note After a successful async_read_until operation, the streambuf may
|
2543
|
+
* contain additional data beyond that which matched the function object. An
|
2544
|
+
* application will typically leave that data in the streambuf for a subsequent
|
2545
|
+
* async_read_until operation to examine.
|
2546
|
+
*
|
2547
|
+
* @par Completion Signature
|
2548
|
+
* @code void(boost::system::error_code, std::size_t) @endcode
|
1344
2549
|
*
|
1345
2550
|
* @note The default implementation of the @c is_match_condition type trait
|
1346
2551
|
* evaluates to true for function pointers and function objects with a
|
@@ -1348,10 +2553,9 @@ async_read_until(AsyncReadStream& s,
|
|
1348
2553
|
* function objects.
|
1349
2554
|
*
|
1350
2555
|
* @par Examples
|
1351
|
-
* To asynchronously read data into a
|
1352
|
-
* encountered:
|
2556
|
+
* To asynchronously read data into a streambuf until whitespace is encountered:
|
1353
2557
|
* @code typedef boost::asio::buffers_iterator<
|
1354
|
-
* boost::asio::
|
2558
|
+
* boost::asio::streambuf::const_buffers_type> iterator;
|
1355
2559
|
*
|
1356
2560
|
* std::pair<iterator, bool>
|
1357
2561
|
* match_whitespace(iterator begin, iterator end)
|
@@ -1365,12 +2569,12 @@ async_read_until(AsyncReadStream& s,
|
|
1365
2569
|
* ...
|
1366
2570
|
* void handler(const boost::system::error_code& e, std::size_t size);
|
1367
2571
|
* ...
|
1368
|
-
*
|
1369
|
-
* boost::asio::async_read_until(s,
|
2572
|
+
* boost::asio::streambuf b;
|
2573
|
+
* boost::asio::async_read_until(s, b, match_whitespace, handler);
|
1370
2574
|
* @endcode
|
1371
2575
|
*
|
1372
|
-
* To asynchronously read data into a
|
1373
|
-
*
|
2576
|
+
* To asynchronously read data into a streambuf until a matching character is
|
2577
|
+
* found:
|
1374
2578
|
* @code class match_char
|
1375
2579
|
* {
|
1376
2580
|
* public:
|
@@ -1398,295 +2602,431 @@ async_read_until(AsyncReadStream& s,
|
|
1398
2602
|
* ...
|
1399
2603
|
* void handler(const boost::system::error_code& e, std::size_t size);
|
1400
2604
|
* ...
|
1401
|
-
*
|
1402
|
-
* boost::asio::async_read_until(s,
|
2605
|
+
* boost::asio::streambuf b;
|
2606
|
+
* boost::asio::async_read_until(s, b, match_char('a'), handler);
|
1403
2607
|
* @endcode
|
2608
|
+
*
|
2609
|
+
* @par Per-Operation Cancellation
|
2610
|
+
* This asynchronous operation supports cancellation for the following
|
2611
|
+
* boost::asio::cancellation_type values:
|
2612
|
+
*
|
2613
|
+
* @li @c cancellation_type::terminal
|
2614
|
+
*
|
2615
|
+
* @li @c cancellation_type::partial
|
2616
|
+
*
|
2617
|
+
* if they are also supported by the @c AsyncReadStream type's
|
2618
|
+
* @c async_read_some operation.
|
1404
2619
|
*/
|
1405
|
-
template <typename AsyncReadStream, typename
|
1406
|
-
|
1407
|
-
|
1408
|
-
|
1409
|
-
async_read_until(AsyncReadStream& s,
|
1410
|
-
|
1411
|
-
|
1412
|
-
|
2620
|
+
template <typename AsyncReadStream, typename Allocator, typename MatchCondition,
|
2621
|
+
BOOST_ASIO_COMPLETION_TOKEN_FOR(void (boost::system::error_code,
|
2622
|
+
std::size_t)) ReadToken = default_completion_token_t<
|
2623
|
+
typename AsyncReadStream::executor_type>>
|
2624
|
+
inline auto async_read_until(AsyncReadStream& s,
|
2625
|
+
boost::asio::basic_streambuf<Allocator>& b, MatchCondition match_condition,
|
2626
|
+
ReadToken&& token = default_completion_token_t<
|
2627
|
+
typename AsyncReadStream::executor_type>(),
|
2628
|
+
constraint_t<is_match_condition<MatchCondition>::value> = 0)
|
2629
|
+
-> decltype(
|
2630
|
+
async_initiate<ReadToken,
|
2631
|
+
void (boost::system::error_code, std::size_t)>(
|
2632
|
+
declval<detail::initiate_async_read_until_match_v1<AsyncReadStream>>(),
|
2633
|
+
token, basic_streambuf_ref<Allocator>(b), match_condition))
|
2634
|
+
{
|
2635
|
+
return async_initiate<ReadToken,
|
2636
|
+
void (boost::system::error_code, std::size_t)>(
|
2637
|
+
detail::initiate_async_read_until_match_v1<AsyncReadStream>(s),
|
2638
|
+
token, basic_streambuf_ref<Allocator>(b), match_condition);
|
2639
|
+
}
|
1413
2640
|
|
1414
|
-
#
|
2641
|
+
#endif // !defined(BOOST_ASIO_NO_IOSTREAM)
|
2642
|
+
#endif // !defined(BOOST_ASIO_NO_EXTENSIONS)
|
2643
|
+
#endif // !defined(BOOST_ASIO_NO_DYNAMIC_BUFFER_V1)
|
1415
2644
|
|
1416
|
-
/// Start an asynchronous operation to read data into a
|
1417
|
-
/// contains a specified delimiter.
|
2645
|
+
/// Start an asynchronous operation to read data into a dynamic buffer sequence
|
2646
|
+
/// until it contains a specified delimiter.
|
1418
2647
|
/**
|
1419
|
-
* This function is used to asynchronously read data into the specified
|
1420
|
-
*
|
1421
|
-
*
|
1422
|
-
*
|
1423
|
-
*
|
1424
|
-
* @li The get area of the streambuf contains the specified delimiter.
|
2648
|
+
* This function is used to asynchronously read data into the specified dynamic
|
2649
|
+
* buffer sequence until the dynamic buffer sequence's get area contains the
|
2650
|
+
* specified delimiter. It is an initiating function for an @ref
|
2651
|
+
* asynchronous_operation, and always returns immediately. The asynchronous
|
2652
|
+
* operation will continue until one of the following conditions is true:
|
1425
2653
|
*
|
1426
|
-
* @li
|
2654
|
+
* @li The get area of the dynamic buffer sequence contains the specified
|
2655
|
+
* delimiter.
|
1427
2656
|
*
|
1428
|
-
*
|
1429
|
-
*
|
1430
|
-
*
|
1431
|
-
*
|
1432
|
-
*
|
1433
|
-
*
|
1434
|
-
*
|
2657
|
+
* @li An error occurred.
|
2658
|
+
*
|
2659
|
+
* This operation is implemented in terms of zero or more calls to the stream's
|
2660
|
+
* async_read_some function, and is known as a <em>composed operation</em>. If
|
2661
|
+
* the dynamic buffer sequence's get area already contains the delimiter, this
|
2662
|
+
* asynchronous operation completes immediately. The program must ensure that
|
2663
|
+
* the stream performs no other read operations (such as async_read,
|
2664
|
+
* async_read_until, the stream's async_read_some function, or any other
|
2665
|
+
* composed operations that perform reads) until this operation completes.
|
1435
2666
|
*
|
1436
2667
|
* @param s The stream from which the data is to be read. The type must support
|
1437
2668
|
* the AsyncReadStream concept.
|
1438
2669
|
*
|
1439
|
-
* @param
|
1440
|
-
* the
|
1441
|
-
*
|
2670
|
+
* @param buffers The dynamic buffer sequence into which the data will be read.
|
2671
|
+
* Although the buffers object may be copied as necessary, ownership of the
|
2672
|
+
* underlying memory blocks is retained by the caller, which must guarantee
|
2673
|
+
* that they remain valid until the completion handler is called.
|
1442
2674
|
*
|
1443
2675
|
* @param delim The delimiter character.
|
1444
2676
|
*
|
1445
|
-
* @param
|
1446
|
-
*
|
1447
|
-
*
|
2677
|
+
* @param token The @ref completion_token that will be used to produce a
|
2678
|
+
* completion handler, which will be called when the read completes.
|
2679
|
+
* Potential completion tokens include @ref use_future, @ref use_awaitable,
|
2680
|
+
* @ref yield_context, or a function object with the correct completion
|
2681
|
+
* signature. The function signature of the completion handler must be:
|
1448
2682
|
* @code void handler(
|
1449
2683
|
* // Result of operation.
|
1450
2684
|
* const boost::system::error_code& error,
|
1451
2685
|
*
|
1452
|
-
* // The number of bytes in the
|
1453
|
-
* // area up to and including the delimiter.
|
2686
|
+
* // The number of bytes in the dynamic buffer sequence's
|
2687
|
+
* // get area up to and including the delimiter.
|
1454
2688
|
* // 0 if an error occurred.
|
1455
2689
|
* std::size_t bytes_transferred
|
1456
2690
|
* ); @endcode
|
1457
2691
|
* Regardless of whether the asynchronous operation completes immediately or
|
1458
|
-
* not, the handler will not be invoked from within this function.
|
1459
|
-
* the handler will be performed in a
|
1460
|
-
* boost::asio::
|
2692
|
+
* not, the completion handler will not be invoked from within this function.
|
2693
|
+
* On immediate completion, invocation of the handler will be performed in a
|
2694
|
+
* manner equivalent to using boost::asio::async_immediate().
|
1461
2695
|
*
|
1462
|
-
* @
|
1463
|
-
*
|
1464
|
-
*
|
1465
|
-
*
|
2696
|
+
* @par Completion Signature
|
2697
|
+
* @code void(boost::system::error_code, std::size_t) @endcode
|
2698
|
+
*
|
2699
|
+
* @note After a successful async_read_until operation, the dynamic buffer
|
2700
|
+
* sequence may contain additional data beyond the delimiter. An application
|
2701
|
+
* will typically leave that data in the dynamic buffer sequence for a
|
2702
|
+
* subsequent async_read_until operation to examine.
|
1466
2703
|
*
|
1467
2704
|
* @par Example
|
1468
|
-
* To asynchronously read data into a
|
1469
|
-
*
|
2705
|
+
* To asynchronously read data into a @c std::string until a newline is
|
2706
|
+
* encountered:
|
2707
|
+
* @code std::string data;
|
1470
2708
|
* ...
|
1471
2709
|
* void handler(const boost::system::error_code& e, std::size_t size)
|
1472
2710
|
* {
|
1473
2711
|
* if (!e)
|
1474
2712
|
* {
|
1475
|
-
* std::
|
1476
|
-
*
|
1477
|
-
* std::getline(is, line);
|
2713
|
+
* std::string line = data.substr(0, n);
|
2714
|
+
* data.erase(0, n);
|
1478
2715
|
* ...
|
1479
2716
|
* }
|
1480
2717
|
* }
|
1481
2718
|
* ...
|
1482
|
-
* boost::asio::async_read_until(s,
|
2719
|
+
* boost::asio::async_read_until(s, data, '\n', handler); @endcode
|
1483
2720
|
* After the @c async_read_until operation completes successfully, the buffer
|
1484
|
-
* @c
|
2721
|
+
* @c data contains the delimiter:
|
1485
2722
|
* @code { 'a', 'b', ..., 'c', '\n', 'd', 'e', ... } @endcode
|
1486
|
-
* The call to @c
|
1487
|
-
*
|
1488
|
-
* @code { 'a', 'b', ..., 'c' } @endcode
|
1489
|
-
*
|
2723
|
+
* The call to @c substr then extracts the data up to and including the
|
2724
|
+
* delimiter, so that the string @c line contains:
|
2725
|
+
* @code { 'a', 'b', ..., 'c', '\n' } @endcode
|
2726
|
+
* After the call to @c erase, the remaining data is left in the buffer @c data
|
2727
|
+
* as follows:
|
1490
2728
|
* @code { 'd', 'e', ... } @endcode
|
1491
2729
|
* This data may be the start of a new line, to be extracted by a subsequent
|
1492
2730
|
* @c async_read_until operation.
|
2731
|
+
*
|
2732
|
+
* @par Per-Operation Cancellation
|
2733
|
+
* This asynchronous operation supports cancellation for the following
|
2734
|
+
* boost::asio::cancellation_type values:
|
2735
|
+
*
|
2736
|
+
* @li @c cancellation_type::terminal
|
2737
|
+
*
|
2738
|
+
* @li @c cancellation_type::partial
|
2739
|
+
*
|
2740
|
+
* if they are also supported by the @c AsyncReadStream type's
|
2741
|
+
* @c async_read_some operation.
|
1493
2742
|
*/
|
1494
|
-
template <typename AsyncReadStream, typename
|
1495
|
-
|
1496
|
-
|
1497
|
-
|
1498
|
-
|
1499
|
-
char delim,
|
2743
|
+
template <typename AsyncReadStream, typename DynamicBuffer_v2,
|
2744
|
+
BOOST_ASIO_COMPLETION_TOKEN_FOR(void (boost::system::error_code,
|
2745
|
+
std::size_t)) ReadToken = default_completion_token_t<
|
2746
|
+
typename AsyncReadStream::executor_type>>
|
2747
|
+
inline auto async_read_until(AsyncReadStream& s,
|
2748
|
+
DynamicBuffer_v2 buffers, char delim,
|
2749
|
+
ReadToken&& token = default_completion_token_t<
|
2750
|
+
typename AsyncReadStream::executor_type>(),
|
2751
|
+
constraint_t<
|
2752
|
+
is_dynamic_buffer_v2<DynamicBuffer_v2>::value
|
2753
|
+
> = 0)
|
2754
|
+
-> decltype(
|
2755
|
+
async_initiate<ReadToken,
|
2756
|
+
void (boost::system::error_code, std::size_t)>(
|
2757
|
+
declval<detail::initiate_async_read_until_delim_v2<AsyncReadStream>>(),
|
2758
|
+
token, static_cast<DynamicBuffer_v2&&>(buffers), delim))
|
2759
|
+
{
|
2760
|
+
return async_initiate<ReadToken,
|
2761
|
+
void (boost::system::error_code, std::size_t)>(
|
2762
|
+
detail::initiate_async_read_until_delim_v2<AsyncReadStream>(s),
|
2763
|
+
token, static_cast<DynamicBuffer_v2&&>(buffers), delim);
|
2764
|
+
}
|
1500
2765
|
|
1501
|
-
/// Start an asynchronous operation to read data into a
|
1502
|
-
/// contains a specified delimiter.
|
2766
|
+
/// Start an asynchronous operation to read data into a dynamic buffer sequence
|
2767
|
+
/// until it contains a specified delimiter.
|
1503
2768
|
/**
|
1504
|
-
* This function is used to asynchronously read data into the specified
|
1505
|
-
*
|
1506
|
-
*
|
1507
|
-
*
|
2769
|
+
* This function is used to asynchronously read data into the specified dynamic
|
2770
|
+
* buffer sequence until the dynamic buffer sequence's get area contains the
|
2771
|
+
* specified delimiter. It is an initiating function for an @ref
|
2772
|
+
* asynchronous_operation, and always returns immediately. The asynchronous
|
2773
|
+
* operation will continue until one of the following conditions is true:
|
1508
2774
|
*
|
1509
|
-
* @li The get area of the
|
2775
|
+
* @li The get area of the dynamic buffer sequence contains the specified
|
2776
|
+
* delimiter.
|
1510
2777
|
*
|
1511
2778
|
* @li An error occurred.
|
1512
2779
|
*
|
1513
2780
|
* This operation is implemented in terms of zero or more calls to the stream's
|
1514
2781
|
* async_read_some function, and is known as a <em>composed operation</em>. If
|
1515
|
-
* the
|
1516
|
-
* operation completes immediately. The program must ensure that
|
1517
|
-
* performs no other read operations (such as async_read,
|
1518
|
-
* stream's async_read_some function, or any other
|
1519
|
-
* perform reads) until this operation completes.
|
2782
|
+
* the dynamic buffer sequence's get area already contains the delimiter, this
|
2783
|
+
* asynchronous operation completes immediately. The program must ensure that
|
2784
|
+
* the stream performs no other read operations (such as async_read,
|
2785
|
+
* async_read_until, the stream's async_read_some function, or any other
|
2786
|
+
* composed operations that perform reads) until this operation completes.
|
1520
2787
|
*
|
1521
2788
|
* @param s The stream from which the data is to be read. The type must support
|
1522
2789
|
* the AsyncReadStream concept.
|
1523
2790
|
*
|
1524
|
-
* @param
|
1525
|
-
* the
|
1526
|
-
*
|
2791
|
+
* @param buffers The dynamic buffer sequence into which the data will be read.
|
2792
|
+
* Although the buffers object may be copied as necessary, ownership of the
|
2793
|
+
* underlying memory blocks is retained by the caller, which must guarantee
|
2794
|
+
* that they remain valid until the completion handler is called.
|
1527
2795
|
*
|
1528
2796
|
* @param delim The delimiter string.
|
1529
2797
|
*
|
1530
|
-
* @param
|
1531
|
-
*
|
1532
|
-
*
|
2798
|
+
* @param token The @ref completion_token that will be used to produce a
|
2799
|
+
* completion handler, which will be called when the read completes.
|
2800
|
+
* Potential completion tokens include @ref use_future, @ref use_awaitable,
|
2801
|
+
* @ref yield_context, or a function object with the correct completion
|
2802
|
+
* signature. The function signature of the completion handler must be:
|
1533
2803
|
* @code void handler(
|
1534
2804
|
* // Result of operation.
|
1535
2805
|
* const boost::system::error_code& error,
|
1536
2806
|
*
|
1537
|
-
* // The number of bytes in the
|
1538
|
-
* // area up to and including the delimiter.
|
1539
|
-
* // 0 if an error occurred.
|
2807
|
+
* // The number of bytes in the dynamic buffer sequence's
|
2808
|
+
* // get area up to and including the delimiter.
|
1540
2809
|
* std::size_t bytes_transferred
|
1541
2810
|
* ); @endcode
|
1542
2811
|
* Regardless of whether the asynchronous operation completes immediately or
|
1543
|
-
* not, the handler will not be invoked from within this function.
|
1544
|
-
* the handler will be performed in a
|
1545
|
-
* boost::asio::
|
2812
|
+
* not, the completion handler will not be invoked from within this function.
|
2813
|
+
* On immediate completion, invocation of the handler will be performed in a
|
2814
|
+
* manner equivalent to using boost::asio::async_immediate().
|
1546
2815
|
*
|
1547
|
-
* @
|
1548
|
-
*
|
1549
|
-
*
|
1550
|
-
*
|
2816
|
+
* @par Completion Signature
|
2817
|
+
* @code void(boost::system::error_code, std::size_t) @endcode
|
2818
|
+
*
|
2819
|
+
* @note After a successful async_read_until operation, the dynamic buffer
|
2820
|
+
* sequence may contain additional data beyond the delimiter. An application
|
2821
|
+
* will typically leave that data in the dynamic buffer sequence for a
|
2822
|
+
* subsequent async_read_until operation to examine.
|
1551
2823
|
*
|
1552
2824
|
* @par Example
|
1553
|
-
* To asynchronously read data into a
|
1554
|
-
*
|
2825
|
+
* To asynchronously read data into a @c std::string until a CR-LF sequence is
|
2826
|
+
* encountered:
|
2827
|
+
* @code std::string data;
|
1555
2828
|
* ...
|
1556
2829
|
* void handler(const boost::system::error_code& e, std::size_t size)
|
1557
2830
|
* {
|
1558
2831
|
* if (!e)
|
1559
2832
|
* {
|
1560
|
-
* std::
|
1561
|
-
*
|
1562
|
-
* std::getline(is, line);
|
2833
|
+
* std::string line = data.substr(0, n);
|
2834
|
+
* data.erase(0, n);
|
1563
2835
|
* ...
|
1564
2836
|
* }
|
1565
2837
|
* }
|
1566
2838
|
* ...
|
1567
|
-
* boost::asio::async_read_until(s,
|
1568
|
-
* After the @c async_read_until operation completes successfully, the
|
1569
|
-
* @c
|
2839
|
+
* boost::asio::async_read_until(s, data, "\r\n", handler); @endcode
|
2840
|
+
* After the @c async_read_until operation completes successfully, the string
|
2841
|
+
* @c data contains the delimiter:
|
1570
2842
|
* @code { 'a', 'b', ..., 'c', '\r', '\n', 'd', 'e', ... } @endcode
|
1571
|
-
* The call to @c
|
1572
|
-
*
|
1573
|
-
* @code { 'a', 'b', ..., 'c', '\r' } @endcode
|
1574
|
-
*
|
2843
|
+
* The call to @c substr then extracts the data up to and including the
|
2844
|
+
* delimiter, so that the string @c line contains:
|
2845
|
+
* @code { 'a', 'b', ..., 'c', '\r', '\n' } @endcode
|
2846
|
+
* After the call to @c erase, the remaining data is left in the string @c data
|
2847
|
+
* as follows:
|
1575
2848
|
* @code { 'd', 'e', ... } @endcode
|
1576
2849
|
* This data may be the start of a new line, to be extracted by a subsequent
|
1577
2850
|
* @c async_read_until operation.
|
2851
|
+
*
|
2852
|
+
* @par Per-Operation Cancellation
|
2853
|
+
* This asynchronous operation supports cancellation for the following
|
2854
|
+
* boost::asio::cancellation_type values:
|
2855
|
+
*
|
2856
|
+
* @li @c cancellation_type::terminal
|
2857
|
+
*
|
2858
|
+
* @li @c cancellation_type::partial
|
2859
|
+
*
|
2860
|
+
* if they are also supported by the @c AsyncReadStream type's
|
2861
|
+
* @c async_read_some operation.
|
1578
2862
|
*/
|
1579
|
-
template <typename AsyncReadStream, typename
|
1580
|
-
|
1581
|
-
|
1582
|
-
|
1583
|
-
|
2863
|
+
template <typename AsyncReadStream, typename DynamicBuffer_v2,
|
2864
|
+
BOOST_ASIO_COMPLETION_TOKEN_FOR(void (boost::system::error_code,
|
2865
|
+
std::size_t)) ReadToken = default_completion_token_t<
|
2866
|
+
typename AsyncReadStream::executor_type>>
|
2867
|
+
inline auto async_read_until(AsyncReadStream& s, DynamicBuffer_v2 buffers,
|
1584
2868
|
BOOST_ASIO_STRING_VIEW_PARAM delim,
|
1585
|
-
|
2869
|
+
ReadToken&& token = default_completion_token_t<
|
2870
|
+
typename AsyncReadStream::executor_type>(),
|
2871
|
+
constraint_t<
|
2872
|
+
is_dynamic_buffer_v2<DynamicBuffer_v2>::value
|
2873
|
+
> = 0)
|
2874
|
+
-> decltype(
|
2875
|
+
async_initiate<ReadToken,
|
2876
|
+
void (boost::system::error_code, std::size_t)>(
|
2877
|
+
declval<detail::initiate_async_read_until_delim_string_v2<
|
2878
|
+
AsyncReadStream>>(),
|
2879
|
+
token, static_cast<DynamicBuffer_v2&&>(buffers),
|
2880
|
+
static_cast<std::string>(delim)))
|
2881
|
+
{
|
2882
|
+
return async_initiate<ReadToken,
|
2883
|
+
void (boost::system::error_code, std::size_t)>(
|
2884
|
+
detail::initiate_async_read_until_delim_string_v2<AsyncReadStream>(s),
|
2885
|
+
token, static_cast<DynamicBuffer_v2&&>(buffers),
|
2886
|
+
static_cast<std::string>(delim));
|
2887
|
+
}
|
1586
2888
|
|
2889
|
+
#if !defined(BOOST_ASIO_NO_EXTENSIONS)
|
1587
2890
|
#if defined(BOOST_ASIO_HAS_BOOST_REGEX) \
|
1588
2891
|
|| defined(GENERATING_DOCUMENTATION)
|
1589
2892
|
|
1590
|
-
/// Start an asynchronous operation to read data into a
|
1591
|
-
/// part of its data matches a regular expression.
|
2893
|
+
/// Start an asynchronous operation to read data into a dynamic buffer sequence
|
2894
|
+
/// until some part of its data matches a regular expression.
|
1592
2895
|
/**
|
1593
|
-
* This function is used to asynchronously read data into the specified
|
1594
|
-
*
|
1595
|
-
* regular expression.
|
2896
|
+
* This function is used to asynchronously read data into the specified dynamic
|
2897
|
+
* buffer sequence until the dynamic buffer sequence's get area contains some
|
2898
|
+
* data that matches a regular expression. It is an initiating function for an
|
2899
|
+
* @ref asynchronous_operation, and always returns immediately. The
|
1596
2900
|
* asynchronous operation will continue until one of the following conditions
|
1597
2901
|
* is true:
|
1598
2902
|
*
|
1599
|
-
* @li A substring of the
|
2903
|
+
* @li A substring of the dynamic buffer sequence's get area matches the regular
|
2904
|
+
* expression.
|
1600
2905
|
*
|
1601
2906
|
* @li An error occurred.
|
1602
2907
|
*
|
1603
2908
|
* This operation is implemented in terms of zero or more calls to the stream's
|
1604
2909
|
* async_read_some function, and is known as a <em>composed operation</em>. If
|
1605
|
-
* the
|
1606
|
-
* expression, this asynchronous operation completes immediately.
|
1607
|
-
* must ensure that the stream performs no other read operations
|
1608
|
-
* async_read, async_read_until, the stream's async_read_some
|
1609
|
-
* other composed operations that perform reads) until this
|
1610
|
-
* completes.
|
2910
|
+
* the dynamic buffer sequence's get area already contains data that matches
|
2911
|
+
* the regular expression, this asynchronous operation completes immediately.
|
2912
|
+
* The program must ensure that the stream performs no other read operations
|
2913
|
+
* (such as async_read, async_read_until, the stream's async_read_some
|
2914
|
+
* function, or any other composed operations that perform reads) until this
|
2915
|
+
* operation completes.
|
1611
2916
|
*
|
1612
2917
|
* @param s The stream from which the data is to be read. The type must support
|
1613
2918
|
* the AsyncReadStream concept.
|
1614
2919
|
*
|
1615
|
-
* @param
|
1616
|
-
* the
|
1617
|
-
*
|
2920
|
+
* @param buffers The dynamic buffer sequence into which the data will be read.
|
2921
|
+
* Although the buffers object may be copied as necessary, ownership of the
|
2922
|
+
* underlying memory blocks is retained by the caller, which must guarantee
|
2923
|
+
* that they remain valid until the completion handler is called.
|
1618
2924
|
*
|
1619
2925
|
* @param expr The regular expression.
|
1620
2926
|
*
|
1621
|
-
* @param
|
1622
|
-
*
|
1623
|
-
*
|
2927
|
+
* @param token The @ref completion_token that will be used to produce a
|
2928
|
+
* completion handler, which will be called when the read completes.
|
2929
|
+
* Potential completion tokens include @ref use_future, @ref use_awaitable,
|
2930
|
+
* @ref yield_context, or a function object with the correct completion
|
2931
|
+
* signature. The function signature of the completion handler must be:
|
1624
2932
|
* @code void handler(
|
1625
2933
|
* // Result of operation.
|
1626
2934
|
* const boost::system::error_code& error,
|
1627
2935
|
*
|
1628
|
-
* // The number of bytes in the
|
1629
|
-
* // area up to and including the
|
1630
|
-
* // that matches the regular
|
2936
|
+
* // The number of bytes in the dynamic buffer
|
2937
|
+
* // sequence's get area up to and including the
|
2938
|
+
* // substring that matches the regular expression.
|
1631
2939
|
* // 0 if an error occurred.
|
1632
2940
|
* std::size_t bytes_transferred
|
1633
2941
|
* ); @endcode
|
1634
2942
|
* Regardless of whether the asynchronous operation completes immediately or
|
1635
|
-
* not, the handler will not be invoked from within this function.
|
1636
|
-
* the handler will be performed in a
|
1637
|
-
* boost::asio::
|
2943
|
+
* not, the completion handler will not be invoked from within this function.
|
2944
|
+
* On immediate completion, invocation of the handler will be performed in a
|
2945
|
+
* manner equivalent to using boost::asio::async_immediate().
|
1638
2946
|
*
|
1639
|
-
* @
|
1640
|
-
*
|
1641
|
-
*
|
1642
|
-
* async_read_until operation
|
2947
|
+
* @par Completion Signature
|
2948
|
+
* @code void(boost::system::error_code, std::size_t) @endcode
|
2949
|
+
*
|
2950
|
+
* @note After a successful async_read_until operation, the dynamic buffer
|
2951
|
+
* sequence may contain additional data beyond that which matched the regular
|
2952
|
+
* expression. An application will typically leave that data in the dynamic
|
2953
|
+
* buffer sequence for a subsequent async_read_until operation to examine.
|
1643
2954
|
*
|
1644
2955
|
* @par Example
|
1645
|
-
* To asynchronously read data into a
|
2956
|
+
* To asynchronously read data into a @c std::string until a CR-LF sequence is
|
1646
2957
|
* encountered:
|
1647
|
-
* @code
|
2958
|
+
* @code std::string data;
|
1648
2959
|
* ...
|
1649
2960
|
* void handler(const boost::system::error_code& e, std::size_t size)
|
1650
2961
|
* {
|
1651
2962
|
* if (!e)
|
1652
2963
|
* {
|
1653
|
-
* std::
|
1654
|
-
*
|
1655
|
-
* std::getline(is, line);
|
2964
|
+
* std::string line = data.substr(0, n);
|
2965
|
+
* data.erase(0, n);
|
1656
2966
|
* ...
|
1657
2967
|
* }
|
1658
2968
|
* }
|
1659
2969
|
* ...
|
1660
|
-
* boost::asio::async_read_until(s,
|
1661
|
-
*
|
1662
|
-
* @c
|
2970
|
+
* boost::asio::async_read_until(s, data,
|
2971
|
+
* boost::regex("\r\n"), handler); @endcode
|
2972
|
+
* After the @c async_read_until operation completes successfully, the string
|
2973
|
+
* @c data contains the data which matched the regular expression:
|
1663
2974
|
* @code { 'a', 'b', ..., 'c', '\r', '\n', 'd', 'e', ... } @endcode
|
1664
|
-
* The call to @c
|
1665
|
-
*
|
1666
|
-
* @code { 'a', 'b', ..., 'c', '\r' } @endcode
|
1667
|
-
*
|
2975
|
+
* The call to @c substr then extracts the data up to and including the match,
|
2976
|
+
* so that the string @c line contains:
|
2977
|
+
* @code { 'a', 'b', ..., 'c', '\r', '\n' } @endcode
|
2978
|
+
* After the call to @c erase, the remaining data is left in the string @c data
|
2979
|
+
* as follows:
|
1668
2980
|
* @code { 'd', 'e', ... } @endcode
|
1669
2981
|
* This data may be the start of a new line, to be extracted by a subsequent
|
1670
2982
|
* @c async_read_until operation.
|
2983
|
+
*
|
2984
|
+
* @par Per-Operation Cancellation
|
2985
|
+
* This asynchronous operation supports cancellation for the following
|
2986
|
+
* boost::asio::cancellation_type values:
|
2987
|
+
*
|
2988
|
+
* @li @c cancellation_type::terminal
|
2989
|
+
*
|
2990
|
+
* @li @c cancellation_type::partial
|
2991
|
+
*
|
2992
|
+
* if they are also supported by the @c AsyncReadStream type's
|
2993
|
+
* @c async_read_some operation.
|
1671
2994
|
*/
|
1672
|
-
template <typename AsyncReadStream, typename
|
1673
|
-
|
1674
|
-
|
1675
|
-
|
1676
|
-
|
1677
|
-
|
2995
|
+
template <typename AsyncReadStream, typename DynamicBuffer_v2, typename Traits,
|
2996
|
+
BOOST_ASIO_COMPLETION_TOKEN_FOR(void (boost::system::error_code,
|
2997
|
+
std::size_t)) ReadToken = default_completion_token_t<
|
2998
|
+
typename AsyncReadStream::executor_type>>
|
2999
|
+
inline auto async_read_until(AsyncReadStream& s, DynamicBuffer_v2 buffers,
|
3000
|
+
const boost::basic_regex<char, Traits>& expr,
|
3001
|
+
ReadToken&& token = default_completion_token_t<
|
3002
|
+
typename AsyncReadStream::executor_type>(),
|
3003
|
+
constraint_t<
|
3004
|
+
is_dynamic_buffer_v2<DynamicBuffer_v2>::value
|
3005
|
+
> = 0)
|
3006
|
+
-> decltype(
|
3007
|
+
async_initiate<ReadToken,
|
3008
|
+
void (boost::system::error_code, std::size_t)>(
|
3009
|
+
declval<detail::initiate_async_read_until_expr_v2<AsyncReadStream>>(),
|
3010
|
+
token, static_cast<DynamicBuffer_v2&&>(buffers), expr))
|
3011
|
+
{
|
3012
|
+
return async_initiate<ReadToken,
|
3013
|
+
void (boost::system::error_code, std::size_t)>(
|
3014
|
+
detail::initiate_async_read_until_expr_v2<AsyncReadStream>(s),
|
3015
|
+
token, static_cast<DynamicBuffer_v2&&>(buffers), expr);
|
3016
|
+
}
|
1678
3017
|
|
1679
3018
|
#endif // defined(BOOST_ASIO_HAS_BOOST_REGEX)
|
1680
3019
|
// || defined(GENERATING_DOCUMENTATION)
|
1681
3020
|
|
1682
|
-
/// Start an asynchronous operation to read data into a
|
1683
|
-
/// function object indicates a match.
|
3021
|
+
/// Start an asynchronous operation to read data into a dynamic buffer sequence
|
3022
|
+
/// until a function object indicates a match.
|
1684
3023
|
/**
|
1685
|
-
* This function is used to asynchronously read data into the specified
|
1686
|
-
*
|
1687
|
-
* to the data contained in the
|
1688
|
-
*
|
1689
|
-
*
|
3024
|
+
* This function is used to asynchronously read data into the specified dynamic
|
3025
|
+
* buffer sequence until a user-defined match condition function object, when
|
3026
|
+
* applied to the data contained in the dynamic buffer sequence, indicates a
|
3027
|
+
* successful match. It is an initiating function for an @ref
|
3028
|
+
* asynchronous_operation, and always returns immediately. The asynchronous
|
3029
|
+
* operation will continue until one of the following conditions is true:
|
1690
3030
|
*
|
1691
3031
|
* @li The match condition function object returns a std::pair where the second
|
1692
3032
|
* element evaluates to true.
|
@@ -1704,14 +3044,17 @@ async_read_until(AsyncReadStream& s,
|
|
1704
3044
|
* @param s The stream from which the data is to be read. The type must support
|
1705
3045
|
* the AsyncReadStream concept.
|
1706
3046
|
*
|
1707
|
-
* @param
|
3047
|
+
* @param buffers The dynamic buffer sequence into which the data will be read.
|
3048
|
+
* Although the buffers object may be copied as necessary, ownership of the
|
3049
|
+
* underlying memory blocks is retained by the caller, which must guarantee
|
3050
|
+
* that they remain valid until the completion handler is called.
|
1708
3051
|
*
|
1709
3052
|
* @param match_condition The function object to be called to determine whether
|
1710
3053
|
* a match exists. The signature of the function object must be:
|
1711
3054
|
* @code pair<iterator, bool> match_condition(iterator begin, iterator end);
|
1712
3055
|
* @endcode
|
1713
3056
|
* where @c iterator represents the type:
|
1714
|
-
* @code buffers_iterator<
|
3057
|
+
* @code buffers_iterator<typename DynamicBuffer_v2::const_buffers_type>
|
1715
3058
|
* @endcode
|
1716
3059
|
* The iterator parameters @c begin and @c end define the range of bytes to be
|
1717
3060
|
* scanned to determine whether there is a match. The @c first member of the
|
@@ -1721,27 +3064,32 @@ async_read_until(AsyncReadStream& s,
|
|
1721
3064
|
* @c second member of the return value is true if a match has been found, false
|
1722
3065
|
* otherwise.
|
1723
3066
|
*
|
1724
|
-
* @param
|
1725
|
-
*
|
1726
|
-
*
|
3067
|
+
* @param token The @ref completion_token that will be used to produce a
|
3068
|
+
* completion handler, which will be called when the read completes.
|
3069
|
+
* Potential completion tokens include @ref use_future, @ref use_awaitable,
|
3070
|
+
* @ref yield_context, or a function object with the correct completion
|
3071
|
+
* signature. The function signature of the completion handler must be:
|
1727
3072
|
* @code void handler(
|
1728
3073
|
* // Result of operation.
|
1729
3074
|
* const boost::system::error_code& error,
|
1730
3075
|
*
|
1731
|
-
* // The number of bytes in the
|
1732
|
-
* // area that have been fully consumed by the
|
1733
|
-
* //
|
3076
|
+
* // The number of bytes in the dynamic buffer sequence's
|
3077
|
+
* // get area that have been fully consumed by the match
|
3078
|
+
* // function. O if an error occurred.
|
1734
3079
|
* std::size_t bytes_transferred
|
1735
3080
|
* ); @endcode
|
1736
3081
|
* Regardless of whether the asynchronous operation completes immediately or
|
1737
|
-
* not, the handler will not be invoked from within this function.
|
1738
|
-
* the handler will be performed in a
|
1739
|
-
* boost::asio::
|
3082
|
+
* not, the completion handler will not be invoked from within this function.
|
3083
|
+
* On immediate completion, invocation of the handler will be performed in a
|
3084
|
+
* manner equivalent to using boost::asio::async_immediate().
|
1740
3085
|
*
|
1741
|
-
* @note After a successful async_read_until operation, the
|
1742
|
-
* contain additional data beyond that which matched the function
|
1743
|
-
* application will typically leave that data in the
|
1744
|
-
* async_read_until operation to examine.
|
3086
|
+
* @note After a successful async_read_until operation, the dynamic buffer
|
3087
|
+
* sequence may contain additional data beyond that which matched the function
|
3088
|
+
* object. An application will typically leave that data in the dynamic buffer
|
3089
|
+
* sequence for a subsequent async_read_until operation to examine.
|
3090
|
+
*
|
3091
|
+
* @par Completion Signature
|
3092
|
+
* @code void(boost::system::error_code, std::size_t) @endcode
|
1745
3093
|
*
|
1746
3094
|
* @note The default implementation of the @c is_match_condition type trait
|
1747
3095
|
* evaluates to true for function pointers and function objects with a
|
@@ -1749,9 +3097,10 @@ async_read_until(AsyncReadStream& s,
|
|
1749
3097
|
* function objects.
|
1750
3098
|
*
|
1751
3099
|
* @par Examples
|
1752
|
-
* To asynchronously read data into a
|
3100
|
+
* To asynchronously read data into a @c std::string until whitespace is
|
3101
|
+
* encountered:
|
1753
3102
|
* @code typedef boost::asio::buffers_iterator<
|
1754
|
-
* boost::asio::
|
3103
|
+
* boost::asio::const_buffers_1> iterator;
|
1755
3104
|
*
|
1756
3105
|
* std::pair<iterator, bool>
|
1757
3106
|
* match_whitespace(iterator begin, iterator end)
|
@@ -1765,12 +3114,12 @@ async_read_until(AsyncReadStream& s,
|
|
1765
3114
|
* ...
|
1766
3115
|
* void handler(const boost::system::error_code& e, std::size_t size);
|
1767
3116
|
* ...
|
1768
|
-
*
|
1769
|
-
* boost::asio::async_read_until(s,
|
3117
|
+
* std::string data;
|
3118
|
+
* boost::asio::async_read_until(s, data, match_whitespace, handler);
|
1770
3119
|
* @endcode
|
1771
3120
|
*
|
1772
|
-
* To asynchronously read data into a
|
1773
|
-
* found:
|
3121
|
+
* To asynchronously read data into a @c std::string until a matching character
|
3122
|
+
* is found:
|
1774
3123
|
* @code class match_char
|
1775
3124
|
* {
|
1776
3125
|
* public:
|
@@ -1798,20 +3147,49 @@ async_read_until(AsyncReadStream& s,
|
|
1798
3147
|
* ...
|
1799
3148
|
* void handler(const boost::system::error_code& e, std::size_t size);
|
1800
3149
|
* ...
|
1801
|
-
*
|
1802
|
-
* boost::asio::async_read_until(s,
|
3150
|
+
* std::string data;
|
3151
|
+
* boost::asio::async_read_until(s, data, match_char('a'), handler);
|
1803
3152
|
* @endcode
|
3153
|
+
*
|
3154
|
+
* @par Per-Operation Cancellation
|
3155
|
+
* This asynchronous operation supports cancellation for the following
|
3156
|
+
* boost::asio::cancellation_type values:
|
3157
|
+
*
|
3158
|
+
* @li @c cancellation_type::terminal
|
3159
|
+
*
|
3160
|
+
* @li @c cancellation_type::partial
|
3161
|
+
*
|
3162
|
+
* if they are also supported by the @c AsyncReadStream type's
|
3163
|
+
* @c async_read_some operation.
|
1804
3164
|
*/
|
1805
|
-
template <typename AsyncReadStream,
|
1806
|
-
typename
|
1807
|
-
|
1808
|
-
|
1809
|
-
|
1810
|
-
|
1811
|
-
|
1812
|
-
|
3165
|
+
template <typename AsyncReadStream,
|
3166
|
+
typename DynamicBuffer_v2, typename MatchCondition,
|
3167
|
+
BOOST_ASIO_COMPLETION_TOKEN_FOR(void (boost::system::error_code,
|
3168
|
+
std::size_t)) ReadToken = default_completion_token_t<
|
3169
|
+
typename AsyncReadStream::executor_type>>
|
3170
|
+
inline auto async_read_until(AsyncReadStream& s,
|
3171
|
+
DynamicBuffer_v2 buffers, MatchCondition match_condition,
|
3172
|
+
ReadToken&& token = default_completion_token_t<
|
3173
|
+
typename AsyncReadStream::executor_type>(),
|
3174
|
+
constraint_t<
|
3175
|
+
is_match_condition<MatchCondition>::value
|
3176
|
+
> = 0,
|
3177
|
+
constraint_t<
|
3178
|
+
is_dynamic_buffer_v2<DynamicBuffer_v2>::value
|
3179
|
+
> = 0)
|
3180
|
+
-> decltype(
|
3181
|
+
async_initiate<ReadToken,
|
3182
|
+
void (boost::system::error_code, std::size_t)>(
|
3183
|
+
declval<detail::initiate_async_read_until_match_v2<AsyncReadStream>>(),
|
3184
|
+
token, static_cast<DynamicBuffer_v2&&>(buffers), match_condition))
|
3185
|
+
{
|
3186
|
+
return async_initiate<ReadToken,
|
3187
|
+
void (boost::system::error_code, std::size_t)>(
|
3188
|
+
detail::initiate_async_read_until_match_v2<AsyncReadStream>(s),
|
3189
|
+
token, static_cast<DynamicBuffer_v2&&>(buffers),
|
3190
|
+
match_condition);
|
3191
|
+
}
|
1813
3192
|
|
1814
|
-
#endif // !defined(BOOST_ASIO_NO_IOSTREAM)
|
1815
3193
|
#endif // !defined(BOOST_ASIO_NO_EXTENSIONS)
|
1816
3194
|
|
1817
3195
|
/*@}*/
|