passenger 5.0.18 → 5.0.19
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of passenger might be problematic. Click here for more details.
- checksums.yaml +8 -8
- checksums.yaml.gz.asc +7 -7
- data.tar.gz.asc +7 -7
- data/CHANGELOG +11 -0
- data/CONTRIBUTING.md +14 -14
- data/README.md +1 -1
- data/Rakefile +3 -3
- data/bin/passenger +2 -2
- data/bin/passenger-config +2 -2
- data/bin/passenger-install-apache2-module +1 -1
- data/bin/passenger-install-nginx-module +1 -1
- data/bin/passenger-memory-stats +2 -2
- data/bin/passenger-status +2 -2
- data/build/README.md +3 -0
- data/build/agent.rb +97 -0
- data/build/apache2.rb +70 -95
- data/build/basics.rb +15 -1
- data/build/common_library.rb +41 -36
- data/build/cplusplus_support.rb +89 -16
- data/build/cxx_dependency_map.rb +7900 -0
- data/build/cxx_tests.rb +146 -265
- data/build/integration_tests.rb +1 -1
- data/build/misc.rb +29 -22
- data/build/nginx.rb +10 -10
- data/build/oxt_tests.rb +36 -27
- data/build/packaging.rb +11 -11
- data/build/ruby_extension.rb +2 -2
- data/build/ruby_tests.rb +1 -1
- data/build/test_basics.rb +24 -16
- data/dev/ci/run_travis.sh +28 -6
- data/dev/index_cxx_dependencies.rb +206 -0
- data/dev/list_tests +1 -1
- data/dev/runner +1 -1
- data/dev/vagrant/nginx_rakefile +1 -1
- data/doc/Design and Architecture.html +14 -14
- data/doc/Design and Architecture.txt +14 -14
- data/doc/Packaging.html +5 -5
- data/doc/Packaging.txt.md +5 -5
- data/passenger.gemspec +3 -3
- data/src/README.md +7 -0
- data/{ext/common → src}/agent/AgentMain.cpp +0 -0
- data/src/agent/Core/ApiServer.h +624 -0
- data/src/agent/Core/ApplicationPool/BasicGroupInfo.h +81 -0
- data/src/agent/Core/ApplicationPool/BasicProcessInfo.h +107 -0
- data/src/agent/Core/ApplicationPool/Common.h +213 -0
- data/src/agent/Core/ApplicationPool/Context.h +94 -0
- data/src/agent/Core/ApplicationPool/ErrorRenderer.h +116 -0
- data/src/agent/Core/ApplicationPool/Group.h +496 -0
- data/src/agent/Core/ApplicationPool/Group/InitializationAndShutdown.cpp +190 -0
- data/src/agent/Core/ApplicationPool/Group/InternalUtils.cpp +329 -0
- data/src/agent/Core/ApplicationPool/Group/LifetimeAndBasics.cpp +103 -0
- data/src/agent/Core/ApplicationPool/Group/Miscellaneous.cpp +65 -0
- data/src/agent/Core/ApplicationPool/Group/OutOfBandWork.cpp +323 -0
- data/src/agent/Core/ApplicationPool/Group/ProcessListManagement.cpp +606 -0
- data/src/agent/Core/ApplicationPool/Group/SessionManagement.cpp +337 -0
- data/src/agent/Core/ApplicationPool/Group/SpawningAndRestarting.cpp +478 -0
- data/src/agent/Core/ApplicationPool/Group/StateInspection.cpp +197 -0
- data/src/agent/Core/ApplicationPool/Group/Verification.cpp +159 -0
- data/src/agent/Core/ApplicationPool/Implementation.cpp +335 -0
- data/src/agent/Core/ApplicationPool/Options.h +704 -0
- data/src/agent/Core/ApplicationPool/Pool.h +464 -0
- data/src/agent/Core/ApplicationPool/Pool/AnalyticsCollection.cpp +254 -0
- data/src/agent/Core/ApplicationPool/Pool/GarbageCollection.cpp +200 -0
- data/src/agent/Core/ApplicationPool/Pool/GeneralUtils.cpp +241 -0
- data/src/agent/Core/ApplicationPool/Pool/GroupUtils.cpp +276 -0
- data/src/agent/Core/ApplicationPool/Pool/InitializationAndShutdown.cpp +146 -0
- data/src/agent/Core/ApplicationPool/Pool/Miscellaneous.cpp +244 -0
- data/src/agent/Core/ApplicationPool/Pool/ProcessUtils.cpp +330 -0
- data/src/agent/Core/ApplicationPool/Pool/StateInspection.cpp +299 -0
- data/src/agent/Core/ApplicationPool/Process.h +907 -0
- data/src/agent/Core/ApplicationPool/Session.h +256 -0
- data/src/agent/Core/ApplicationPool/Socket.h +293 -0
- data/src/agent/Core/CoreMain.cpp +1202 -0
- data/{ext/common → src}/agent/Core/OptionParser.h +0 -0
- data/src/agent/Core/RequestHandler.h +470 -0
- data/src/agent/Core/RequestHandler/AppResponse.h +230 -0
- data/{ext/common → src}/agent/Core/RequestHandler/BufferBody.cpp +0 -0
- data/{ext/common → src}/agent/Core/RequestHandler/CheckoutSession.cpp +0 -0
- data/src/agent/Core/RequestHandler/Client.h +56 -0
- data/{ext/common → src}/agent/Core/RequestHandler/ForwardResponse.cpp +0 -0
- data/{ext/common → src}/agent/Core/RequestHandler/Hooks.cpp +0 -0
- data/{ext/common → src}/agent/Core/RequestHandler/InitRequest.cpp +0 -0
- data/src/agent/Core/RequestHandler/Request.h +158 -0
- data/{ext/common → src}/agent/Core/RequestHandler/SendRequest.cpp +0 -0
- data/src/agent/Core/RequestHandler/TurboCaching.h +294 -0
- data/{ext/common → src}/agent/Core/RequestHandler/Utils.cpp +0 -0
- data/{ext/common → src}/agent/Core/ResponseCache.h +0 -0
- data/{ext/common → src/agent/Core}/SpawningKit/BackgroundIOCapturer.h +0 -0
- data/src/agent/Core/SpawningKit/Config.h +107 -0
- data/src/agent/Core/SpawningKit/DirectSpawner.h +254 -0
- data/src/agent/Core/SpawningKit/DummySpawner.h +94 -0
- data/src/agent/Core/SpawningKit/Factory.h +113 -0
- data/src/agent/Core/SpawningKit/Options.h +40 -0
- data/src/agent/Core/SpawningKit/PipeWatcher.h +148 -0
- data/src/agent/Core/SpawningKit/Result.h +49 -0
- data/src/agent/Core/SpawningKit/SmartSpawner.h +818 -0
- data/src/agent/Core/SpawningKit/Spawner.h +1199 -0
- data/src/agent/Core/SpawningKit/UserSwitchingRules.h +265 -0
- data/src/agent/Core/UnionStation/Connection.h +172 -0
- data/src/agent/Core/UnionStation/Core.h +539 -0
- data/src/agent/Core/UnionStation/StopwatchLog.h +172 -0
- data/src/agent/Core/UnionStation/Transaction.h +262 -0
- data/src/agent/README.md +9 -0
- data/src/agent/Shared/ApiServerUtils.h +941 -0
- data/{ext/common/ApplicationPool2/ApiKey.h → src/agent/Shared/ApplicationPoolApiKey.h} +0 -0
- data/src/agent/Shared/Base.cpp +1647 -0
- data/{ext/common/agent → src/agent/Shared}/Base.h +0 -0
- data/src/agent/SpawnPreparer/SpawnPreparerMain.cpp +207 -0
- data/{ext/common → src}/agent/SystemMetrics/SystemMetricsMain.cpp +0 -0
- data/{ext/common → src}/agent/TempDirToucher/TempDirToucherMain.cpp +0 -0
- data/src/agent/UstRouter/ApiServer.h +285 -0
- data/src/agent/UstRouter/Client.h +111 -0
- data/src/agent/UstRouter/Controller.h +1189 -0
- data/{ext/common → src}/agent/UstRouter/DataStoreId.h +0 -0
- data/src/agent/UstRouter/FileSink.h +83 -0
- data/src/agent/UstRouter/LogSink.h +145 -0
- data/src/agent/UstRouter/OptionParser.h +173 -0
- data/src/agent/UstRouter/RemoteSender.h +699 -0
- data/src/agent/UstRouter/RemoteSink.h +143 -0
- data/src/agent/UstRouter/Transaction.h +145 -0
- data/src/agent/UstRouter/UstRouterMain.cpp +642 -0
- data/{ext/common → src}/agent/Watchdog/AgentWatcher.cpp +0 -0
- data/src/agent/Watchdog/ApiServer.h +311 -0
- data/{ext/common → src}/agent/Watchdog/CoreWatcher.cpp +0 -0
- data/{ext/common → src}/agent/Watchdog/InstanceDirToucher.cpp +0 -0
- data/{ext/common → src}/agent/Watchdog/UstRouterWatcher.cpp +0 -0
- data/src/agent/Watchdog/WatchdogMain.cpp +1360 -0
- data/{ext/apache2 → src/apache2_module}/Bucket.cpp +0 -0
- data/{ext/apache2 → src/apache2_module}/Bucket.h +0 -0
- data/src/apache2_module/Configuration.cpp +663 -0
- data/{ext/apache2 → src/apache2_module}/Configuration.h +0 -0
- data/{ext/apache2 → src/apache2_module}/Configuration.hpp +0 -0
- data/src/apache2_module/ConfigurationCommands.cpp +251 -0
- data/src/apache2_module/ConfigurationCommands.cpp.erb +108 -0
- data/src/apache2_module/ConfigurationFields.hpp +98 -0
- data/src/apache2_module/ConfigurationFields.hpp.erb +97 -0
- data/src/apache2_module/ConfigurationSetters.cpp +422 -0
- data/src/apache2_module/ConfigurationSetters.cpp.erb +127 -0
- data/src/apache2_module/CreateDirConfig.cpp +68 -0
- data/src/apache2_module/CreateDirConfig.cpp.erb +71 -0
- data/src/apache2_module/DirectoryMapper.h +273 -0
- data/src/apache2_module/Hooks.cpp +1734 -0
- data/{ext/apache2 → src/apache2_module}/Hooks.h +0 -0
- data/src/apache2_module/MergeDirConfig.cpp +230 -0
- data/src/apache2_module/MergeDirConfig.cpp.erb +81 -0
- data/src/apache2_module/README.md +5 -0
- data/src/apache2_module/SetHeaders.cpp +151 -0
- data/src/apache2_module/SetHeaders.cpp.erb +90 -0
- data/{ext/apache2 → src/apache2_module}/mod_passenger.c +0 -0
- data/{ext/common → src/cxx_supportlib}/Account.h +0 -0
- data/{ext/common → src/cxx_supportlib}/AccountsDatabase.h +0 -0
- data/{ext/common → src/cxx_supportlib}/AgentsStarter.cpp +0 -0
- data/{ext/common → src/cxx_supportlib}/AgentsStarter.h +0 -0
- data/src/cxx_supportlib/AppTypes.cpp +108 -0
- data/src/cxx_supportlib/AppTypes.h +272 -0
- data/{ext/common → src/cxx_supportlib}/BackgroundEventLoop.cpp +0 -0
- data/{ext/common → src/cxx_supportlib}/BackgroundEventLoop.h +0 -0
- data/src/cxx_supportlib/Constants.h +158 -0
- data/src/cxx_supportlib/Constants.h.erb +42 -0
- data/{ext/common → src/cxx_supportlib}/DataStructures/HashedStaticString.h +0 -0
- data/{ext/common → src/cxx_supportlib}/DataStructures/LString.h +0 -0
- data/{ext/common → src/cxx_supportlib}/DataStructures/StringKeyTable.h +0 -0
- data/{ext/common → src/cxx_supportlib}/Exceptions.cpp +0 -0
- data/{ext/common → src/cxx_supportlib}/Exceptions.h +0 -0
- data/{ext/common → src/cxx_supportlib}/FileDescriptor.h +0 -0
- data/{ext/common → src/cxx_supportlib}/Hooks.h +0 -0
- data/src/cxx_supportlib/InstanceDirectory.h +242 -0
- data/src/cxx_supportlib/Logging.cpp +294 -0
- data/{ext/common → src/cxx_supportlib}/Logging.h +0 -0
- data/src/cxx_supportlib/MemoryKit/mbuf.cpp +403 -0
- data/src/cxx_supportlib/MemoryKit/mbuf.h +260 -0
- data/{ext/common → src/cxx_supportlib}/MemoryKit/palloc.cpp +0 -0
- data/{ext/common → src/cxx_supportlib}/MemoryKit/palloc.h +0 -0
- data/src/cxx_supportlib/MessageClient.h +308 -0
- data/src/cxx_supportlib/MessageReadersWriters.h +545 -0
- data/src/cxx_supportlib/README.md +3 -0
- data/{ext/common → src/cxx_supportlib}/RandomGenerator.h +0 -0
- data/src/cxx_supportlib/ResourceLocator.h +181 -0
- data/{ext/common → src/cxx_supportlib}/SafeLibev.h +0 -0
- data/{ext/common → src/cxx_supportlib}/ServerKit/AcceptLoadBalancer.h +0 -0
- data/src/cxx_supportlib/ServerKit/Channel.h +765 -0
- data/src/cxx_supportlib/ServerKit/Client.h +166 -0
- data/{ext/common → src/cxx_supportlib}/ServerKit/ClientRef.h +0 -0
- data/src/cxx_supportlib/ServerKit/Context.h +138 -0
- data/{ext/common → src/cxx_supportlib}/ServerKit/CookieUtils.h +0 -0
- data/{ext/common → src/cxx_supportlib}/ServerKit/Errors.h +0 -0
- data/src/cxx_supportlib/ServerKit/FdSinkChannel.h +217 -0
- data/src/cxx_supportlib/ServerKit/FdSourceChannel.h +251 -0
- data/src/cxx_supportlib/ServerKit/FileBufferedChannel.h +1605 -0
- data/{ext/common → src/cxx_supportlib}/ServerKit/FileBufferedFdSinkChannel.h +0 -0
- data/{ext/common → src/cxx_supportlib}/ServerKit/HeaderTable.h +0 -0
- data/{ext/common → src/cxx_supportlib}/ServerKit/Hooks.h +0 -0
- data/{ext/common → src/cxx_supportlib}/ServerKit/HttpChunkedBodyParser.h +0 -0
- data/{ext/common → src/cxx_supportlib}/ServerKit/HttpChunkedBodyParserState.h +0 -0
- data/src/cxx_supportlib/ServerKit/HttpClient.h +94 -0
- data/{ext/common → src/cxx_supportlib}/ServerKit/HttpHeaderParser.h +0 -0
- data/{ext/common → src/cxx_supportlib}/ServerKit/HttpHeaderParserState.h +0 -0
- data/src/cxx_supportlib/ServerKit/HttpRequest.h +276 -0
- data/{ext/common → src/cxx_supportlib}/ServerKit/HttpRequestRef.h +0 -0
- data/src/cxx_supportlib/ServerKit/HttpServer.h +1212 -0
- data/{ext/common → src/cxx_supportlib}/ServerKit/Implementation.cpp +0 -0
- data/src/cxx_supportlib/ServerKit/Server.h +1107 -0
- data/{ext/common → src/cxx_supportlib}/ServerKit/http_parser.cpp +0 -0
- data/{ext/common → src/cxx_supportlib}/ServerKit/http_parser.h +0 -0
- data/{ext/common → src/cxx_supportlib}/StaticString.h +0 -0
- data/src/cxx_supportlib/UnionStationFilterSupport.cpp +66 -0
- data/src/cxx_supportlib/UnionStationFilterSupport.h +1621 -0
- data/src/cxx_supportlib/Utils.cpp +1388 -0
- data/{ext/common → src/cxx_supportlib}/Utils.h +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/AnsiColorConstants.h +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/BlockingQueue.h +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/BufferedIO.h +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/CachedFileStat.cpp +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/CachedFileStat.h +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/CachedFileStat.hpp +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/ClassUtils.h +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/Curl.h +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/DateParsing.h +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/FastStringStream.h +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/FileChangeChecker.h +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/HashMap.h +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/Hasher.cpp +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/Hasher.h +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/HttpConstants.h +0 -0
- data/src/cxx_supportlib/Utils/IOUtils.cpp +1297 -0
- data/src/cxx_supportlib/Utils/IOUtils.h +646 -0
- data/{ext/common → src/cxx_supportlib}/Utils/IniFile.h +0 -0
- data/src/cxx_supportlib/Utils/JsonUtils.h +270 -0
- data/{ext/common → src/cxx_supportlib}/Utils/LargeFiles.cpp +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/LargeFiles.h +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/Lock.h +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/MemZeroGuard.h +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/MemoryBarrier.h +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/MessageIO.h +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/MessagePassing.h +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/OptionParsing.h +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/ProcessMetricsCollector.h +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/ScopeGuard.h +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/SpeedMeter.h +0 -0
- data/src/cxx_supportlib/Utils/StrIntUtils.cpp +698 -0
- data/{ext/common → src/cxx_supportlib}/Utils/StrIntUtils.h +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/StrIntUtilsNoStrictAliasing.cpp +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/StringMap.h +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/StringScanning.h +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/SystemMetricsCollector.h +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/SystemTime.cpp +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/SystemTime.h +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/Template.h +0 -0
- data/{ext/common → src/cxx_supportlib}/Utils/Timer.h +0 -0
- data/src/cxx_supportlib/Utils/VariantMap.h +494 -0
- data/{ext → src/cxx_supportlib}/oxt/Readme.txt +0 -0
- data/{ext → src/cxx_supportlib}/oxt/backtrace.hpp +0 -0
- data/{ext → src/cxx_supportlib}/oxt/detail/backtrace_disabled.hpp +0 -0
- data/{ext → src/cxx_supportlib}/oxt/detail/backtrace_enabled.hpp +0 -0
- data/{ext → src/cxx_supportlib}/oxt/detail/context.hpp +0 -0
- data/{ext → src/cxx_supportlib}/oxt/detail/spin_lock_darwin.hpp +0 -0
- data/{ext → src/cxx_supportlib}/oxt/detail/spin_lock_gcc_x86.hpp +0 -0
- data/{ext → src/cxx_supportlib}/oxt/detail/spin_lock_portable.hpp +0 -0
- data/{ext → src/cxx_supportlib}/oxt/detail/spin_lock_pthreads.hpp +0 -0
- data/{ext → src/cxx_supportlib}/oxt/detail/tracable_exception_disabled.hpp +0 -0
- data/{ext → src/cxx_supportlib}/oxt/detail/tracable_exception_enabled.hpp +0 -0
- data/{ext → src/cxx_supportlib}/oxt/dynamic_thread_group.hpp +0 -0
- data/{ext → src/cxx_supportlib}/oxt/implementation.cpp +0 -0
- data/{ext → src/cxx_supportlib}/oxt/initialize.hpp +0 -0
- data/{ext → src/cxx_supportlib}/oxt/macros.hpp +0 -0
- data/{ext → src/cxx_supportlib}/oxt/spin_lock.hpp +0 -0
- data/{ext → src/cxx_supportlib}/oxt/system_calls.cpp +0 -0
- data/{ext → src/cxx_supportlib}/oxt/system_calls.hpp +0 -0
- data/{ext → src/cxx_supportlib}/oxt/thread.hpp +0 -0
- data/{ext → src/cxx_supportlib}/oxt/tracable_exception.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libev/Changes +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libev/LICENSE +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libev/Makefile.am +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libev/Makefile.in +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libev/README +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libev/aclocal.m4 +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libev/autogen.sh +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libev/config.guess +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libev/config.h.in +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libev/config.sub +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libev/configure +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libev/configure.ac +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libev/depcomp +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libev/ev++.h +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libev/ev.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libev/ev.h +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libev/ev_epoll.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libev/ev_kqueue.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libev/ev_poll.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libev/ev_port.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libev/ev_select.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libev/ev_vars.h +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libev/ev_win32.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libev/ev_wrap.h +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libev/event.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libev/event.h +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libev/install-sh +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libev/libev.m4 +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libev/ltmain.sh +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libev/missing +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libev/mkinstalldirs +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/AUTHORS +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/ChangeLog +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/LICENSE +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/Makefile.am +0 -0
- data/src/cxx_supportlib/vendor-copy/libuv/Makefile.in +4268 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/README.md +0 -0
- data/src/cxx_supportlib/vendor-copy/libuv/aclocal.m4 +1217 -0
- data/src/cxx_supportlib/vendor-copy/libuv/ar-lib +270 -0
- data/src/cxx_supportlib/vendor-copy/libuv/autom4te.cache/output.0 +15374 -0
- data/src/cxx_supportlib/vendor-copy/libuv/autom4te.cache/output.1 +15374 -0
- data/src/cxx_supportlib/vendor-copy/libuv/autom4te.cache/output.2 +15374 -0
- data/src/cxx_supportlib/vendor-copy/libuv/autom4te.cache/requests +568 -0
- data/src/cxx_supportlib/vendor-copy/libuv/autom4te.cache/traces.0 +3104 -0
- data/src/cxx_supportlib/vendor-copy/libuv/autom4te.cache/traces.1 +3104 -0
- data/src/cxx_supportlib/vendor-copy/libuv/autom4te.cache/traces.2 +699 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/checksparse.sh +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/common.gypi +0 -0
- data/src/cxx_supportlib/vendor-copy/libuv/compile +347 -0
- data/src/cxx_supportlib/vendor-copy/libuv/config.guess +1421 -0
- data/src/cxx_supportlib/vendor-copy/libuv/config.sub +1807 -0
- data/src/cxx_supportlib/vendor-copy/libuv/configure +15374 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/configure.ac +0 -0
- data/src/cxx_supportlib/vendor-copy/libuv/depcomp +791 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/gyp_uv.py +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/include/android-ifaddrs.h +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/include/pthread-fixes.h +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/include/tree.h +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/include/uv-aix.h +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/include/uv-bsd.h +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/include/uv-darwin.h +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/include/uv-errno.h +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/include/uv-linux.h +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/include/uv-sunos.h +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/include/uv-threadpool.h +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/include/uv-unix.h +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/include/uv-version.h +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/include/uv.h +0 -0
- data/src/cxx_supportlib/vendor-copy/libuv/install-sh +501 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/libuv.pc.in +0 -0
- data/src/cxx_supportlib/vendor-copy/libuv/ltmain.sh +11140 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/m4/as_case.m4 +0 -0
- data/src/cxx_supportlib/vendor-copy/libuv/m4/libtool.m4 +8364 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/m4/libuv-check-flags.m4 +0 -0
- data/src/cxx_supportlib/vendor-copy/libuv/m4/libuv-extra-automake-flags.m4 +1 -0
- data/src/cxx_supportlib/vendor-copy/libuv/m4/ltoptions.m4 +437 -0
- data/src/cxx_supportlib/vendor-copy/libuv/m4/ltsugar.m4 +124 -0
- data/src/cxx_supportlib/vendor-copy/libuv/m4/ltversion.m4 +23 -0
- data/src/cxx_supportlib/vendor-copy/libuv/m4/lt~obsolete.m4 +99 -0
- data/src/cxx_supportlib/vendor-copy/libuv/missing +215 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/fs-poll.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/heap-inl.h +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/inet.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/queue.h +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/threadpool.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/aix.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/android-ifaddrs.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/async.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/atomic-ops.h +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/core.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/darwin-proctitle.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/darwin.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/dl.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/freebsd.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/fs.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/fsevents.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/getaddrinfo.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/getnameinfo.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/internal.h +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/kqueue.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/linux-core.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/linux-inotify.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/linux-syscalls.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/linux-syscalls.h +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/loop-watcher.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/loop.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/netbsd.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/openbsd.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/pipe.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/poll.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/process.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/proctitle.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/pthread-fixes.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/signal.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/spinlock.h +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/stream.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/sunos.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/tcp.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/thread.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/timer.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/tty.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/unix/udp.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/uv-common.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/uv-common.h +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/src/version.c +0 -0
- data/{ext → src/cxx_supportlib/vendor-copy}/libuv/uv.gyp +0 -0
- data/src/cxx_supportlib/vendor-copy/utf8.h +35 -0
- data/src/cxx_supportlib/vendor-copy/utf8/checked.h +324 -0
- data/{ext/common/Utils → src/cxx_supportlib/vendor-copy}/utf8/core.h +0 -0
- data/src/cxx_supportlib/vendor-copy/utf8/unchecked.h +229 -0
- data/{ext/common/Utils → src/cxx_supportlib/vendor-modified}/SmallVector.h +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/algorithm/string/case_conv.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/algorithm/string/compare.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/algorithm/string/concept.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/algorithm/string/config.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/algorithm/string/constants.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/algorithm/string/detail/case_conv.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/algorithm/string/detail/find_format.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/algorithm/string/detail/find_format_all.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/algorithm/string/detail/find_format_store.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/algorithm/string/detail/finder.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/algorithm/string/detail/formatter.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/algorithm/string/detail/replace_storage.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/algorithm/string/detail/sequence.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/algorithm/string/detail/util.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/algorithm/string/erase.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/algorithm/string/find_format.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/algorithm/string/finder.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/algorithm/string/formatter.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/algorithm/string/replace.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/algorithm/string/sequence_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/algorithm/string/yes_no_type.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/aligned_storage.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/array.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/assert.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/atomic.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/atomic/atomic.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/atomic/detail/base.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/atomic/detail/cas32strong.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/atomic/detail/cas32weak.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/atomic/detail/cas64strong.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/atomic/detail/config.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/atomic/detail/gcc-alpha.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/atomic/detail/gcc-armv6plus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/atomic/detail/gcc-cas.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/atomic/detail/gcc-ppc.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/atomic/detail/gcc-sparcv9.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/atomic/detail/gcc-x86.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/atomic/detail/generic-cas.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/atomic/detail/interlocked.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/atomic/detail/linux-arm.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/atomic/detail/lockpool.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/atomic/detail/platform.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/atomic/detail/type-classification.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/bind.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/bind/arg.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/bind/bind.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/bind/bind_cc.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/bind/bind_mf2_cc.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/bind/bind_mf_cc.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/bind/bind_template.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/bind/mem_fn.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/bind/mem_fn_cc.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/bind/mem_fn_template.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/bind/placeholders.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/bind/storage.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/cerrno.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/checked_delete.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/chrono/ceil.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/chrono/clock_string.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/chrono/config.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/chrono/detail/is_evenly_divisible_by.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/chrono/detail/static_assert.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/chrono/detail/system.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/chrono/duration.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/chrono/system_clocks.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/chrono/time_point.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/concept/assert.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/concept/detail/backward_compatibility.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/concept/detail/concept_def.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/concept/detail/concept_undef.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/concept/detail/general.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/concept/detail/has_constraints.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/concept/usage.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/concept_check.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/abi/borland_prefix.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/abi/borland_suffix.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/abi/msvc_prefix.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/abi/msvc_suffix.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/abi_prefix.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/abi_suffix.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/auto_link.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/borland.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/clang.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/codegear.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/comeau.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/common_edg.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/compaq_cxx.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/cray.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/digitalmars.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/gcc.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/gcc_xml.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/greenhills.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/hp_acc.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/intel.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/kai.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/metrowerks.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/mpw.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/nvcc.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/pathscale.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/pgi.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/sgi_mipspro.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/sunpro_cc.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/vacpp.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/compiler/visualc.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/no_tr1/cmath.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/no_tr1/complex.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/no_tr1/functional.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/no_tr1/memory.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/no_tr1/utility.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/platform/aix.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/platform/amigaos.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/platform/beos.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/platform/bsd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/platform/cray.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/platform/cygwin.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/platform/hpux.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/platform/irix.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/platform/linux.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/platform/macos.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/platform/qnxnto.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/platform/solaris.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/platform/symbian.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/platform/vms.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/platform/vxworks.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/posix_features.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/requires_threads.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/select_compiler_config.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/select_platform_config.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/select_stdlib_config.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/stdlib/dinkumware.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/stdlib/libcomo.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/stdlib/libcpp.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/stdlib/libstdcpp3.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/stdlib/modena.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/stdlib/msl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/stdlib/roguewave.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/stdlib/sgi.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/stdlib/stlport.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/stdlib/vacpp.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/suffix.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/user.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/config/warning_disable.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/allocator_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/container_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/deque.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/adaptive_node_pool_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/advanced_insert_int.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/algorithms.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/allocation_type.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/allocator_version_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/config_begin.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/config_end.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/destroyers.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/flat_tree.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/function_detector.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/iterators.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/math_functions.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/memory_util.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/mpl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/multiallocation_chain.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/node_alloc_holder.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/node_pool_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/pair.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/pool_common.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/preprocessor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/transform_iterator.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/tree.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/type_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/utilities.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/value_init.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/variadic_templates_tools.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/version_type.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/detail/workaround.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/flat_map.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/flat_set.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/list.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/map.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/scoped_allocator.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/scoped_allocator_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/set.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/slist.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/stable_vector.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/static_vector.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/string.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/throw_exception.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/container/vector.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/cregex.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/cstdint.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/current_function.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/adjust_functors.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/c_time.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/compiler_config.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/constrained_value.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/date.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/date_clock_device.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/date_defs.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/date_duration.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/date_duration_types.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/date_facet.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/date_format_simple.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/date_formatting.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/date_formatting_limited.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/date_formatting_locales.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/date_generator_formatter.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/date_generator_parser.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/date_generators.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/date_iterator.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/date_names_put.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/date_parsing.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/dst_rules.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/filetime_functions.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/format_date_parser.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/gregorian/conversion.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/gregorian/formatters.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/gregorian/formatters_limited.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/gregorian/greg_calendar.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/gregorian/greg_date.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/gregorian/greg_day.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/gregorian/greg_day_of_year.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/gregorian/greg_duration.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/gregorian/greg_duration_types.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/gregorian/greg_month.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/gregorian/greg_weekday.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/gregorian/greg_year.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/gregorian/greg_ymd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/gregorian/gregorian.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/gregorian/gregorian_io.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/gregorian/gregorian_types.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/gregorian/parsers.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/gregorian_calendar.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/gregorian_calendar.ipp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/int_adapter.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/iso_format.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/locale_config.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/microsec_time_clock.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/parse_format_base.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/period.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/period_formatter.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/period_parser.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/posix_time/conversion.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/posix_time/date_duration_operators.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/posix_time/posix_time.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/posix_time/posix_time_config.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/posix_time/posix_time_duration.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/posix_time/posix_time_io.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/posix_time/posix_time_system.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/posix_time/posix_time_types.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/posix_time/ptime.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/posix_time/time_formatters.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/posix_time/time_parsers.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/posix_time/time_period.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/special_defs.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/special_values_formatter.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/special_values_parser.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/string_convert.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/string_parse_tree.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/strings_from_facet.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/time.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/time_clock.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/time_defs.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/time_duration.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/time_facet.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/time_formatting_streams.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/time_iterator.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/time_parsing.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/time_resolution_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/time_system_counted.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/time_system_split.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/wrapping_int.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/date_time/year_month_day.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/detail/atomic_redef_macros.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/detail/atomic_undef_macros.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/detail/container_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/detail/endian.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/detail/fenv.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/detail/indirect_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/detail/is_incrementable.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/detail/is_xxx.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/detail/iterator.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/detail/lcast_precision.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/detail/limits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/detail/no_exceptions_support.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/detail/reference_content.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/detail/scoped_enum_emulation.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/detail/select_type.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/detail/sp_typeinfo.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/detail/workaround.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/enable_shared_from_this.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/exception/current_exception_cast.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/exception/detail/attribute_noreturn.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/exception/detail/clone_current_exception.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/exception/detail/error_info_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/exception/detail/exception_ptr.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/exception/detail/is_output_streamable.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/exception/detail/object_hex_dump.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/exception/detail/type_info.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/exception/diagnostic_information.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/exception/exception.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/exception/get_error_info.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/exception/info.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/exception/to_string.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/exception/to_string_stub.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/exception_ptr.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/foreach.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/foreach_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/function.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/function/detail/function_iterate.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/function/detail/maybe_include.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/function/detail/prologue.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/function/function_base.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/function/function_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/function/function_template.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/function_equal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/functional/hash.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/functional/hash/detail/float_functions.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/functional/hash/detail/hash_float.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/functional/hash/detail/limits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/functional/hash/extensions.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/functional/hash/hash.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/functional/hash/hash_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/functional/hash_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/get_pointer.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/indirect_reference.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/integer.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/integer/static_log2.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/integer_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/integer_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/any_hook.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/avl_set.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/avl_set_hook.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/avltree.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/avltree_algorithms.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/bs_set_hook.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/circular_list_algorithms.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/circular_slist_algorithms.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/derivation_value_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/any_node_and_algorithms.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/assert.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/avltree_node.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/clear_on_destructor_base.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/common_slist_algorithms.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/config_begin.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/config_end.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/ebo_functor_holder.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/function_detector.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/generic_hook.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/has_member_function_callable_with.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/hashtable_node.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/is_stateful_value_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/list_node.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/memory_util.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/mpl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/parent_from_member.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/preprocessor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/rbtree_node.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/slist_node.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/transform_iterator.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/tree_algorithms.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/tree_node.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/utilities.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/detail/workaround.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/hashtable.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/intrusive_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/linear_slist_algorithms.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/link_mode.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/list.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/list_hook.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/member_value_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/options.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/parent_from_member.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/pointer_plus_bits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/pointer_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/priority_compare.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/rbtree.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/rbtree_algorithms.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/set.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/set_hook.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/sg_set.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/sgtree.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/sgtree_algorithms.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/slist.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/slist_hook.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/splay_set.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/splay_set_hook.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/splaytree.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/splaytree_algorithms.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/treap.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/treap_algorithms.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/treap_set.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/trivial_value_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/unordered_set.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive/unordered_set_hook.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/intrusive_ptr.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/io/ios_state.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/io_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/is_placeholder.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/iterator.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/iterator/detail/config_def.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/iterator/detail/config_undef.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/iterator/detail/enable_if.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/iterator/detail/facade_iterator_category.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/iterator/detail/minimum_category.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/iterator/interoperable.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/iterator/iterator_adaptor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/iterator/iterator_categories.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/iterator/iterator_concepts.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/iterator/iterator_facade.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/iterator/iterator_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/iterator/reverse_iterator.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/iterator/transform_iterator.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/lexical_cast.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/atomic/lockpool.cpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/regex/src/c_regex_traits.cpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/regex/src/cpp_regex_traits.cpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/regex/src/cregex.cpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/regex/src/instances.cpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/regex/src/internals.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/regex/src/posix_api.cpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/regex/src/regex.cpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/regex/src/regex_debug.cpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/regex/src/regex_raw_buffer.cpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/regex/src/regex_traits_defaults.cpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/regex/src/static_mutex.cpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/regex/src/wc_regex_traits.cpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/regex/src/wide_posix_api.cpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/regex/src/winstances.cpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/system/src/error_code.cpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/system/src/local_free_on_destruction.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/thread/src/future.cpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/thread/src/pthread/once.cpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/thread/src/pthread/once_atomic.cpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/thread/src/pthread/thread.cpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/thread/src/pthread/timeconv.inl +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/libs/thread/src/tss_null.cpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/limits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/make_shared.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/math/common_factor_ct.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/math/policies/policy.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/math/special_functions/detail/fp_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/math/special_functions/detail/round_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/math/special_functions/fpclassify.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/math/special_functions/math_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/math/special_functions/sign.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/math/tools/config.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/math/tools/promotion.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/math/tools/real_cast.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/math/tools/user.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/math_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mem_fn.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/memory_order.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/move/algorithm.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/move/core.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/move/detail/config_begin.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/move/detail/config_end.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/move/detail/meta_utils.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/move/detail/move_helpers.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/move/iterator.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/move/move.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/move/traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/move/utility.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/O1_size.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/O1_size_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/accumulate.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/advance.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/advance_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/alias.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/always.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/and.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/apply.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/apply_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/apply_wrap.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/arg.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/arg_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/arithmetic.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/as_sequence.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/assert.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/at.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/at_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/O1_size_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/adl_barrier.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/advance_backward.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/advance_forward.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/apply_1st.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/arg_typedef.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/arithmetic_op.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/arity.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/arity_spec.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/at_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/back_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/basic_bind.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/begin_end_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/clear_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/common_name_wknd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/comparison_op.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/adl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/arrays.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/bcc.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/bind.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/compiler.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/ctps.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/dependent_nttp.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/dmc_ambiguous_ctps.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/dtp.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/eti.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/forwarding.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/gcc.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/has_apply.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/has_xxx.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/integral.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/intel.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/lambda.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/msvc.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/msvc_typename.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/nttp.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/operators.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/overload_resolution.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/pp_counter.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/preprocessor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/static_constant.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/ttp.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/typeof.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/use_preprocessed.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/config/workaround.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/contains_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/count_args.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/count_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/empty_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/erase_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/erase_key_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/filter_iter.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/find_if_pred.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/fold_impl_body.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/fold_op.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/fold_pred.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/front_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/full_lambda.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/has_apply.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/has_begin.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/has_key_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/has_rebind.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/has_size.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/has_tag.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/has_type.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/include_preprocessed.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/insert_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/insert_range_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/inserter_algorithm.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/integral_wrapper.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/is_msvc_eti_arg.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/iter_apply.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/iter_fold_if_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/iter_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/iter_push_front.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/joint_iter.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/lambda_arity_param.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/lambda_no_ctps.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/lambda_spec.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/lambda_support.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/largest_int.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/logical_op.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/msvc_dtw.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/msvc_eti_base.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/msvc_is_class.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/msvc_never_true.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/msvc_type.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/na.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/na_assert.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/na_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/na_spec.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/nested_type_wknd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/nttp_decl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/numeric_cast_utils.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/numeric_op.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/order_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/overload_names.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/partition_op.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/pop_back_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/pop_front_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/advance_backward.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/advance_forward.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/and.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/apply.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/apply_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/apply_wrap.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/arg.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/basic_bind.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/bind.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/bind_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/bitand.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/bitor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/bitxor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/deque.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/divides.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/equal_to.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/full_lambda.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/greater.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/greater_equal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/inherit.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/iter_fold_if_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/iter_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/lambda_no_ctps.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/less.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/less_equal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/list.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/list_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/map.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/minus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/modulus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/not_equal_to.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/or.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/placeholders.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/plus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/quote.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/reverse_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/reverse_iter_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/set.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/set_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/shift_left.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/shift_right.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/template_arity.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/times.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/unpack_args.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/vector.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc/vector_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/advance_backward.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/advance_forward.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/and.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/apply.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/apply_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/apply_wrap.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/arg.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/basic_bind.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/bind.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/bind_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/bitand.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/bitor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/bitxor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/deque.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/divides.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/equal_to.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/full_lambda.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/greater.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/greater_equal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/inherit.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/iter_fold_if_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/iter_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/lambda_no_ctps.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/less.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/less_equal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/list.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/list_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/map.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/minus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/modulus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/not_equal_to.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/or.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/placeholders.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/plus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/quote.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/reverse_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/reverse_iter_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/set.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/set_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/shift_left.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/shift_right.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/template_arity.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/times.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/unpack_args.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/vector.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc551/vector_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/advance_backward.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/advance_forward.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/and.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/apply.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/apply_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/apply_wrap.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/arg.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/basic_bind.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/bind.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/bind_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/bitand.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/bitor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/bitxor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/deque.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/divides.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/equal_to.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/full_lambda.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/greater.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/greater_equal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/inherit.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/iter_fold_if_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/iter_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/lambda_no_ctps.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/less.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/less_equal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/list.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/list_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/map.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/minus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/modulus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/not_equal_to.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/or.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/placeholders.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/plus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/quote.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/reverse_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/reverse_iter_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/set.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/set_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/shift_left.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/shift_right.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/template_arity.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/times.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/unpack_args.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/vector.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/bcc_pre590/vector_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/advance_backward.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/advance_forward.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/and.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/apply.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/apply_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/apply_wrap.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/arg.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/basic_bind.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/bind.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/bind_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/bitand.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/bitor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/bitxor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/deque.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/divides.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/equal_to.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/full_lambda.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/greater.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/greater_equal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/inherit.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/iter_fold_if_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/iter_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/lambda_no_ctps.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/less.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/less_equal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/list.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/list_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/map.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/minus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/modulus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/not_equal_to.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/or.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/placeholders.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/plus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/quote.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/reverse_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/reverse_iter_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/set.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/set_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/shift_left.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/shift_right.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/template_arity.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/times.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/unpack_args.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/vector.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/dmc/vector_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/advance_backward.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/advance_forward.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/and.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/apply.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/arg.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/basic_bind.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/bind.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/bitand.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/bitor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/bitxor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/deque.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/divides.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/equal_to.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/greater.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/greater_equal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/inherit.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/iter_fold_if_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/iter_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/lambda_no_ctps.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/less.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/less_equal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/list.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/list_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/map.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/minus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/modulus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/not_equal_to.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/or.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/plus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/quote.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/reverse_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/reverse_iter_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/set.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/set_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/shift_left.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/shift_right.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/times.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/unpack_args.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/vector.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/gcc/vector_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/advance_backward.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/advance_forward.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/and.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/apply.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/apply_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/apply_wrap.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/arg.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/basic_bind.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/bind.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/bind_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/bitand.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/bitor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/bitxor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/deque.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/divides.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/equal_to.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/full_lambda.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/greater.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/greater_equal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/inherit.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/iter_fold_if_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/iter_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/lambda_no_ctps.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/less.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/less_equal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/list.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/list_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/map.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/minus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/modulus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/not_equal_to.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/or.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/placeholders.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/plus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/quote.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/reverse_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/reverse_iter_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/set.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/set_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/shift_left.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/shift_right.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/template_arity.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/times.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/unpack_args.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/vector.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc60/vector_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/advance_backward.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/advance_forward.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/and.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/apply.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/apply_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/apply_wrap.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/arg.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/basic_bind.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/bind.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/bind_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/bitand.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/bitor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/bitxor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/deque.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/divides.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/equal_to.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/full_lambda.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/greater.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/greater_equal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/inherit.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/iter_fold_if_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/iter_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/lambda_no_ctps.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/less.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/less_equal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/list.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/list_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/map.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/minus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/modulus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/not_equal_to.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/or.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/placeholders.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/plus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/quote.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/reverse_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/reverse_iter_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/set.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/set_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/shift_left.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/shift_right.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/template_arity.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/times.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/unpack_args.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/vector.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/msvc70/vector_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/advance_backward.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/advance_forward.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/and.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/apply.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/apply_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/apply_wrap.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/arg.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/basic_bind.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/bind.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/bind_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/bitand.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/bitor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/bitxor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/deque.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/divides.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/equal_to.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/full_lambda.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/greater.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/greater_equal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/inherit.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/iter_fold_if_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/iter_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/lambda_no_ctps.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/less.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/less_equal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/list.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/list_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/map.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/minus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/modulus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/not_equal_to.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/or.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/placeholders.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/plus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/quote.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/reverse_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/reverse_iter_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/set.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/set_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/shift_left.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/shift_right.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/template_arity.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/times.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/unpack_args.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/vector.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/mwcw/vector_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/advance_backward.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/advance_forward.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/and.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/apply.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/apply_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/apply_wrap.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/arg.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/basic_bind.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/bind.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/bind_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/bitand.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/bitor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/bitxor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/deque.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/divides.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/equal_to.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/full_lambda.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/greater.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/greater_equal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/inherit.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/iter_fold_if_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/iter_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/lambda_no_ctps.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/less.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/less_equal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/list.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/list_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/map.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/minus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/modulus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/not_equal_to.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/or.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/placeholders.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/plus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/quote.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/reverse_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/reverse_iter_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/set.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/set_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/shift_left.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/shift_right.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/template_arity.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/times.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/unpack_args.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/vector.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ctps/vector_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/advance_backward.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/advance_forward.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/and.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/apply.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/apply_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/apply_wrap.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/arg.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/basic_bind.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/bind.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/bind_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/bitand.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/bitor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/bitxor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/deque.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/divides.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/equal_to.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/full_lambda.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/greater.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/greater_equal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/inherit.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/iter_fold_if_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/iter_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/lambda_no_ctps.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/less.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/less_equal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/list.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/list_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/map.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/minus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/modulus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/not_equal_to.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/or.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/placeholders.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/plus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/quote.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/reverse_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/reverse_iter_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/set.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/set_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/shift_left.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/shift_right.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/template_arity.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/times.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/unpack_args.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/vector.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/no_ttp/vector_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/advance_backward.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/advance_forward.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/and.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/apply.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/apply_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/apply_wrap.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/arg.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/basic_bind.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/bind.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/bind_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/bitand.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/bitor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/bitxor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/deque.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/divides.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/equal_to.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/full_lambda.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/greater.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/greater_equal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/inherit.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/iter_fold_if_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/iter_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/lambda_no_ctps.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/less.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/less_equal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/list.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/list_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/map.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/minus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/modulus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/not_equal_to.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/or.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/placeholders.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/plus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/quote.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/reverse_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/reverse_iter_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/set.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/set_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/shift_left.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/shift_right.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/template_arity.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/times.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/unpack_args.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/vector.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessed/plain/vector_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessor/add.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessor/def_params_tail.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessor/default_params.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessor/enum.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessor/ext_params.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessor/filter_params.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessor/is_seq.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessor/params.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessor/partial_spec_params.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessor/range.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessor/repeat.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessor/sub.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessor/token_equal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/preprocessor/tuple.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/ptr_to_ref.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/push_back_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/push_front_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/range_c/O1_size.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/range_c/back.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/range_c/empty.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/range_c/front.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/range_c/iterator.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/range_c/size.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/range_c/tag.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/reverse_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/reverse_fold_impl_body.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/reverse_iter_fold_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/sequence_wrapper.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/shift_op.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/single_element_iter.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/size_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/sort_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/static_cast.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/template_arity.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/template_arity_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/test.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/test/assert.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/test/data.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/test/test_case.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/traits_lambda_spec.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/transform_iter.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/type_wrapper.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/unwrap.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/value_wknd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/aux_/yes_no.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/back.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/back_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/back_inserter.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/base.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/begin.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/begin_end.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/begin_end_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/bind.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/bind_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/bitand.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/bitor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/bitwise.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/bitxor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/bool.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/bool_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/char.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/char_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/clear.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/clear_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/comparison.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/contains.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/contains_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/copy.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/copy_if.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/count.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/count_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/count_if.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/deque.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/deref.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/distance.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/distance_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/divides.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/empty.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/empty_base.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/empty_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/empty_sequence.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/end.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/equal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/equal_to.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/erase.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/erase_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/erase_key.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/erase_key_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/eval_if.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/filter_view.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/find.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/find_if.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/fold.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/for_each.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/front.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/front_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/front_inserter.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/greater.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/greater_equal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/has_key.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/has_key_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/has_xxx.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/identity.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/if.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/index_if.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/index_of.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/inherit.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/inherit_linearly.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/insert.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/insert_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/insert_range.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/insert_range_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/inserter.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/int.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/int_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/integral_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/integral_c_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/integral_c_tag.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/is_placeholder.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/is_sequence.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/iter_fold.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/iter_fold_if.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/iterator_category.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/iterator_range.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/iterator_tags.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/joint_view.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/key_type.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/key_type_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/lambda.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/lambda_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/less.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/less_equal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/limits/arity.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/limits/list.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/limits/map.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/limits/set.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/limits/string.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/limits/unrolling.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/limits/vector.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/O1_size.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/begin_end.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/clear.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/empty.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/front.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/include_preprocessed.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/item.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/iterator.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/numbered.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/numbered_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/pop_front.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/preprocessed/plain/list10.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/preprocessed/plain/list10_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/preprocessed/plain/list20.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/preprocessed/plain/list20_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/preprocessed/plain/list30.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/preprocessed/plain/list30_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/preprocessed/plain/list40.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/preprocessed/plain/list40_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/preprocessed/plain/list50.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/preprocessed/plain/list50_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/push_back.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/push_front.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/size.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/aux_/tag.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/list0.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/list0_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/list10.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/list10_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/list20.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/list20_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/list30.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/list30_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/list40.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/list40_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/list50.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list/list50_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/list_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/logical.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/long.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/long_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/lower_bound.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/at_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/begin_end_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/clear_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/contains_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/empty_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/erase_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/erase_key_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/has_key_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/include_preprocessed.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/insert_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/item.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/iterator.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/key_type_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/map0.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/numbered.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/preprocessed/no_ctps/map10.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/preprocessed/no_ctps/map20.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/preprocessed/no_ctps/map30.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/preprocessed/no_ctps/map40.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/preprocessed/no_ctps/map50.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/preprocessed/plain/map10.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/preprocessed/plain/map20.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/preprocessed/plain/map30.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/preprocessed/plain/map40.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/preprocessed/plain/map50.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/preprocessed/typeof_based/map10.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/preprocessed/typeof_based/map20.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/preprocessed/typeof_based/map30.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/preprocessed/typeof_based/map40.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/preprocessed/typeof_based/map50.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/size_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/tag.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/aux_/value_type_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/map0.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/map10.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/map20.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/map30.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/map40.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/map/map50.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/math/fixed_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/math/is_even.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/math/rational_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/max.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/max_element.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/min.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/min_element.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/min_max.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/minus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/modulus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/multiplies.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/multiset/aux_/count_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/multiset/aux_/insert_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/multiset/aux_/item.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/multiset/aux_/multiset0.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/multiset/aux_/tag.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/multiset/multiset0.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/negate.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/next.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/next_prior.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/not.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/not_equal_to.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/numeric_cast.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/or.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/order.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/order_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/pair.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/pair_view.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/partition.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/placeholders.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/plus.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/pop_back.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/pop_back_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/pop_front.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/pop_front_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/print.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/prior.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/protect.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/push_back.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/push_back_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/push_front.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/push_front_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/quote.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/range_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/remove.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/remove_if.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/replace.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/replace_if.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/reverse.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/reverse_fold.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/reverse_iter_fold.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/same_as.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/sequence_tag.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/sequence_tag_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/at_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/begin_end_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/clear_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/empty_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/erase_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/erase_key_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/has_key_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/include_preprocessed.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/insert_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/item.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/iterator.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/key_type_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/numbered.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/numbered_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/preprocessed/plain/set10.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/preprocessed/plain/set10_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/preprocessed/plain/set20.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/preprocessed/plain/set20_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/preprocessed/plain/set30.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/preprocessed/plain/set30_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/preprocessed/plain/set40.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/preprocessed/plain/set40_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/preprocessed/plain/set50.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/preprocessed/plain/set50_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/set0.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/size_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/tag.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/aux_/value_type_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/set0.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/set0_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/set10.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/set10_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/set20.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/set20_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/set30.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/set30_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/set40.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/set40_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/set50.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set/set50_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/set_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/shift_left.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/shift_right.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/single_view.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/size.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/size_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/size_t.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/size_t_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/sizeof.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/sort.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/stable_partition.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/string.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/switch.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/tag.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/times.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/transform.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/transform_view.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/unique.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/unpack_args.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/upper_bound.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/value_type.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/value_type_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/O1_size.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/at.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/back.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/begin_end.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/clear.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/empty.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/front.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/include_preprocessed.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/item.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/iterator.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/numbered.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/numbered_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/pop_back.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/pop_front.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/no_ctps/vector10.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/no_ctps/vector10_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/no_ctps/vector20.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/no_ctps/vector20_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/no_ctps/vector30.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/no_ctps/vector30_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/no_ctps/vector40.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/no_ctps/vector40_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/no_ctps/vector50.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/no_ctps/vector50_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/plain/vector10.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/plain/vector10_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/plain/vector20.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/plain/vector20_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/plain/vector30.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/plain/vector30_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/plain/vector40.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/plain/vector40_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/plain/vector50.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/plain/vector50_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/typeof_based/vector10.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/typeof_based/vector10_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/typeof_based/vector20.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/typeof_based/vector20_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/typeof_based/vector30.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/typeof_based/vector30_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/typeof_based/vector40.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/typeof_based/vector40_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/typeof_based/vector50.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/preprocessed/typeof_based/vector50_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/push_back.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/push_front.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/size.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/tag.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/aux_/vector0.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/vector0.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/vector0_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/vector10.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/vector10_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/vector20.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/vector20_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/vector30.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/vector30_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/vector40.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/vector40_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/vector50.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector/vector50_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/vector_c.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/void.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/void_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/mpl/zip_view.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/next_prior.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/non_type.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/noncopyable.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/none.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/none_t.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/numeric/conversion/bounds.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/numeric/conversion/cast.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/numeric/conversion/conversion_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/numeric/conversion/converter.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/numeric/conversion/converter_policies.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/numeric/conversion/detail/bounds.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/numeric/conversion/detail/conversion_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/numeric/conversion/detail/converter.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/numeric/conversion/detail/int_float_mixture.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/numeric/conversion/detail/is_subranged.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/numeric/conversion/detail/meta.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/numeric/conversion/detail/numeric_cast_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/numeric/conversion/detail/preprocessed/numeric_cast_traits_common.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/numeric/conversion/detail/preprocessed/numeric_cast_traits_long_long.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/numeric/conversion/detail/sign_mixture.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/numeric/conversion/detail/udt_builtin_mixture.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/numeric/conversion/int_float_mixture_enum.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/numeric/conversion/numeric_cast_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/numeric/conversion/sign_mixture_enum.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/numeric/conversion/udt_builtin_mixture_enum.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/operators.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/optional.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/optional/optional.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/optional/optional_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/aux_/arg_list.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/aux_/cast.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/aux_/default.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/aux_/is_maybe.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/aux_/maybe.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/aux_/overloads.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/aux_/parameter_requirements.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/aux_/parenthesized_type.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/aux_/preprocessor/flatten.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/aux_/preprocessor/for_each.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/aux_/python/invoker.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/aux_/python/invoker_iterate.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/aux_/result_of0.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/aux_/set.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/aux_/tag.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/aux_/tagged_argument.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/aux_/template_keyword.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/aux_/unwrap_cv_reference.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/aux_/void.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/aux_/yesno.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/binding.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/config.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/keyword.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/macros.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/match.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/name.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/parameters.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/preprocessor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/python.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/parameter/value_type.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/pointee.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/pointer_to_other.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/pool/detail/for.m4 +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/pool/detail/guard.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/pool/detail/mutex.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/pool/detail/pool_construct.bat +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/pool/detail/pool_construct.ipp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/pool/detail/pool_construct.m4 +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/pool/detail/pool_construct.sh +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/pool/detail/pool_construct_simple.bat +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/pool/detail/pool_construct_simple.ipp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/pool/detail/pool_construct_simple.m4 +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/pool/detail/pool_construct_simple.sh +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/pool/object_pool.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/pool/pool.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/pool/pool_alloc.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/pool/poolfwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/pool/simple_segregated_storage.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/pool/singleton_pool.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/arithmetic.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/arithmetic/add.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/arithmetic/dec.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/arithmetic/detail/div_base.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/arithmetic/div.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/arithmetic/inc.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/arithmetic/mod.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/arithmetic/mul.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/arithmetic/sub.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/array.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/array/data.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/array/elem.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/array/enum.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/array/insert.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/array/pop_back.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/array/pop_front.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/array/push_back.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/array/push_front.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/array/remove.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/array/replace.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/array/reverse.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/array/size.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/array/to_list.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/array/to_seq.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/array/to_tuple.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/assert_msg.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/cat.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/comma.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/comma_if.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/comparison.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/comparison/equal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/comparison/greater.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/comparison/greater_equal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/comparison/less.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/comparison/less_equal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/comparison/not_equal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/config/config.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/config/limits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/control.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/control/deduce_d.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/control/detail/dmc/while.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/control/detail/edg/while.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/control/detail/msvc/while.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/control/detail/while.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/control/expr_if.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/control/expr_iif.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/control/if.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/control/iif.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/control/while.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/debug.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/debug/assert.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/debug/error.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/debug/line.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/dec.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/detail/auto_rec.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/detail/check.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/detail/dmc/auto_rec.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/detail/is_binary.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/detail/is_nullary.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/detail/is_unary.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/detail/null.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/detail/split.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/empty.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/enum.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/enum_params.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/enum_params_with_a_default.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/enum_params_with_defaults.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/enum_shifted.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/enum_shifted_params.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/expand.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/expr_if.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/facilities.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/facilities/apply.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/facilities/empty.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/facilities/expand.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/facilities/identity.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/facilities/intercept.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/facilities/is_1.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/facilities/is_empty.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/facilities/is_empty_or_1.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/facilities/overload.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/for.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/identity.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/if.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/inc.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iterate.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/bounds/lower1.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/bounds/lower2.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/bounds/lower3.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/bounds/lower4.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/bounds/lower5.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/bounds/upper1.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/bounds/upper2.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/bounds/upper3.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/bounds/upper4.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/bounds/upper5.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/finish.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/iter/forward1.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/iter/forward2.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/iter/forward3.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/iter/forward4.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/iter/forward5.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/iter/reverse1.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/iter/reverse2.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/iter/reverse3.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/iter/reverse4.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/iter/reverse5.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/local.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/rlocal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/self.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/detail/start.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/iterate.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/local.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/iteration/self.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/library.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/limits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/adt.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/append.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/at.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/cat.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/detail/dmc/fold_left.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/detail/edg/fold_left.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/detail/edg/fold_right.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/detail/fold_left.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/detail/fold_right.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/enum.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/filter.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/first_n.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/fold_left.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/fold_right.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/for_each.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/for_each_i.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/for_each_product.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/rest_n.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/reverse.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/size.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/to_array.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/to_seq.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/to_tuple.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/list/transform.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/logical.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/logical/and.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/logical/bitand.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/logical/bitnor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/logical/bitor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/logical/bitxor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/logical/bool.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/logical/compl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/logical/nor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/logical/not.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/logical/or.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/logical/xor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/max.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/min.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/punctuation.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/punctuation/comma.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/punctuation/comma_if.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/punctuation/paren.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/punctuation/paren_if.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repeat.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repeat_2nd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repeat_3rd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repeat_from_to.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repeat_from_to_2nd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repeat_from_to_3rd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repetition.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repetition/deduce_r.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repetition/deduce_z.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repetition/detail/dmc/for.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repetition/detail/edg/for.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repetition/detail/for.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repetition/detail/msvc/for.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repetition/enum.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repetition/enum_binary_params.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repetition/enum_params.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repetition/enum_params_with_a_default.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repetition/enum_params_with_defaults.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repetition/enum_shifted.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repetition/enum_shifted_binary_params.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repetition/enum_shifted_params.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repetition/enum_trailing.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repetition/enum_trailing_binary_params.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repetition/enum_trailing_params.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repetition/for.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repetition/repeat.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/repetition/repeat_from_to.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/selection.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/selection/max.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/selection/min.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/cat.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/detail/binary_transform.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/detail/split.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/elem.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/enum.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/filter.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/first_n.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/fold_left.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/fold_right.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/for_each.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/for_each_i.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/for_each_product.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/insert.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/pop_back.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/pop_front.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/push_back.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/push_front.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/remove.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/replace.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/rest_n.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/reverse.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/seq.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/size.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/subseq.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/to_array.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/to_list.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/to_tuple.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/seq/transform.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/slot.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/slot/counter.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/slot/detail/counter.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/slot/detail/def.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/slot/detail/shared.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/slot/detail/slot1.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/slot/detail/slot2.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/slot/detail/slot3.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/slot/detail/slot4.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/slot/detail/slot5.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/slot/slot.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/stringize.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/tuple.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/tuple/eat.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/tuple/elem.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/tuple/enum.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/tuple/rem.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/tuple/reverse.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/tuple/size.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/tuple/to_array.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/tuple/to_list.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/tuple/to_seq.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/variadic.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/variadic/elem.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/variadic/size.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/variadic/to_array.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/variadic/to_list.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/variadic/to_seq.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/variadic/to_tuple.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/while.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/preprocessor/wstringize.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/algorithm/equal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/as_literal.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/begin.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/concepts.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/config.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/const_iterator.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/detail/common.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/detail/extract_optional_type.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/detail/implementation_help.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/detail/misc_concept.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/detail/safe_bool.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/detail/sfinae.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/detail/str_types.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/difference_type.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/distance.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/empty.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/end.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/functions.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/iterator.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/iterator_range.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/iterator_range_core.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/iterator_range_io.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/mutable_iterator.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/rbegin.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/rend.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/reverse_iterator.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/size.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/size_type.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/range/value_type.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/ratio/config.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/ratio/detail/mpl/abs.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/ratio/detail/mpl/gcd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/ratio/detail/mpl/lcm.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/ratio/detail/mpl/sign.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/ratio/detail/overflow_helpers.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/ratio/ratio.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/ratio/ratio_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/ref.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex.h +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/concepts.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/config.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/config/borland.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/config/cwchar.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/mfc.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/pattern_except.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/pending/object_cache.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/pending/static_mutex.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/pending/unicode_iterator.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/regex_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/user.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/basic_regex.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/basic_regex_creator.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/basic_regex_parser.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/c_regex_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/char_regex_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/cpp_regex_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/cregex.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/error_type.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/fileiter.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/instances.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/iterator_category.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/iterator_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/match_flags.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/match_results.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/mem_block_cache.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/perl_matcher.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/perl_matcher_common.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/perl_matcher_non_recursive.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/perl_matcher_recursive.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/primary_transform.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/protected_call.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/regbase.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/regex.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/regex_format.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/regex_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/regex_grep.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/regex_iterator.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/regex_match.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/regex_merge.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/regex_raw_buffer.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/regex_replace.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/regex_search.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/regex_split.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/regex_token_iterator.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/regex_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/regex_traits_defaults.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/regex_workaround.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/states.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/sub_match.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/syntax_type.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/u32regex_iterator.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/u32regex_token_iterator.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex/v4/w32_regex_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/regex_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/scoped_array.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/scoped_ptr.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/shared_array.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/shared_ptr.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/allocate_shared_array.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/bad_weak_ptr.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/allocate_array_helper.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/array_deleter.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/array_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/array_utility.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/atomic_count.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/atomic_count_gcc.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/atomic_count_gcc_x86.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/atomic_count_pthreads.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/atomic_count_solaris.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/atomic_count_sync.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/make_array_helper.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/operator_bool.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/shared_count.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_convertible.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_counted_base.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_counted_base_acc_ia64.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_counted_base_aix.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_counted_base_cw_ppc.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_counted_base_cw_x86.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_counted_base_gcc_ia64.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_counted_base_gcc_mips.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_counted_base_gcc_ppc.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_counted_base_gcc_sparc.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_counted_base_gcc_x86.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_counted_base_nt.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_counted_base_pt.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_counted_base_snc_ps3.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_counted_base_solaris.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_counted_base_spin.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_counted_base_sync.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_counted_base_vacpp_ppc.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_counted_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_forward.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_has_sync.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_if_array.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/sp_nullptr_t.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/spinlock.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/spinlock_gcc_arm.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/spinlock_nt.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/spinlock_pool.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/spinlock_pt.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/spinlock_sync.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/detail/yield_k.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/enable_shared_from_this.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/intrusive_ptr.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/make_shared.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/make_shared_array.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/make_shared_object.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/scoped_array.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/scoped_ptr.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/shared_array.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/shared_ptr.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/smart_ptr/weak_ptr.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/static_assert.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/swap.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/system/api_config.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/system/config.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/system/error_code.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/system/system_error.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/barrier.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/completion_latch.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/condition.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/condition_variable.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/cv_status.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/detail/async_func.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/detail/config.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/detail/counter.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/detail/delete.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/detail/force_cast.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/detail/invoke.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/detail/is_convertible.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/detail/lockable_wrapper.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/detail/log.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/detail/make_tuple_indices.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/detail/memory.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/detail/move.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/detail/platform.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/detail/singleton.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/detail/thread.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/detail/thread_group.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/detail/thread_heap_alloc.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/detail/thread_interruption.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/detail/tss_hooks.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/exceptions.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/externally_locked.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/externally_locked_stream.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/future.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/future_error_code.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/is_locked_by_this_thread.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/latch.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/lock_algorithms.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/lock_concepts.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/lock_factories.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/lock_guard.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/lock_options.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/lock_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/lock_types.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/lockable_adapter.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/lockable_concepts.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/lockable_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/locks.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/mutex.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/null_mutex.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/once.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/poly_lockable.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/poly_lockable_adapter.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/poly_shared_lockable.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/poly_shared_lockable_adapter.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/pthread/condition_variable.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/pthread/condition_variable_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/pthread/mutex.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/pthread/once.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/pthread/once_atomic.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/pthread/pthread_mutex_scoped_lock.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/pthread/recursive_mutex.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/pthread/shared_mutex.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/pthread/shared_mutex_assert.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/pthread/thread_data.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/pthread/thread_heap_alloc.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/pthread/timespec.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/recursive_mutex.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/reverse_lock.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/scoped_thread.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/shared_lock_guard.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/shared_mutex.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/strict_lock.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/sync_bounded_queue.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/sync_queue.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/synchronized_value.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/testable_mutex.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/thread.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/thread_functors.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/thread_guard.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/thread_only.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/thread_time.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/tss.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/v2/shared_mutex.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/v2/thread.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/thread/xtime.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/throw_exception.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/token_functions.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/token_iterator.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/tokenizer.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/tuple/detail/tuple_basic.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/tuple/tuple.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/add_const.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/add_cv.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/add_lvalue_reference.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/add_pointer.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/add_reference.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/add_rvalue_reference.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/add_volatile.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/aligned_storage.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/alignment_of.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/broken_compiler_spec.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/common_type.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/composite_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/config.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/conversion_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/cv_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/decay.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/bool_trait_def.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/bool_trait_undef.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/common_type_imp.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/cv_traits_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/false_result.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/has_binary_operator.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/has_postfix_operator.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/has_prefix_operator.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/ice_and.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/ice_eq.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/ice_not.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/ice_or.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/is_function_ptr_helper.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/is_function_ptr_tester.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/is_mem_fun_pointer_tester.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/size_t_trait_def.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/size_t_trait_undef.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/template_arity_spec.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/type_trait_def.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/type_trait_undef.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/wrap.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/yes_no_type.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/function_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/has_left_shift.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/has_nothrow_assign.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/has_nothrow_constructor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/has_nothrow_copy.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/has_right_shift.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/has_trivial_assign.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/has_trivial_constructor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/has_trivial_copy.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/has_trivial_destructor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/has_trivial_move_assign.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/has_trivial_move_constructor.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/ice.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/integral_constant.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/intrinsics.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_abstract.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_arithmetic.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_array.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_base_and_derived.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_base_of.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_class.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_compound.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_const.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_convertible.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_empty.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_enum.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_float.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_floating_point.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_function.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_fundamental.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_integral.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_lvalue_reference.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_member_function_pointer.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_member_pointer.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_nothrow_move_assignable.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_nothrow_move_constructible.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_object.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_pod.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_pointer.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_reference.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_rvalue_reference.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_same.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_scalar.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_signed.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_stateless.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_union.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_unsigned.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_void.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_volatile.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/make_signed.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/make_unsigned.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/object_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/remove_bounds.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/remove_const.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/remove_cv.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/remove_pointer.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/remove_reference.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/remove_volatile.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/same_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/transform_traits.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/type_with_alignment.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/typeof/message.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/typeof/native.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/typeof/typeof.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/units/detail/utility.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/unordered/detail/allocate.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/unordered/detail/buckets.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/unordered/detail/equivalent.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/unordered/detail/extract_key.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/unordered/detail/fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/unordered/detail/table.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/unordered/detail/unique.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/unordered/detail/util.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/unordered/unordered_map.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/unordered/unordered_map_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/unordered/unordered_set.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/unordered/unordered_set_fwd.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/unordered_map.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/unordered_set.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/utility/addressof.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/utility/compare_pointees.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/utility/declval.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/utility/detail/in_place_factory_prefix.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/utility/detail/in_place_factory_suffix.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/utility/detail/result_of_iterate.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/utility/enable_if.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/utility/in_place_factory.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/utility/result_of.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/utility/swap.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/version.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/visit_each.hpp +0 -0
- data/{ext → src/cxx_supportlib/vendor-modified}/boost/weak_ptr.hpp +0 -0
- data/{ext/common/Utils → src/cxx_supportlib/vendor-modified/jsoncpp}/json-forwards.h +0 -0
- data/{ext/common/Utils → src/cxx_supportlib/vendor-modified/jsoncpp}/json.h +0 -0
- data/src/cxx_supportlib/vendor-modified/jsoncpp/jsoncpp.cpp +4237 -0
- data/src/cxx_supportlib/vendor-modified/modp_b64.cpp +290 -0
- data/{ext/common/Utils → src/cxx_supportlib/vendor-modified}/modp_b64.h +0 -0
- data/{ext/common/Utils → src/cxx_supportlib/vendor-modified}/modp_b64_data.h +0 -0
- data/{ext/common/Utils/sysqueue.h → src/cxx_supportlib/vendor-modified/psg_sysqueue.h} +0 -0
- data/src/helper-scripts/README.md +1 -0
- data/{helper-scripts → src/helper-scripts}/backtrace-sanitizer.rb +0 -0
- data/{helper-scripts → src/helper-scripts}/crash-watch.rb +0 -0
- data/src/helper-scripts/download_binaries/extconf.rb +116 -0
- data/{helper-scripts → src/helper-scripts}/meteor-loader.rb +0 -0
- data/src/helper-scripts/node-loader.js +259 -0
- data/{helper-scripts → src/helper-scripts}/prespawn +0 -0
- data/{helper-scripts → src/helper-scripts}/rack-loader.rb +0 -0
- data/{helper-scripts → src/helper-scripts}/rack-preloader.rb +0 -0
- data/{helper-scripts → src/helper-scripts}/wsgi-loader.py +0 -0
- data/src/nginx_module/CacheLocationConfig.c +673 -0
- data/src/nginx_module/CacheLocationConfig.c.erb +158 -0
- data/src/nginx_module/Configuration.c +1465 -0
- data/{ext/nginx → src/nginx_module}/Configuration.h +0 -0
- data/src/nginx_module/ConfigurationCommands.c +631 -0
- data/src/nginx_module/ConfigurationCommands.c.erb +143 -0
- data/src/nginx_module/ConfigurationFields.h +134 -0
- data/src/nginx_module/ConfigurationFields.h.erb +111 -0
- data/src/nginx_module/ContentHandler.c +1494 -0
- data/src/nginx_module/ContentHandler.h +58 -0
- data/src/nginx_module/CreateLocationConfig.c +205 -0
- data/src/nginx_module/CreateLocationConfig.c.erb +77 -0
- data/src/nginx_module/MergeLocationConfig.c +267 -0
- data/src/nginx_module/MergeLocationConfig.c.erb +117 -0
- data/src/nginx_module/README.md +5 -0
- data/{ext/nginx → src/nginx_module}/StaticContentHandler.c +0 -0
- data/{ext/nginx → src/nginx_module}/StaticContentHandler.h +0 -0
- data/src/nginx_module/config +102 -0
- data/src/nginx_module/ngx_http_passenger_module.c +512 -0
- data/src/nginx_module/ngx_http_passenger_module.h +65 -0
- data/{node_lib → src/nodejs_supportlib}/phusion_passenger/line_reader.js +0 -0
- data/{ext/ruby → src/ruby_native_extension}/extconf.rb +0 -0
- data/{ext/ruby → src/ruby_native_extension}/passenger_native_support.c +0 -0
- data/src/ruby_supportlib/phusion_passenger.rb +313 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/abstract_installer.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/admin_tools.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/admin_tools/instance.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/admin_tools/instance_registry.rb +0 -0
- data/src/ruby_supportlib/phusion_passenger/admin_tools/memory_stats.rb +312 -0
- data/src/ruby_supportlib/phusion_passenger/apache2/config_options.rb +247 -0
- data/src/ruby_supportlib/phusion_passenger/common_library.rb +341 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/config/about_command.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/config/agent_compiler.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/config/api_call_command.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/config/build_native_support_command.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/config/command.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/config/compile_agent_command.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/config/compile_nginx_engine_command.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/config/detach_process_command.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/config/download_agent_command.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/config/download_nginx_engine_command.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/config/install_agent_command.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/config/install_standalone_runtime_command.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/config/installation_utils.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/config/list_instances_command.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/config/main.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/config/nginx_engine_compiler.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/config/reopen_logs_command.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/config/restart_app_command.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/config/system_metrics_command.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/config/utils.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/config/validate_install_command.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/console_text_template.rb +0 -0
- data/src/ruby_supportlib/phusion_passenger/constants.rb +125 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/debug_logging.rb +0 -0
- data/src/ruby_supportlib/phusion_passenger/loader_shared_helpers.rb +515 -0
- data/src/ruby_supportlib/phusion_passenger/message_channel.rb +343 -0
- data/src/ruby_supportlib/phusion_passenger/message_client.rb +135 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/native_support.rb +0 -0
- data/src/ruby_supportlib/phusion_passenger/nginx/config_options.rb +392 -0
- data/src/ruby_supportlib/phusion_passenger/packaging.rb +128 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/platform_info.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/platform_info/apache.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/platform_info/apache_detector.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/platform_info/binary_compatibility.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/platform_info/compiler.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/platform_info/curl.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/platform_info/cxx_portability.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/platform_info/depcheck.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/platform_info/depcheck_specs/apache2.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/platform_info/depcheck_specs/compiler_toolchain.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/platform_info/depcheck_specs/gems.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/platform_info/depcheck_specs/libs.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/platform_info/depcheck_specs/ruby.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/platform_info/depcheck_specs/utilities.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/platform_info/linux.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/platform_info/operating_system.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/platform_info/ruby.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/platform_info/zlib.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/plugin.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/preloader_shared_helpers.rb +0 -0
- data/src/ruby_supportlib/phusion_passenger/public_api.rb +93 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/rack/out_of_band_gc.rb +0 -0
- data/src/ruby_supportlib/phusion_passenger/rack/thread_handler_extension.rb +379 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/request_handler.rb +0 -0
- data/src/ruby_supportlib/phusion_passenger/request_handler/thread_handler.rb +366 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/ruby_core_enhancements.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/ruby_core_io_enhancements.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/simple_benchmarking.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/standalone/app_finder.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/standalone/command.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/standalone/config_utils.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/standalone/control_utils.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/standalone/main.rb +0 -0
- data/src/ruby_supportlib/phusion_passenger/standalone/start_command.rb +825 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/standalone/start_command/builtin_engine.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/standalone/start_command/nginx_engine.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/standalone/status_command.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/standalone/stop_command.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/standalone/version_command.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/utils.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/utils/ansi_colors.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/utils/download.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/utils/file_system_watcher.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/utils/hosts_file_parser.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/utils/json.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/utils/lock.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/utils/native_support_utils.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/utils/progress_bar.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/utils/shellwords.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/utils/tee_input.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/utils/terminal_choice_menu.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/utils/tmpio.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/utils/unseekable_socket.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/vendor/crash_watch/app.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/vendor/crash_watch/gdb_controller.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/vendor/crash_watch/version.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/vendor/daemon_controller.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/vendor/daemon_controller/lock_file.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/vendor/daemon_controller/spawn.rb +0 -0
- data/{lib → src/ruby_supportlib}/phusion_passenger/vendor/daemon_controller/version.rb +0 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/CONFIG.md +37 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/Gemfile +17 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/Gemfile.lock +59 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/LICENSE.md +19 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/README-API.md +5 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/README.md +117 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/Rakefile +88 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core.rb +366 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/api.rb +192 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/connection.rb +67 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/context.rb +279 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/lock.rb +62 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/log.rb +66 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/message_channel.rb +157 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/request_reporter.rb +150 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/request_reporter/basics.rb +196 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/request_reporter/controllers.rb +187 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/request_reporter/misc.rb +299 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/request_reporter/view_rendering.rb +91 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/spec_helper.rb +259 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/time_point.rb +53 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/transaction.rb +182 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/utils.rb +161 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/version.rb +32 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/version_data.rb +44 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/ruby_versions.yml +2 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/ruby_versions.yml.example +16 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/ruby_versions.yml.travis +18 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/union_station_hooks_core.gemspec +23 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_rails/Gemfile +14 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_rails/Gemfile.lock +45 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_rails/LICENSE.md +19 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_rails/README.md +104 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_rails/Rakefile +160 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_rails/lib/union_station_hooks_rails.rb +173 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_rails/lib/union_station_hooks_rails/action_controller_extension.rb +45 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_rails/lib/union_station_hooks_rails/action_view_subscriber.rb +55 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_rails/lib/union_station_hooks_rails/active_record_subscriber.rb +41 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_rails/lib/union_station_hooks_rails/active_support_benchmarkable_extension.rb +47 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_rails/lib/union_station_hooks_rails/active_support_cache_subscriber.rb +70 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_rails/lib/union_station_hooks_rails/exception_logger.rb +57 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_rails/lib/union_station_hooks_rails/initialize.rb +30 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_rails/lib/union_station_hooks_rails/version.rb +32 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_rails/lib/union_station_hooks_rails/version_data.rb +44 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_rails/union_station_hooks_rails.gemspec +34 -0
- metadata +2764 -2717
- metadata.gz.asc +7 -7
- data/build/agents.rb +0 -174
- data/build/preprocessor.rb +0 -140
- data/build/rake_extensions.rb +0 -187
- data/ext/apache2/Configuration.cpp +0 -663
- data/ext/apache2/ConfigurationCommands.cpp +0 -251
- data/ext/apache2/ConfigurationCommands.cpp.erb +0 -108
- data/ext/apache2/ConfigurationFields.hpp +0 -98
- data/ext/apache2/ConfigurationFields.hpp.erb +0 -97
- data/ext/apache2/ConfigurationSetters.cpp +0 -422
- data/ext/apache2/ConfigurationSetters.cpp.erb +0 -127
- data/ext/apache2/CreateDirConfig.cpp +0 -68
- data/ext/apache2/CreateDirConfig.cpp.erb +0 -71
- data/ext/apache2/DirectoryMapper.h +0 -274
- data/ext/apache2/Hooks.cpp +0 -1734
- data/ext/apache2/MergeDirConfig.cpp +0 -230
- data/ext/apache2/MergeDirConfig.cpp.erb +0 -81
- data/ext/apache2/SetHeaders.cpp +0 -151
- data/ext/apache2/SetHeaders.cpp.erb +0 -90
- data/ext/common/ApplicationPool2/AppTypes.cpp +0 -111
- data/ext/common/ApplicationPool2/AppTypes.h +0 -274
- data/ext/common/ApplicationPool2/BasicGroupInfo.h +0 -81
- data/ext/common/ApplicationPool2/BasicProcessInfo.h +0 -106
- data/ext/common/ApplicationPool2/Common.h +0 -213
- data/ext/common/ApplicationPool2/Context.h +0 -94
- data/ext/common/ApplicationPool2/ErrorRenderer.h +0 -116
- data/ext/common/ApplicationPool2/Group.h +0 -495
- data/ext/common/ApplicationPool2/Group/InitializationAndShutdown.cpp +0 -190
- data/ext/common/ApplicationPool2/Group/InternalUtils.cpp +0 -329
- data/ext/common/ApplicationPool2/Group/LifetimeAndBasics.cpp +0 -103
- data/ext/common/ApplicationPool2/Group/Miscellaneous.cpp +0 -65
- data/ext/common/ApplicationPool2/Group/OutOfBandWork.cpp +0 -323
- data/ext/common/ApplicationPool2/Group/ProcessListManagement.cpp +0 -606
- data/ext/common/ApplicationPool2/Group/SessionManagement.cpp +0 -337
- data/ext/common/ApplicationPool2/Group/SpawningAndRestarting.cpp +0 -478
- data/ext/common/ApplicationPool2/Group/StateInspection.cpp +0 -197
- data/ext/common/ApplicationPool2/Group/Verification.cpp +0 -159
- data/ext/common/ApplicationPool2/Implementation.cpp +0 -335
- data/ext/common/ApplicationPool2/Options.h +0 -704
- data/ext/common/ApplicationPool2/Pool.h +0 -463
- data/ext/common/ApplicationPool2/Pool/AnalyticsCollection.cpp +0 -254
- data/ext/common/ApplicationPool2/Pool/GarbageCollection.cpp +0 -200
- data/ext/common/ApplicationPool2/Pool/GeneralUtils.cpp +0 -241
- data/ext/common/ApplicationPool2/Pool/GroupUtils.cpp +0 -276
- data/ext/common/ApplicationPool2/Pool/InitializationAndShutdown.cpp +0 -145
- data/ext/common/ApplicationPool2/Pool/Miscellaneous.cpp +0 -244
- data/ext/common/ApplicationPool2/Pool/ProcessUtils.cpp +0 -330
- data/ext/common/ApplicationPool2/Pool/StateInspection.cpp +0 -299
- data/ext/common/ApplicationPool2/Process.h +0 -906
- data/ext/common/ApplicationPool2/Session.h +0 -255
- data/ext/common/ApplicationPool2/Socket.h +0 -293
- data/ext/common/Constants.h +0 -160
- data/ext/common/Constants.h.erb +0 -42
- data/ext/common/EventedClient.h +0 -723
- data/ext/common/EventedMessageServer.h +0 -332
- data/ext/common/EventedServer.h +0 -295
- data/ext/common/InstanceDirectory.h +0 -242
- data/ext/common/Logging.cpp +0 -294
- data/ext/common/MemoryKit/mbuf.cpp +0 -302
- data/ext/common/MemoryKit/mbuf.h +0 -256
- data/ext/common/MessageClient.h +0 -300
- data/ext/common/MessageReadersWriters.h +0 -527
- data/ext/common/MessageServer.h +0 -625
- data/ext/common/ResourceLocator.h +0 -181
- data/ext/common/ServerKit/Channel.h +0 -765
- data/ext/common/ServerKit/Client.h +0 -166
- data/ext/common/ServerKit/Context.h +0 -138
- data/ext/common/ServerKit/FdSinkChannel.h +0 -217
- data/ext/common/ServerKit/FdSourceChannel.h +0 -251
- data/ext/common/ServerKit/FileBufferedChannel.h +0 -1605
- data/ext/common/ServerKit/HttpClient.h +0 -94
- data/ext/common/ServerKit/HttpRequest.h +0 -276
- data/ext/common/ServerKit/HttpServer.h +0 -1212
- data/ext/common/ServerKit/Server.h +0 -1101
- data/ext/common/SpawningKit/Config.h +0 -107
- data/ext/common/SpawningKit/DirectSpawner.h +0 -254
- data/ext/common/SpawningKit/DummySpawner.h +0 -94
- data/ext/common/SpawningKit/Factory.h +0 -113
- data/ext/common/SpawningKit/Options.h +0 -40
- data/ext/common/SpawningKit/PipeWatcher.h +0 -148
- data/ext/common/SpawningKit/Result.h +0 -49
- data/ext/common/SpawningKit/SmartSpawner.h +0 -818
- data/ext/common/SpawningKit/Spawner.h +0 -1199
- data/ext/common/SpawningKit/UserSwitchingRules.h +0 -265
- data/ext/common/UnionStation/Connection.h +0 -229
- data/ext/common/UnionStation/Core.h +0 -508
- data/ext/common/UnionStation/StopwatchLog.h +0 -172
- data/ext/common/UnionStation/Transaction.h +0 -276
- data/ext/common/Utils.cpp +0 -1389
- data/ext/common/Utils/BCrypt.cpp +0 -343
- data/ext/common/Utils/BCrypt.h +0 -73
- data/ext/common/Utils/Blowfish.c +0 -685
- data/ext/common/Utils/Blowfish.h +0 -103
- data/ext/common/Utils/Dechunker.h +0 -242
- data/ext/common/Utils/IOUtils.cpp +0 -1293
- data/ext/common/Utils/IOUtils.h +0 -644
- data/ext/common/Utils/JsonUtils.h +0 -261
- data/ext/common/Utils/MD5.cpp +0 -409
- data/ext/common/Utils/MD5.h +0 -108
- data/ext/common/Utils/StrIntUtils.cpp +0 -698
- data/ext/common/Utils/VariantMap.h +0 -494
- data/ext/common/Utils/jsoncpp.cpp +0 -4237
- data/ext/common/Utils/modp_b64.cpp +0 -290
- data/ext/common/Utils/utf8.h +0 -35
- data/ext/common/Utils/utf8/checked.h +0 -324
- data/ext/common/Utils/utf8/unchecked.h +0 -229
- data/ext/common/agent/ApiServerUtils.h +0 -941
- data/ext/common/agent/Base.cpp +0 -1647
- data/ext/common/agent/Core/ApiServer.h +0 -623
- data/ext/common/agent/Core/CoreMain.cpp +0 -1203
- data/ext/common/agent/Core/RequestHandler.h +0 -469
- data/ext/common/agent/Core/RequestHandler/AppResponse.h +0 -230
- data/ext/common/agent/Core/RequestHandler/Client.h +0 -56
- data/ext/common/agent/Core/RequestHandler/Request.h +0 -158
- data/ext/common/agent/Core/RequestHandler/TurboCaching.h +0 -294
- data/ext/common/agent/SpawnPreparer/SpawnPreparerMain.cpp +0 -207
- data/ext/common/agent/UstRouter/ApiServer.h +0 -279
- data/ext/common/agent/UstRouter/FilterSupport.cpp +0 -66
- data/ext/common/agent/UstRouter/FilterSupport.h +0 -1619
- data/ext/common/agent/UstRouter/LoggingServer.h +0 -1206
- data/ext/common/agent/UstRouter/OptionParser.h +0 -167
- data/ext/common/agent/UstRouter/RemoteSender.h +0 -621
- data/ext/common/agent/UstRouter/UstRouterMain.cpp +0 -558
- data/ext/common/agent/Watchdog/ApiServer.h +0 -311
- data/ext/common/agent/Watchdog/WatchdogMain.cpp +0 -1359
- data/ext/libuv/.gitignore +0 -72
- data/ext/libuv/m4/.gitignore +0 -4
- data/ext/nginx/CacheLocationConfig.c +0 -673
- data/ext/nginx/CacheLocationConfig.c.erb +0 -158
- data/ext/nginx/Configuration.c +0 -1465
- data/ext/nginx/ConfigurationCommands.c +0 -631
- data/ext/nginx/ConfigurationCommands.c.erb +0 -143
- data/ext/nginx/ConfigurationFields.h +0 -134
- data/ext/nginx/ConfigurationFields.h.erb +0 -111
- data/ext/nginx/ContentHandler.c +0 -1494
- data/ext/nginx/ContentHandler.h +0 -58
- data/ext/nginx/CreateLocationConfig.c +0 -205
- data/ext/nginx/CreateLocationConfig.c.erb +0 -77
- data/ext/nginx/MergeLocationConfig.c +0 -267
- data/ext/nginx/MergeLocationConfig.c.erb +0 -117
- data/ext/nginx/config +0 -102
- data/ext/nginx/ngx_http_passenger_module.c +0 -512
- data/ext/nginx/ngx_http_passenger_module.h +0 -65
- data/helper-scripts/download_binaries/extconf.rb +0 -116
- data/helper-scripts/node-loader.js +0 -259
- data/lib/phusion_passenger.rb +0 -313
- data/lib/phusion_passenger/active_support3_extensions/init.rb +0 -198
- data/lib/phusion_passenger/admin_tools/memory_stats.rb +0 -300
- data/lib/phusion_passenger/apache2/config_options.rb +0 -247
- data/lib/phusion_passenger/common_library.rb +0 -549
- data/lib/phusion_passenger/constants.rb +0 -128
- data/lib/phusion_passenger/loader_shared_helpers.rb +0 -510
- data/lib/phusion_passenger/message_channel.rb +0 -343
- data/lib/phusion_passenger/message_client.rb +0 -208
- data/lib/phusion_passenger/nginx/config_options.rb +0 -392
- data/lib/phusion_passenger/packaging.rb +0 -145
- data/lib/phusion_passenger/public_api.rb +0 -225
- data/lib/phusion_passenger/rack/thread_handler_extension.rb +0 -360
- data/lib/phusion_passenger/request_handler/thread_handler.rb +0 -422
- data/lib/phusion_passenger/standalone/start_command.rb +0 -824
- data/lib/phusion_passenger/union_station/connection.rb +0 -67
- data/lib/phusion_passenger/union_station/core.rb +0 -283
- data/lib/phusion_passenger/union_station/transaction.rb +0 -168
@@ -0,0 +1,251 @@
|
|
1
|
+
/*
|
2
|
+
* Phusion Passenger - https://www.phusionpassenger.com/
|
3
|
+
* Copyright (c) 2014-2015 Phusion
|
4
|
+
*
|
5
|
+
* "Phusion Passenger" is a trademark of Hongli Lai & Ninh Bui.
|
6
|
+
*
|
7
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
8
|
+
* of this software and associated documentation files (the "Software"), to deal
|
9
|
+
* in the Software without restriction, including without limitation the rights
|
10
|
+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
11
|
+
* copies of the Software, and to permit persons to whom the Software is
|
12
|
+
* furnished to do so, subject to the following conditions:
|
13
|
+
*
|
14
|
+
* The above copyright notice and this permission notice shall be included in
|
15
|
+
* all copies or substantial portions of the Software.
|
16
|
+
*
|
17
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
18
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
19
|
+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
20
|
+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
21
|
+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
22
|
+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
23
|
+
* THE SOFTWARE.
|
24
|
+
*/
|
25
|
+
#ifndef _PASSENGER_SERVER_KIT_FD_SOURCE_CHANNEL_H_
|
26
|
+
#define _PASSENGER_SERVER_KIT_FD_SOURCE_CHANNEL_H_
|
27
|
+
|
28
|
+
#include <oxt/macros.hpp>
|
29
|
+
#include <boost/move/move.hpp>
|
30
|
+
#include <sys/types.h>
|
31
|
+
#include <unistd.h>
|
32
|
+
#include <ev.h>
|
33
|
+
#include <jsoncpp/json.h>
|
34
|
+
#include <MemoryKit/mbuf.h>
|
35
|
+
#include <ServerKit/Context.h>
|
36
|
+
#include <ServerKit/Channel.h>
|
37
|
+
|
38
|
+
namespace Passenger {
|
39
|
+
namespace ServerKit {
|
40
|
+
|
41
|
+
using namespace oxt;
|
42
|
+
|
43
|
+
|
44
|
+
class FdSourceChannel: protected Channel {
|
45
|
+
private:
|
46
|
+
ev_io watcher;
|
47
|
+
MemoryKit::mbuf buffer;
|
48
|
+
|
49
|
+
static void _onReadable(EV_P_ ev_io *io, int revents) {
|
50
|
+
static_cast<FdSourceChannel *>(io->data)->onReadable(io, revents);
|
51
|
+
}
|
52
|
+
|
53
|
+
void onReadable(ev_io *io, int revents) {
|
54
|
+
RefGuard guard(hooks, this, __FILE__, __LINE__);
|
55
|
+
onReadableWithoutRefGuard();
|
56
|
+
}
|
57
|
+
|
58
|
+
void onReadableWithoutRefGuard() {
|
59
|
+
unsigned int generation = this->generation;
|
60
|
+
unsigned int i, origBufferSize;
|
61
|
+
bool done = false;
|
62
|
+
ssize_t ret;
|
63
|
+
int e;
|
64
|
+
|
65
|
+
if (!acceptingInput()) {
|
66
|
+
ev_io_stop(ctx->libev->getLoop(), &watcher);
|
67
|
+
if (mayAcceptInputLater()) {
|
68
|
+
consumedCallback = onChannelConsumed;
|
69
|
+
}
|
70
|
+
return;
|
71
|
+
}
|
72
|
+
|
73
|
+
for (i = 0; i < burstReadCount && !done; i++) {
|
74
|
+
if (buffer.empty()) {
|
75
|
+
buffer = MemoryKit::mbuf_get(&ctx->mbuf_pool);
|
76
|
+
}
|
77
|
+
|
78
|
+
origBufferSize = buffer.size();
|
79
|
+
do {
|
80
|
+
ret = ::read(watcher.fd, buffer.start, buffer.size());
|
81
|
+
} while (OXT_UNLIKELY(ret == -1 && errno == EINTR));
|
82
|
+
if (ret > 0) {
|
83
|
+
MemoryKit::mbuf buffer2(buffer, 0, ret);
|
84
|
+
if (size_t(ret) == size_t(buffer.size())) {
|
85
|
+
// Unref mbuf_block
|
86
|
+
buffer = MemoryKit::mbuf();
|
87
|
+
} else {
|
88
|
+
buffer = MemoryKit::mbuf(buffer, ret);
|
89
|
+
}
|
90
|
+
feedWithoutRefGuard(boost::move(buffer2));
|
91
|
+
if (generation != this->generation) {
|
92
|
+
// Callback deinitialized this object.
|
93
|
+
return;
|
94
|
+
}
|
95
|
+
|
96
|
+
if (!acceptingInput()) {
|
97
|
+
done = true;
|
98
|
+
ev_io_stop(ctx->libev->getLoop(), &watcher);
|
99
|
+
if (mayAcceptInputLater()) {
|
100
|
+
consumedCallback = onChannelConsumed;
|
101
|
+
}
|
102
|
+
} else {
|
103
|
+
// If we were unable to fill the entire buffer, then it's likely that
|
104
|
+
// the client is slow and that the next read() will fail with
|
105
|
+
// EAGAIN, so we stop looping and return to the event loop poller.
|
106
|
+
done = (size_t) ret < origBufferSize;
|
107
|
+
}
|
108
|
+
|
109
|
+
} else if (ret == 0) {
|
110
|
+
done = true;
|
111
|
+
ev_io_stop(ctx->libev->getLoop(), &watcher);
|
112
|
+
buffer = MemoryKit::mbuf();
|
113
|
+
feedWithoutRefGuard(MemoryKit::mbuf());
|
114
|
+
|
115
|
+
} else {
|
116
|
+
e = errno;
|
117
|
+
done = true;
|
118
|
+
buffer = MemoryKit::mbuf();
|
119
|
+
if (e != EAGAIN && e != EWOULDBLOCK) {
|
120
|
+
ev_io_stop(ctx->libev->getLoop(), &watcher);
|
121
|
+
feedError(e);
|
122
|
+
}
|
123
|
+
}
|
124
|
+
}
|
125
|
+
}
|
126
|
+
|
127
|
+
static void onChannelConsumed(Channel *channel, unsigned int size) {
|
128
|
+
FdSourceChannel *self = static_cast<FdSourceChannel *>(channel);
|
129
|
+
self->consumedCallback = NULL;
|
130
|
+
if (self->acceptingInput()) {
|
131
|
+
ev_io_start(self->ctx->libev->getLoop(), &self->watcher);
|
132
|
+
}
|
133
|
+
}
|
134
|
+
|
135
|
+
void initialize() {
|
136
|
+
burstReadCount = 1;
|
137
|
+
watcher.active = false;
|
138
|
+
watcher.fd = -1;
|
139
|
+
watcher.data = this;
|
140
|
+
}
|
141
|
+
|
142
|
+
public:
|
143
|
+
unsigned int burstReadCount;
|
144
|
+
|
145
|
+
FdSourceChannel() {
|
146
|
+
initialize();
|
147
|
+
}
|
148
|
+
|
149
|
+
FdSourceChannel(Context *context)
|
150
|
+
: Channel(context)
|
151
|
+
{
|
152
|
+
initialize();
|
153
|
+
}
|
154
|
+
|
155
|
+
~FdSourceChannel() {
|
156
|
+
if (ctx != NULL && ev_is_active(&watcher)) {
|
157
|
+
ev_io_stop(ctx->libev->getLoop(), &watcher);
|
158
|
+
}
|
159
|
+
}
|
160
|
+
|
161
|
+
// May only be called right after construction.
|
162
|
+
OXT_FORCE_INLINE
|
163
|
+
void setContext(Context *context) {
|
164
|
+
Channel::setContext(context);
|
165
|
+
}
|
166
|
+
|
167
|
+
void reinitialize(int fd) {
|
168
|
+
Channel::reinitialize();
|
169
|
+
ev_io_init(&watcher, _onReadable, fd, EV_READ);
|
170
|
+
}
|
171
|
+
|
172
|
+
void deinitialize() {
|
173
|
+
buffer = MemoryKit::mbuf();
|
174
|
+
if (ev_is_active(&watcher)) {
|
175
|
+
ev_io_stop(ctx->libev->getLoop(), &watcher);
|
176
|
+
}
|
177
|
+
watcher.fd = -1;
|
178
|
+
consumedCallback = NULL;
|
179
|
+
Channel::deinitialize();
|
180
|
+
}
|
181
|
+
|
182
|
+
// May only be called right after the constructor or reinitialize().
|
183
|
+
void startReading() {
|
184
|
+
startReadingInNextTick();
|
185
|
+
onReadableWithoutRefGuard();
|
186
|
+
}
|
187
|
+
|
188
|
+
// May only be called right after the constructor or reinitialize().
|
189
|
+
void startReadingInNextTick() {
|
190
|
+
assert(Channel::acceptingInput());
|
191
|
+
ev_io_start(ctx->libev->getLoop(), &watcher);
|
192
|
+
}
|
193
|
+
|
194
|
+
OXT_FORCE_INLINE
|
195
|
+
void start() {
|
196
|
+
Channel::start();
|
197
|
+
}
|
198
|
+
|
199
|
+
OXT_FORCE_INLINE
|
200
|
+
void stop() {
|
201
|
+
Channel::stop();
|
202
|
+
}
|
203
|
+
|
204
|
+
OXT_FORCE_INLINE
|
205
|
+
void consumed(unsigned int size, bool end) {
|
206
|
+
Channel::consumed(size, end);
|
207
|
+
}
|
208
|
+
|
209
|
+
OXT_FORCE_INLINE
|
210
|
+
int getFd() const {
|
211
|
+
return watcher.fd;
|
212
|
+
}
|
213
|
+
|
214
|
+
OXT_FORCE_INLINE
|
215
|
+
State getState() const {
|
216
|
+
return Channel::getState();
|
217
|
+
}
|
218
|
+
|
219
|
+
OXT_FORCE_INLINE
|
220
|
+
bool isStarted() const {
|
221
|
+
return Channel::isStarted();
|
222
|
+
}
|
223
|
+
|
224
|
+
OXT_FORCE_INLINE
|
225
|
+
void setDataCallback(DataCallback callback) {
|
226
|
+
Channel::dataCallback = callback;
|
227
|
+
}
|
228
|
+
|
229
|
+
OXT_FORCE_INLINE
|
230
|
+
Hooks *getHooks() const {
|
231
|
+
return hooks;
|
232
|
+
}
|
233
|
+
|
234
|
+
OXT_FORCE_INLINE
|
235
|
+
void setHooks(Hooks *hooks) {
|
236
|
+
this->hooks = hooks;
|
237
|
+
}
|
238
|
+
|
239
|
+
Json::Value inspectAsJson() const {
|
240
|
+
Json::Value doc = Channel::inspectAsJson();
|
241
|
+
doc["initialized"] = watcher.fd != -1;
|
242
|
+
doc["io_watcher_active"] = (bool) watcher.active;
|
243
|
+
return doc;
|
244
|
+
}
|
245
|
+
};
|
246
|
+
|
247
|
+
|
248
|
+
} // namespace ServerKit
|
249
|
+
} // namespace Passenger
|
250
|
+
|
251
|
+
#endif /* _PASSENGER_SERVER_KIT_FD_SOURCE_CHANNEL_H_ */
|
@@ -0,0 +1,1605 @@
|
|
1
|
+
/*
|
2
|
+
* Phusion Passenger - https://www.phusionpassenger.com/
|
3
|
+
* Copyright (c) 2014-2015 Phusion
|
4
|
+
*
|
5
|
+
* "Phusion Passenger" is a trademark of Hongli Lai & Ninh Bui.
|
6
|
+
*
|
7
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
8
|
+
* of this software and associated documentation files (the "Software"), to deal
|
9
|
+
* in the Software without restriction, including without limitation the rights
|
10
|
+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
11
|
+
* copies of the Software, and to permit persons to whom the Software is
|
12
|
+
* furnished to do so, subject to the following conditions:
|
13
|
+
*
|
14
|
+
* The above copyright notice and this permission notice shall be included in
|
15
|
+
* all copies or substantial portions of the Software.
|
16
|
+
*
|
17
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
18
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
19
|
+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
20
|
+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
21
|
+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
22
|
+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
23
|
+
* THE SOFTWARE.
|
24
|
+
*/
|
25
|
+
#ifndef _PASSENGER_SERVER_KIT_FILE_BUFFERED_CHANNEL_H_
|
26
|
+
#define _PASSENGER_SERVER_KIT_FILE_BUFFERED_CHANNEL_H_
|
27
|
+
|
28
|
+
#include <boost/cstdint.hpp>
|
29
|
+
#include <boost/shared_ptr.hpp>
|
30
|
+
#include <boost/make_shared.hpp>
|
31
|
+
#include <boost/move/move.hpp>
|
32
|
+
#include <boost/atomic.hpp>
|
33
|
+
#include <sys/types.h>
|
34
|
+
#include <uv.h>
|
35
|
+
#include <jsoncpp/json.h>
|
36
|
+
#include <cassert>
|
37
|
+
#include <cstddef>
|
38
|
+
#include <cstring>
|
39
|
+
#include <algorithm>
|
40
|
+
#include <utility>
|
41
|
+
#include <string>
|
42
|
+
#include <deque>
|
43
|
+
#include <Logging.h>
|
44
|
+
#include <ServerKit/Context.h>
|
45
|
+
#include <ServerKit/Errors.h>
|
46
|
+
#include <ServerKit/Channel.h>
|
47
|
+
#include <Utils/JsonUtils.h>
|
48
|
+
|
49
|
+
namespace Passenger {
|
50
|
+
namespace ServerKit {
|
51
|
+
|
52
|
+
using namespace std;
|
53
|
+
|
54
|
+
#define FBC_DEBUG(expr) \
|
55
|
+
P_TRACE(3, "[FBC " << (void *) this << "] " << expr)
|
56
|
+
#define FBC_DEBUG_WITH_POS(file, line, expr) \
|
57
|
+
P_TRACE_WITH_POS(3, file, line, "[FBC " << (void *) this << "] " << expr)
|
58
|
+
#define FBC_DEBUG_FROM_STATIC(expr) \
|
59
|
+
P_TRACE(3, "[FBC " << (void *) self << "] " << expr)
|
60
|
+
|
61
|
+
#define FBC_DEBUG_FROM_CALLBACK(context, expr) \
|
62
|
+
P_TRACE(3, "[FBC " << (void *) context->logbase << "] " << expr)
|
63
|
+
#define FBC_ERROR_FROM_CALLBACK(context, expr) \
|
64
|
+
P_ERROR("[FBC " << (void *) context->logbase << "] " << expr)
|
65
|
+
#define FBC_CRITICAL_FROM_CALLBACK(context, expr) \
|
66
|
+
P_CRITICAL("[FBC " << (void *) context->logbase << "] " << expr)
|
67
|
+
|
68
|
+
|
69
|
+
/**
|
70
|
+
* Adds "unlimited" buffering capability to a Channel. A Channel has a buffer size
|
71
|
+
* of 1, which is why you can't write to a Channel until the previously written
|
72
|
+
* data is consumed. But with FileBufferedChannel, everything you write to it
|
73
|
+
* is either buffered to memory, or to disk. If the total amount of buffered data is
|
74
|
+
* below a threshold, everything is buffered in memory. Beyond the threshold, buffered
|
75
|
+
* data will be written to disk and freed from memory. This allows you to buffer
|
76
|
+
* a virtually unlimited amount of data, without using a lot of memory.
|
77
|
+
*
|
78
|
+
* FileBufferedChannel operates by default in the in-memory mode. All data is buffered
|
79
|
+
* in memory. Beyond a threshold (determined by `passedThreshold()`), it switches
|
80
|
+
* to in-file mode.
|
81
|
+
*/
|
82
|
+
class FileBufferedChannel: protected Channel {
|
83
|
+
public:
|
84
|
+
/***** Types and constants *****/
|
85
|
+
|
86
|
+
enum Mode {
|
87
|
+
/**
|
88
|
+
* The default mode. The reader is responsible for switching from
|
89
|
+
* in-file mode to in-memory mode.
|
90
|
+
*/
|
91
|
+
IN_MEMORY_MODE,
|
92
|
+
|
93
|
+
/**
|
94
|
+
* The `feed()` method is responsible for switching to
|
95
|
+
* in-file mode.
|
96
|
+
*/
|
97
|
+
IN_FILE_MODE,
|
98
|
+
|
99
|
+
/**
|
100
|
+
* If either the reader or writer encountered an error, it will
|
101
|
+
* cancel everything and switch to the error mode.
|
102
|
+
*
|
103
|
+
* @invariant
|
104
|
+
* readerState == RS_TERMINATED
|
105
|
+
* inFileMode == NULL
|
106
|
+
*/
|
107
|
+
ERROR,
|
108
|
+
|
109
|
+
/**
|
110
|
+
* When switching to the error made, an attempt is made to pass the
|
111
|
+
* error to the data callback. If the previous data callback isn't
|
112
|
+
* finsihed yet, then we'll switch to this state, wait until it
|
113
|
+
* becomes idle, then feed the error and switch to ERROR.
|
114
|
+
*
|
115
|
+
* @invariant
|
116
|
+
* readerState == RS_TERMINATED
|
117
|
+
* inFileMode == NULL
|
118
|
+
*/
|
119
|
+
ERROR_WAITING
|
120
|
+
};
|
121
|
+
|
122
|
+
enum ReaderState {
|
123
|
+
/** The reader isn't active. It will be activated next time a buffer
|
124
|
+
* is pushed to the queue.
|
125
|
+
*/
|
126
|
+
RS_INACTIVE,
|
127
|
+
|
128
|
+
/**
|
129
|
+
* The reader is feeding a buffer to the underlying channel.
|
130
|
+
*/
|
131
|
+
RS_FEEDING,
|
132
|
+
|
133
|
+
/**
|
134
|
+
* The reader is feeding an empty buffer to the underlying channel.
|
135
|
+
*/
|
136
|
+
RS_FEEDING_EOF,
|
137
|
+
|
138
|
+
/**
|
139
|
+
* The reader has just fed a buffer to the underlying channel,
|
140
|
+
* and is waiting for it to become idle.
|
141
|
+
*
|
142
|
+
* Invariant:
|
143
|
+
*
|
144
|
+
* mode < ERROR
|
145
|
+
*/
|
146
|
+
RS_WAITING_FOR_CHANNEL_IDLE,
|
147
|
+
|
148
|
+
/** The reader is reading from the file.
|
149
|
+
*
|
150
|
+
* Invariant:
|
151
|
+
*
|
152
|
+
* mode == IN_FILE_MODE
|
153
|
+
* inFileMode->readRequest != NULL
|
154
|
+
* inFileMode->written > 0
|
155
|
+
*/
|
156
|
+
RS_READING_FROM_FILE,
|
157
|
+
|
158
|
+
/**
|
159
|
+
* The reader has encountered EOF or an error. It cannot be reactivated
|
160
|
+
* until the FileBufferedChannel is deinitialized and reinitialized.
|
161
|
+
*/
|
162
|
+
RS_TERMINATED
|
163
|
+
};
|
164
|
+
|
165
|
+
enum WriterState {
|
166
|
+
/**
|
167
|
+
* The writer isn't active. It will be activated next time
|
168
|
+
* `feed()` notices that the threshold has passed.
|
169
|
+
*
|
170
|
+
* @invariant !passedThreshold()
|
171
|
+
*/
|
172
|
+
WS_INACTIVE,
|
173
|
+
|
174
|
+
/**
|
175
|
+
* The writer is creating a file.
|
176
|
+
*
|
177
|
+
* @invariant passedThreshold()
|
178
|
+
*/
|
179
|
+
WS_CREATING_FILE,
|
180
|
+
|
181
|
+
/**
|
182
|
+
* The writer is moving buffers to the file. It transitions to WS_INACTIVE
|
183
|
+
* when there are no more buffers to move.
|
184
|
+
*
|
185
|
+
* @invariant nbuffers > 0
|
186
|
+
*/
|
187
|
+
WS_MOVING,
|
188
|
+
|
189
|
+
/**
|
190
|
+
* The writer has encountered EOF or an error. It cannot be reactivated
|
191
|
+
* until the FileBufferedChannel is deinitialized and reinitialized.
|
192
|
+
*/
|
193
|
+
WS_TERMINATED
|
194
|
+
};
|
195
|
+
|
196
|
+
typedef Channel::DataCallback DataCallback;
|
197
|
+
typedef void (*Callback)(FileBufferedChannel *channel);
|
198
|
+
|
199
|
+
// 2^32-1 bytes.
|
200
|
+
static const unsigned int MAX_MEMORY_BUFFERING = 4294967295u;
|
201
|
+
// `nbuffers` is 27-bit. This is 2^27-1.
|
202
|
+
static const unsigned int MAX_BUFFERS = 134217727;
|
203
|
+
|
204
|
+
|
205
|
+
private:
|
206
|
+
/**
|
207
|
+
* A structure containing the details of a libuv asynchronous
|
208
|
+
* filesystem I/O request.
|
209
|
+
*
|
210
|
+
* The I/O callback is responsible for destroying its corresponding
|
211
|
+
* FileIOContext object.
|
212
|
+
*/
|
213
|
+
struct FileIOContext {
|
214
|
+
/**
|
215
|
+
* A back pointer to the FileBufferedChannel that created this
|
216
|
+
* IOContext.
|
217
|
+
*
|
218
|
+
* This pointer is set to NULL when this I/O operation is
|
219
|
+
* canceled (through the `cancel()` method). Cancelation
|
220
|
+
* occurs when the FileBufferedChannel is about to be deinitialized.
|
221
|
+
* So be sure to check for cancellation (using `isCanceled`)
|
222
|
+
* before using the backpointer.
|
223
|
+
*/
|
224
|
+
FileBufferedChannel *self;
|
225
|
+
/**
|
226
|
+
* Pointers to the libev and libuv loops that this FileBufferedChannel
|
227
|
+
* used. We keep the pointers here so that callbacks can perform
|
228
|
+
* asynchronous I/O operations as part of their cleanup, even in the
|
229
|
+
* event the original I/O operation is canceled.
|
230
|
+
*
|
231
|
+
* I/O callbacks do not have to worry about whether these pointers are
|
232
|
+
* stale, because callbacks are run inside the event loop, and we stop the
|
233
|
+
* event loop before destryoing it.
|
234
|
+
*/
|
235
|
+
SafeLibevPtr libev;
|
236
|
+
uv_loop_t *libuv;
|
237
|
+
/* req.data always refers back to the FileIOContext object itself. */
|
238
|
+
uv_fs_t req;
|
239
|
+
|
240
|
+
/**
|
241
|
+
* Also a pointer to the FileBufferedChannel, but this is used for
|
242
|
+
* logging purposes inside callbacks (see FBC_DEBUG_FROM_CALLBACK).
|
243
|
+
* This pointer is never set to NULL, may be still, and is never
|
244
|
+
* followed.
|
245
|
+
*/
|
246
|
+
void *logbase;
|
247
|
+
|
248
|
+
FileIOContext(FileBufferedChannel *_self)
|
249
|
+
: self(_self),
|
250
|
+
libev(_self->ctx->libev),
|
251
|
+
libuv(_self->ctx->libuv),
|
252
|
+
logbase(_self)
|
253
|
+
{
|
254
|
+
req.type = UV_UNKNOWN_REQ;
|
255
|
+
req.result = -1;
|
256
|
+
req.data = this;
|
257
|
+
}
|
258
|
+
|
259
|
+
virtual ~FileIOContext() { }
|
260
|
+
|
261
|
+
void cancel() {
|
262
|
+
if (!isCanceled()) {
|
263
|
+
// uv_cancel() fails if the work is already in progress
|
264
|
+
// or completed, so we set self to NULL as an extra
|
265
|
+
// indicator that this I/O operation is canceled.
|
266
|
+
uv_cancel((uv_req_t *) &req);
|
267
|
+
self = NULL;
|
268
|
+
}
|
269
|
+
}
|
270
|
+
|
271
|
+
/**
|
272
|
+
* Checks whether this I/O operation has been canceled.
|
273
|
+
* Note that the libuv request may not have been canceled
|
274
|
+
* because it was already executing at the time `cancel()`
|
275
|
+
* was called. So after you've checked that `isCanceled()`
|
276
|
+
* returns true, you must also cleanup any potential finished
|
277
|
+
* work in `req`.
|
278
|
+
*/
|
279
|
+
bool isCanceled() const {
|
280
|
+
return self == NULL || req.result == UV_ECANCELED;
|
281
|
+
}
|
282
|
+
};
|
283
|
+
|
284
|
+
struct ReadContext;
|
285
|
+
|
286
|
+
/**
|
287
|
+
* Holds all states for the in-file mode. Reasons why this is a separate
|
288
|
+
* structure:
|
289
|
+
*
|
290
|
+
* - We can keep the size of the FileBufferedChannel small for the common,
|
291
|
+
* fast case where the consumer can keep up with the writes.
|
292
|
+
* - We improve the clarity of the code by clearly grouping variables
|
293
|
+
* that are only used in the in-file mode.
|
294
|
+
* - While libuv operations are in progress, they hold a smart pointer to the
|
295
|
+
* InFileMode structure, which ensures that the file descriptor that they
|
296
|
+
* operate on stays open until all libuv operations have finished (or until
|
297
|
+
* their cancellation have been acknowledged by their callbacks).
|
298
|
+
*
|
299
|
+
* The variables inside this structure point to different places in the file:
|
300
|
+
*
|
301
|
+
* +------------------------+
|
302
|
+
* | |
|
303
|
+
* | already read |
|
304
|
+
* | |
|
305
|
+
* +------------------------+ <------ readOffset
|
306
|
+
* | | \
|
307
|
+
* | written but not read | |----- written
|
308
|
+
* | | /
|
309
|
+
* +------------------------+ <------ readOffset + written
|
310
|
+
* | buffer being written | --+
|
311
|
+
* +------------------------+ |
|
312
|
+
* | unwritten buffer 1 | |
|
313
|
+
* +------------------------+ |
|
314
|
+
* | unwritten buffer 2 | |---- nbuffers,
|
315
|
+
* +------------------------+ | bytesBuffered
|
316
|
+
* | .... | --+
|
317
|
+
* +------------------------+
|
318
|
+
*/
|
319
|
+
struct InFileMode {
|
320
|
+
/***** Common state *****/
|
321
|
+
|
322
|
+
/**
|
323
|
+
* The libuv loop associated with the FileBufferedChannel.
|
324
|
+
*/
|
325
|
+
uv_loop_t *libuv;
|
326
|
+
|
327
|
+
/**
|
328
|
+
* The file descriptor of the temp file. It's -1 if the file is being
|
329
|
+
* created.
|
330
|
+
*/
|
331
|
+
int fd;
|
332
|
+
|
333
|
+
|
334
|
+
/***** Reader state *****/
|
335
|
+
|
336
|
+
/**
|
337
|
+
* The read operation that the reader is currently performing.
|
338
|
+
*
|
339
|
+
* @invariant
|
340
|
+
* (readRequest != NULL) == (readerState == RS_READING_FROM_FILE)
|
341
|
+
*/
|
342
|
+
ReadContext *readRequest;
|
343
|
+
|
344
|
+
|
345
|
+
/***** Writer state *****/
|
346
|
+
|
347
|
+
WriterState writerState;
|
348
|
+
|
349
|
+
/**
|
350
|
+
* The write operation that the writer is currently performing. Might be
|
351
|
+
* an `uv_fs_open()`, `uv_fs_write()`, or whatever.
|
352
|
+
*
|
353
|
+
* @invariant
|
354
|
+
* (writerRequest != NULL) == (writerState == WS_CREATING_FILE || writerState == WS_MOVING)
|
355
|
+
*/
|
356
|
+
FileIOContext *writerRequest;
|
357
|
+
|
358
|
+
/**
|
359
|
+
* Number of bytes already read from the file by the reader.
|
360
|
+
*/
|
361
|
+
off_t readOffset;
|
362
|
+
/**
|
363
|
+
* Number of bytes written to the file by the writer (relative to `readOffset`),
|
364
|
+
* but not yet read by the reader.
|
365
|
+
*
|
366
|
+
* `written` can be _negative_, which means that the writer is still writing buffers to
|
367
|
+
* the file, but the reader has already fed one or more of those still-being-written
|
368
|
+
* buffers to the underlying channel.
|
369
|
+
*
|
370
|
+
* @invariant
|
371
|
+
* if written < 0:
|
372
|
+
* nbuffers > 0
|
373
|
+
*/
|
374
|
+
boost::int64_t written;
|
375
|
+
|
376
|
+
InFileMode(uv_loop_t *_libuv)
|
377
|
+
: libuv(_libuv),
|
378
|
+
fd(-1),
|
379
|
+
readRequest(NULL),
|
380
|
+
writerState(WS_INACTIVE),
|
381
|
+
writerRequest(NULL),
|
382
|
+
readOffset(0),
|
383
|
+
written(0)
|
384
|
+
{ }
|
385
|
+
|
386
|
+
~InFileMode() {
|
387
|
+
P_ASSERT_EQ(readRequest, 0);
|
388
|
+
P_ASSERT_EQ(writerRequest, 0);
|
389
|
+
if (fd != -1) {
|
390
|
+
closeFdInBackground();
|
391
|
+
}
|
392
|
+
}
|
393
|
+
|
394
|
+
void closeFdInBackground() {
|
395
|
+
uv_fs_t *req = (uv_fs_t *) malloc(sizeof(uv_fs_t));
|
396
|
+
if (req == NULL) {
|
397
|
+
P_CRITICAL("Cannot close file descriptor for FileBufferedChannel temp file: "
|
398
|
+
"cannot allocate memory for necessary temporary data structure");
|
399
|
+
abort();
|
400
|
+
}
|
401
|
+
|
402
|
+
int result = uv_fs_close(libuv, req, fd, fileClosed);
|
403
|
+
if (result != 0) {
|
404
|
+
P_CRITICAL("Cannot close file descriptor for FileBufferedChannel temp file: "
|
405
|
+
"cannot initiate I/O operation: "
|
406
|
+
<< uv_strerror(result) << " (errno=" << -result << ")");
|
407
|
+
abort();
|
408
|
+
}
|
409
|
+
}
|
410
|
+
|
411
|
+
static void fileClosed(uv_fs_t *req) {
|
412
|
+
P_LOG_FILE_DESCRIPTOR_CLOSE(req->file);
|
413
|
+
uv_fs_req_cleanup(req);
|
414
|
+
free(req);
|
415
|
+
}
|
416
|
+
};
|
417
|
+
|
418
|
+
FileBufferedChannelConfig *config;
|
419
|
+
Mode mode: 2;
|
420
|
+
ReaderState readerState: 3;
|
421
|
+
/** Number of buffers in `firstBuffer` + `moreBuffers`. */
|
422
|
+
unsigned int nbuffers: 27;
|
423
|
+
|
424
|
+
/**
|
425
|
+
* If an error is encountered, its details are stored here.
|
426
|
+
*
|
427
|
+
* @invariant
|
428
|
+
* (errcode == 0) == (mode < ERROR)
|
429
|
+
*/
|
430
|
+
int errcode;
|
431
|
+
|
432
|
+
/**
|
433
|
+
* `firstBuffer` and `moreBuffers` together form a queue of buffers for the reader
|
434
|
+
* and the writer to process.
|
435
|
+
*
|
436
|
+
* A deque allocates memory on the heap. In the common case where the channel callback
|
437
|
+
* can keep up with the writes, we don't want to have any dynamic memory allocation
|
438
|
+
* at all. That's why we store the first buffer in an instance variable. Only when
|
439
|
+
* there is more than 1 buffer do we use the deque.
|
440
|
+
*
|
441
|
+
* Buffers are pushed to end of the queue, and popped from the beginning. In the in-memory
|
442
|
+
* mode, the reader is responsible for popping buffers. In the in-file mode, the writer
|
443
|
+
* is responsible for popping buffers (and writing them to the file).
|
444
|
+
*/
|
445
|
+
boost::uint32_t bytesBuffered;
|
446
|
+
MemoryKit::mbuf firstBuffer;
|
447
|
+
deque<MemoryKit::mbuf> moreBuffers;
|
448
|
+
|
449
|
+
/**
|
450
|
+
* @invariant
|
451
|
+
* (inFileMode != NULL) == (mode == IN_FILE_MODE)
|
452
|
+
*/
|
453
|
+
boost::shared_ptr<InFileMode> inFileMode;
|
454
|
+
|
455
|
+
|
456
|
+
/***** Buffer manipulation *****/
|
457
|
+
|
458
|
+
void clearBuffers(bool mayCallCallbacks) {
|
459
|
+
unsigned int oldNbuffers = nbuffers;
|
460
|
+
nbuffers = 0;
|
461
|
+
bytesBuffered = 0;
|
462
|
+
firstBuffer = MemoryKit::mbuf();
|
463
|
+
if (!moreBuffers.empty()) {
|
464
|
+
// Some STL implementations, like OS X's, iterate through
|
465
|
+
// the deque in its clear() implementation, so adding
|
466
|
+
// a conditional here improves performance slightly.
|
467
|
+
moreBuffers.clear();
|
468
|
+
}
|
469
|
+
if (mayCallCallbacks && oldNbuffers != 0) {
|
470
|
+
callBuffersFlushedCallback();
|
471
|
+
}
|
472
|
+
}
|
473
|
+
|
474
|
+
void pushBuffer(const MemoryKit::mbuf &buffer) {
|
475
|
+
assert(bytesBuffered + buffer.size() <= MAX_MEMORY_BUFFERING);
|
476
|
+
assert(nbuffers < MAX_BUFFERS);
|
477
|
+
if (nbuffers == 0) {
|
478
|
+
firstBuffer = buffer;
|
479
|
+
} else {
|
480
|
+
moreBuffers.push_back(buffer);
|
481
|
+
}
|
482
|
+
nbuffers++;
|
483
|
+
bytesBuffered += buffer.size();
|
484
|
+
FBC_DEBUG("pushBuffer() completed: nbuffers = " << nbuffers << ", bytesBuffered = " << bytesBuffered);
|
485
|
+
}
|
486
|
+
|
487
|
+
void popBuffer() {
|
488
|
+
assert(bytesBuffered >= firstBuffer.size());
|
489
|
+
bytesBuffered -= firstBuffer.size();
|
490
|
+
nbuffers--;
|
491
|
+
FBC_DEBUG("popBuffer() completed: nbuffers = " << nbuffers << ", bytesBuffered = " << bytesBuffered);
|
492
|
+
if (moreBuffers.empty()) {
|
493
|
+
firstBuffer = MemoryKit::mbuf();
|
494
|
+
P_ASSERT_EQ(nbuffers, 0);
|
495
|
+
callBuffersFlushedCallback();
|
496
|
+
} else {
|
497
|
+
firstBuffer = moreBuffers.front();
|
498
|
+
moreBuffers.pop_front();
|
499
|
+
}
|
500
|
+
}
|
501
|
+
|
502
|
+
OXT_FORCE_INLINE
|
503
|
+
bool hasBuffers() const {
|
504
|
+
return nbuffers > 0;
|
505
|
+
}
|
506
|
+
|
507
|
+
OXT_FORCE_INLINE
|
508
|
+
MemoryKit::mbuf &peekBuffer() {
|
509
|
+
return firstBuffer;
|
510
|
+
}
|
511
|
+
|
512
|
+
MemoryKit::mbuf &peekLastBuffer() {
|
513
|
+
if (nbuffers <= 1) {
|
514
|
+
return firstBuffer;
|
515
|
+
} else {
|
516
|
+
return moreBuffers.back();
|
517
|
+
}
|
518
|
+
}
|
519
|
+
|
520
|
+
const MemoryKit::mbuf &peekLastBuffer() const {
|
521
|
+
if (nbuffers <= 1) {
|
522
|
+
return firstBuffer;
|
523
|
+
} else {
|
524
|
+
return moreBuffers.back();
|
525
|
+
}
|
526
|
+
}
|
527
|
+
|
528
|
+
void callBuffersFlushedCallback() {
|
529
|
+
if (buffersFlushedCallback != NULL) {
|
530
|
+
FBC_DEBUG("Calling buffersFlushedCallback");
|
531
|
+
buffersFlushedCallback(this);
|
532
|
+
}
|
533
|
+
}
|
534
|
+
|
535
|
+
void callDataFlushedCallback() {
|
536
|
+
if (dataFlushedCallback != NULL) {
|
537
|
+
FBC_DEBUG("Calling dataFlushedCallback");
|
538
|
+
dataFlushedCallback(this);
|
539
|
+
}
|
540
|
+
}
|
541
|
+
|
542
|
+
|
543
|
+
/***** Reader *****/
|
544
|
+
|
545
|
+
void readNext() {
|
546
|
+
RefGuard guard(hooks, this, __FILE__, __LINE__);
|
547
|
+
readNextWithoutRefGuard();
|
548
|
+
}
|
549
|
+
|
550
|
+
void readNextWithoutRefGuard() {
|
551
|
+
begin:
|
552
|
+
FBC_DEBUG("Reader: reading next");
|
553
|
+
P_ASSERT_EQ(Channel::state, IDLE);
|
554
|
+
unsigned int generation = this->generation;
|
555
|
+
|
556
|
+
switch (mode) {
|
557
|
+
case IN_MEMORY_MODE:
|
558
|
+
if (!hasBuffers()) {
|
559
|
+
FBC_DEBUG("Reader: no more buffers. Transitioning to RS_INACTIVE");
|
560
|
+
readerState = RS_INACTIVE;
|
561
|
+
verifyInvariants();
|
562
|
+
callDataFlushedCallback();
|
563
|
+
} else if (peekBuffer().empty()) {
|
564
|
+
FBC_DEBUG("Reader: EOF encountered. Feeding EOF");
|
565
|
+
readerState = RS_FEEDING_EOF;
|
566
|
+
verifyInvariants();
|
567
|
+
{
|
568
|
+
// Make a copy of the buffer so that if the callback calls
|
569
|
+
// deinitialize(), it won't suddenly reset the buffer argument.
|
570
|
+
MemoryKit::mbuf buffer(peekBuffer());
|
571
|
+
Channel::feedWithoutRefGuard(buffer);
|
572
|
+
}
|
573
|
+
if (generation != this->generation || mode >= ERROR) {
|
574
|
+
// Callback deinitialized this object, or callback
|
575
|
+
// called a method that encountered an error.
|
576
|
+
return;
|
577
|
+
}
|
578
|
+
P_ASSERT_EQ(readerState, RS_FEEDING_EOF);
|
579
|
+
verifyInvariants();
|
580
|
+
FBC_DEBUG("Reader: EOF fed. Transitioning to RS_TERMINATED");
|
581
|
+
terminateReaderBecauseOfEOF();
|
582
|
+
} else {
|
583
|
+
MemoryKit::mbuf buffer(peekBuffer());
|
584
|
+
FBC_DEBUG("Reader: found buffer, " << buffer.size() << " bytes");
|
585
|
+
popBuffer();
|
586
|
+
if (generation != this->generation || mode >= ERROR) {
|
587
|
+
// buffersFlushedCallback deinitialized this object, or callback
|
588
|
+
// called a method that encountered an error.
|
589
|
+
return;
|
590
|
+
}
|
591
|
+
readerState = RS_FEEDING;
|
592
|
+
FBC_DEBUG("Reader: feeding buffer, " << buffer.size() << " bytes");
|
593
|
+
Channel::feedWithoutRefGuard(buffer);
|
594
|
+
if (generation != this->generation || mode >= ERROR) {
|
595
|
+
// Callback deinitialized this object, or callback
|
596
|
+
// called a method that encountered an error.
|
597
|
+
return;
|
598
|
+
}
|
599
|
+
P_ASSERT_EQ(readerState, RS_FEEDING);
|
600
|
+
verifyInvariants();
|
601
|
+
if (acceptingInput()) {
|
602
|
+
goto begin;
|
603
|
+
} else if (mayAcceptInputLater()) {
|
604
|
+
readNextWhenChannelIdle();
|
605
|
+
} else {
|
606
|
+
FBC_DEBUG("Reader: data callback no longer accepts further data");
|
607
|
+
terminateReaderBecauseOfEOF();
|
608
|
+
}
|
609
|
+
}
|
610
|
+
break;
|
611
|
+
case IN_FILE_MODE:
|
612
|
+
if (inFileMode->written > 0) {
|
613
|
+
// The file contains unread data. Read from
|
614
|
+
// file and feed to underlying channel.
|
615
|
+
readNextChunkFromFile();
|
616
|
+
} else {
|
617
|
+
// The file contains no unread data. Read next buffer
|
618
|
+
// from memory.
|
619
|
+
pair<MemoryKit::mbuf, bool> result = findBufferForReadProcessing();
|
620
|
+
|
621
|
+
if (!result.second) {
|
622
|
+
readerState = RS_INACTIVE;
|
623
|
+
if (config->autoTruncateFile) {
|
624
|
+
FBC_DEBUG("Reader: no more buffers. Transitioning to RS_INACTIVE, truncating file");
|
625
|
+
switchToInMemoryMode();
|
626
|
+
if (generation != this->generation || mode >= ERROR) {
|
627
|
+
// Callback deinitialized this object, or callback
|
628
|
+
// called a method that encountered an error.
|
629
|
+
return;
|
630
|
+
}
|
631
|
+
} else {
|
632
|
+
FBC_DEBUG("Reader: no more buffers. Transitioning to RS_INACTIVE, "
|
633
|
+
"not truncating file because config->autoTruncateFile is turned off");
|
634
|
+
}
|
635
|
+
verifyInvariants();
|
636
|
+
callDataFlushedCallback();
|
637
|
+
} else if (result.first.empty()) {
|
638
|
+
FBC_DEBUG("Reader: EOF encountered. Feeding EOF");
|
639
|
+
readerState = RS_FEEDING_EOF;
|
640
|
+
verifyInvariants();
|
641
|
+
Channel::feedWithoutRefGuard(result.first);
|
642
|
+
if (generation != this->generation || mode >= ERROR) {
|
643
|
+
// Callback deinitialized this object, or callback
|
644
|
+
// called a method that encountered an error.
|
645
|
+
return;
|
646
|
+
}
|
647
|
+
P_ASSERT_EQ(readerState, RS_FEEDING_EOF);
|
648
|
+
verifyInvariants();
|
649
|
+
FBC_DEBUG("Reader: EOF fed. Transitioning to RS_TERMINATED");
|
650
|
+
terminateReaderBecauseOfEOF();
|
651
|
+
} else {
|
652
|
+
FBC_DEBUG("Reader: found buffer, " << result.first.size() << " bytes");
|
653
|
+
inFileMode->readOffset += result.first.size();
|
654
|
+
inFileMode->written -= result.first.size();
|
655
|
+
readerState = RS_FEEDING;
|
656
|
+
FBC_DEBUG("Reader: feeding buffer, " << result.first.size() << " bytes");
|
657
|
+
Channel::feedWithoutRefGuard(result.first);
|
658
|
+
if (generation != this->generation || mode >= ERROR) {
|
659
|
+
// Callback deinitialized this object, or callback
|
660
|
+
// called a method that encountered an error.
|
661
|
+
return;
|
662
|
+
}
|
663
|
+
P_ASSERT_EQ(readerState, RS_FEEDING);
|
664
|
+
verifyInvariants();
|
665
|
+
if (acceptingInput()) {
|
666
|
+
goto begin;
|
667
|
+
} else if (mayAcceptInputLater()) {
|
668
|
+
readNextWhenChannelIdle();
|
669
|
+
} else {
|
670
|
+
FBC_DEBUG("Reader: data callback no longer accepts further data");
|
671
|
+
terminateReaderBecauseOfEOF();
|
672
|
+
}
|
673
|
+
}
|
674
|
+
}
|
675
|
+
break;
|
676
|
+
case ERROR:
|
677
|
+
case ERROR_WAITING:
|
678
|
+
P_BUG("Should never be reached");
|
679
|
+
break;
|
680
|
+
}
|
681
|
+
}
|
682
|
+
|
683
|
+
void terminateReaderBecauseOfEOF() {
|
684
|
+
readerState = RS_TERMINATED;
|
685
|
+
verifyInvariants();
|
686
|
+
callDataFlushedCallback();
|
687
|
+
}
|
688
|
+
|
689
|
+
void readNextWhenChannelIdle() {
|
690
|
+
FBC_DEBUG("Reader: waiting for underlying channel to become idle");
|
691
|
+
readerState = RS_WAITING_FOR_CHANNEL_IDLE;
|
692
|
+
verifyInvariants();
|
693
|
+
}
|
694
|
+
|
695
|
+
void channelHasBecomeIdle() {
|
696
|
+
FBC_DEBUG("Reader: underlying channel has become idle");
|
697
|
+
verifyInvariants();
|
698
|
+
readNext();
|
699
|
+
}
|
700
|
+
|
701
|
+
void channelEndedWhileWaitingForItToBecomeIdle() {
|
702
|
+
if (hasError()) {
|
703
|
+
FBC_DEBUG("Reader: error encountered while waiting for underlying channel to become idle");
|
704
|
+
} else {
|
705
|
+
FBC_DEBUG("Reader: underlying channel ended while waiting for it to become idle");
|
706
|
+
}
|
707
|
+
terminateReaderBecauseOfEOF();
|
708
|
+
}
|
709
|
+
|
710
|
+
struct ReadContext: public FileIOContext {
|
711
|
+
MemoryKit::mbuf buffer;
|
712
|
+
uv_buf_t uvBuffer;
|
713
|
+
// Smart pointer to keep fd open until libuv operation
|
714
|
+
// is finished.
|
715
|
+
boost::shared_ptr<InFileMode> inFileMode;
|
716
|
+
|
717
|
+
ReadContext(FileBufferedChannel *self)
|
718
|
+
: FileIOContext(self)
|
719
|
+
{ }
|
720
|
+
};
|
721
|
+
|
722
|
+
void readNextChunkFromFile() {
|
723
|
+
assert(inFileMode->written > 0);
|
724
|
+
size_t size = std::min<size_t>(inFileMode->written,
|
725
|
+
mbuf_pool_data_size(&ctx->mbuf_pool));
|
726
|
+
if (config->maxDiskChunkReadSize > 0 && size > config->maxDiskChunkReadSize) {
|
727
|
+
size = config->maxDiskChunkReadSize;
|
728
|
+
}
|
729
|
+
FBC_DEBUG("Reader: reading next chunk from file, " << size << " bytes");
|
730
|
+
verifyInvariants();
|
731
|
+
ReadContext *readContext = new ReadContext(this);
|
732
|
+
readContext->buffer = MemoryKit::mbuf_get(&ctx->mbuf_pool);
|
733
|
+
readContext->inFileMode = inFileMode;
|
734
|
+
readContext->uvBuffer = uv_buf_init(readContext->buffer.start, size);
|
735
|
+
readerState = RS_READING_FROM_FILE;
|
736
|
+
inFileMode->readRequest = readContext;
|
737
|
+
|
738
|
+
uv_fs_read(ctx->libuv, &readContext->req, inFileMode->fd,
|
739
|
+
&readContext->uvBuffer, 1, inFileMode->readOffset,
|
740
|
+
_nextChunkDoneReading);
|
741
|
+
verifyInvariants();
|
742
|
+
}
|
743
|
+
|
744
|
+
static void _nextChunkDoneReading(uv_fs_t *req) {
|
745
|
+
ReadContext *readContext = (ReadContext *) req->data;
|
746
|
+
uv_fs_req_cleanup(req);
|
747
|
+
if (readContext->isCanceled()) {
|
748
|
+
delete readContext;
|
749
|
+
return;
|
750
|
+
}
|
751
|
+
|
752
|
+
readContext->self->nextChunkDoneReading(readContext);
|
753
|
+
}
|
754
|
+
|
755
|
+
void nextChunkDoneReading(ReadContext *readContext) {
|
756
|
+
RefGuard guard(hooks, this, __FILE__, __LINE__);
|
757
|
+
|
758
|
+
FBC_DEBUG("Reader: done reading chunk");
|
759
|
+
P_ASSERT_EQ(readerState, RS_READING_FROM_FILE);
|
760
|
+
verifyInvariants();
|
761
|
+
MemoryKit::mbuf buffer(boost::move(readContext->buffer));
|
762
|
+
delete readContext;
|
763
|
+
inFileMode->readRequest = NULL;
|
764
|
+
|
765
|
+
if (readContext->req.result >= 0) {
|
766
|
+
int fd = readContext->req.result;
|
767
|
+
unsigned int generation = this->generation;
|
768
|
+
|
769
|
+
assert(fd <= inFileMode->written);
|
770
|
+
buffer = MemoryKit::mbuf(buffer, 0, fd);
|
771
|
+
inFileMode->readOffset += buffer.size();
|
772
|
+
inFileMode->written -= buffer.size();
|
773
|
+
|
774
|
+
FBC_DEBUG("Reader: feeding buffer, " << buffer.size() << " bytes");
|
775
|
+
readerState = RS_FEEDING;
|
776
|
+
Channel::feedWithoutRefGuard(buffer);
|
777
|
+
if (generation != this->generation || mode >= ERROR) {
|
778
|
+
// Callback deinitialized this object, or callback
|
779
|
+
// called a method that encountered an error.
|
780
|
+
return;
|
781
|
+
}
|
782
|
+
P_ASSERT_EQ(readerState, RS_FEEDING);
|
783
|
+
verifyInvariants();
|
784
|
+
if (acceptingInput()) {
|
785
|
+
readNext();
|
786
|
+
} else if (mayAcceptInputLater()) {
|
787
|
+
readNextWhenChannelIdle();
|
788
|
+
} else {
|
789
|
+
FBC_DEBUG("Reader: data callback no longer accepts further data");
|
790
|
+
terminateReaderBecauseOfEOF();
|
791
|
+
}
|
792
|
+
} else {
|
793
|
+
int errcode = -readContext->req.result;
|
794
|
+
setError(errcode, __FILE__, __LINE__);
|
795
|
+
}
|
796
|
+
}
|
797
|
+
|
798
|
+
// Returns (mbuf, found).
|
799
|
+
pair<MemoryKit::mbuf, bool> findBufferForReadProcessing() {
|
800
|
+
P_ASSERT_EQ(mode, IN_FILE_MODE);
|
801
|
+
|
802
|
+
if (nbuffers == 0) {
|
803
|
+
return make_pair(MemoryKit::mbuf(), false);
|
804
|
+
}
|
805
|
+
|
806
|
+
boost::int32_t target = -inFileMode->written;
|
807
|
+
boost::int32_t offset = 0;
|
808
|
+
deque<MemoryKit::mbuf>::iterator it, end = moreBuffers.end();
|
809
|
+
|
810
|
+
if (offset == target) {
|
811
|
+
return make_pair(firstBuffer, true);
|
812
|
+
}
|
813
|
+
|
814
|
+
it = moreBuffers.begin();
|
815
|
+
offset += firstBuffer.size();
|
816
|
+
while (it != end) {
|
817
|
+
if (offset == target || it->empty()) {
|
818
|
+
return make_pair(*it, true);
|
819
|
+
} else {
|
820
|
+
offset += it->size();
|
821
|
+
it++;
|
822
|
+
}
|
823
|
+
}
|
824
|
+
|
825
|
+
return make_pair(MemoryKit::mbuf(), false);
|
826
|
+
}
|
827
|
+
|
828
|
+
|
829
|
+
/***** Switching to or resetting in-file mode *****/
|
830
|
+
|
831
|
+
void switchToInFileMode() {
|
832
|
+
P_ASSERT_EQ(mode, IN_MEMORY_MODE);
|
833
|
+
P_ASSERT_EQ(inFileMode, 0);
|
834
|
+
|
835
|
+
FBC_DEBUG("Switching to in-file mode");
|
836
|
+
mode = IN_FILE_MODE;
|
837
|
+
inFileMode = boost::make_shared<InFileMode>(ctx->libuv);
|
838
|
+
createBufferFile();
|
839
|
+
}
|
840
|
+
|
841
|
+
/**
|
842
|
+
* "Truncates" the the temp file by closing it and creating
|
843
|
+
* a new one, instead of calling `ftruncate()` or something.
|
844
|
+
* This way, any pending I/O operations in the background won't
|
845
|
+
* affect correctness.
|
846
|
+
*
|
847
|
+
* This method may call callbacks.
|
848
|
+
*/
|
849
|
+
void switchToInMemoryMode() {
|
850
|
+
P_ASSERT_EQ(mode, IN_FILE_MODE);
|
851
|
+
assert(inFileMode->written <= 0);
|
852
|
+
|
853
|
+
FBC_DEBUG("Recreating file, switching to in-memory mode");
|
854
|
+
cancelWriter();
|
855
|
+
mode = IN_MEMORY_MODE;
|
856
|
+
inFileMode.reset();
|
857
|
+
clearBuffers(true);
|
858
|
+
}
|
859
|
+
|
860
|
+
|
861
|
+
/***** File creator *****/
|
862
|
+
|
863
|
+
struct FileCreationContext: public FileIOContext {
|
864
|
+
string path;
|
865
|
+
|
866
|
+
FileCreationContext(FileBufferedChannel *self)
|
867
|
+
: FileIOContext(self)
|
868
|
+
{ }
|
869
|
+
};
|
870
|
+
|
871
|
+
void createBufferFile() {
|
872
|
+
P_ASSERT_EQ(mode, IN_FILE_MODE);
|
873
|
+
P_ASSERT_EQ(inFileMode->writerState, WS_INACTIVE);
|
874
|
+
P_ASSERT_EQ(inFileMode->fd, -1);
|
875
|
+
|
876
|
+
FileCreationContext *fcContext = new FileCreationContext(this);
|
877
|
+
fcContext->path = config->bufferDir;
|
878
|
+
fcContext->path.append("/buffer.");
|
879
|
+
fcContext->path.append(toString(rand()));
|
880
|
+
|
881
|
+
inFileMode->writerState = WS_CREATING_FILE;
|
882
|
+
inFileMode->writerRequest = fcContext;
|
883
|
+
|
884
|
+
if (config->delayInFileModeSwitching == 0) {
|
885
|
+
FBC_DEBUG("Writer: creating file " << fcContext->path);
|
886
|
+
int result = uv_fs_open(ctx->libuv, &fcContext->req,
|
887
|
+
fcContext->path.c_str(), O_RDWR | O_CREAT | O_EXCL,
|
888
|
+
0600, _bufferFileCreated);
|
889
|
+
if (result != 0) {
|
890
|
+
fcContext->req.result = result;
|
891
|
+
ctx->libev->runLater(boost::bind(_bufferFileCreated,
|
892
|
+
&fcContext->req));
|
893
|
+
}
|
894
|
+
} else {
|
895
|
+
FBC_DEBUG("Writer: delaying in-file mode switching for " <<
|
896
|
+
config->delayInFileModeSwitching << "ms");
|
897
|
+
ctx->libev->runAfter(config->delayInFileModeSwitching,
|
898
|
+
boost::bind(_bufferFileDoneDelaying, fcContext));
|
899
|
+
}
|
900
|
+
}
|
901
|
+
|
902
|
+
static void _bufferFileDoneDelaying(FileCreationContext *fcContext) {
|
903
|
+
if (fcContext->isCanceled()) {
|
904
|
+
// We don't cleanup fcContext->req here because we didn't
|
905
|
+
// start a libuv request.
|
906
|
+
delete fcContext;
|
907
|
+
return;
|
908
|
+
}
|
909
|
+
|
910
|
+
FileBufferedChannel *self = fcContext->self;
|
911
|
+
self->bufferFileDoneDelaying(fcContext);
|
912
|
+
}
|
913
|
+
|
914
|
+
void bufferFileDoneDelaying(FileCreationContext *fcContext) {
|
915
|
+
FBC_DEBUG("Writer: done delaying in-file mode switching. "
|
916
|
+
"Creating file: " << fcContext->path);
|
917
|
+
int result = uv_fs_open(ctx->libuv, &fcContext->req,
|
918
|
+
fcContext->path.c_str(), O_RDWR | O_CREAT | O_EXCL,
|
919
|
+
0600, _bufferFileCreated);
|
920
|
+
if (result != 0) {
|
921
|
+
fcContext->req.result = result;
|
922
|
+
_bufferFileCreated(&fcContext->req);
|
923
|
+
}
|
924
|
+
}
|
925
|
+
|
926
|
+
static void _bufferFileCreated(uv_fs_t *req) {
|
927
|
+
FileCreationContext *fcContext = static_cast<FileCreationContext *>(req->data);
|
928
|
+
uv_fs_req_cleanup(req);
|
929
|
+
if (fcContext->isCanceled()) {
|
930
|
+
if (req->result >= 0) {
|
931
|
+
FBC_DEBUG_FROM_CALLBACK(fcContext,
|
932
|
+
"Writer: creation of file " << fcContext->path <<
|
933
|
+
"canceled. Deleting file in the background");
|
934
|
+
closeBufferFileInBackground(fcContext);
|
935
|
+
// Will take care of deleting fcContext
|
936
|
+
unlinkBufferFileInBackground(fcContext);
|
937
|
+
} else {
|
938
|
+
delete fcContext;
|
939
|
+
}
|
940
|
+
return;
|
941
|
+
}
|
942
|
+
|
943
|
+
fcContext->self->bufferFileCreated(fcContext);
|
944
|
+
}
|
945
|
+
|
946
|
+
void bufferFileCreated(FileCreationContext *fcContext) {
|
947
|
+
P_ASSERT_EQ(inFileMode->writerState, WS_CREATING_FILE);
|
948
|
+
verifyInvariants();
|
949
|
+
inFileMode->writerRequest = NULL;
|
950
|
+
|
951
|
+
if (fcContext->req.result >= 0) {
|
952
|
+
FBC_DEBUG("Writer: file created. Deleting file in the background");
|
953
|
+
P_LOG_FILE_DESCRIPTOR_OPEN4(fcContext->req.result, __FILE__, __LINE__,
|
954
|
+
"FileBufferedChannel buffer file");
|
955
|
+
inFileMode->fd = fcContext->req.result;
|
956
|
+
// Will take care of deleting fcContext
|
957
|
+
unlinkBufferFileInBackground(fcContext);
|
958
|
+
moveNextBufferToFile();
|
959
|
+
} else {
|
960
|
+
int errcode = -fcContext->req.result;
|
961
|
+
delete fcContext;
|
962
|
+
if (errcode == EEXIST) {
|
963
|
+
FBC_DEBUG("Writer: file already exists, retrying");
|
964
|
+
inFileMode->writerState = WS_INACTIVE;
|
965
|
+
createBufferFile();
|
966
|
+
verifyInvariants();
|
967
|
+
} else {
|
968
|
+
setError(errcode, __FILE__, __LINE__);
|
969
|
+
}
|
970
|
+
}
|
971
|
+
}
|
972
|
+
|
973
|
+
static void closeBufferFileInBackground(FileCreationContext *fcContext) {
|
974
|
+
// Do not use fcContext->self in here. This method may be called
|
975
|
+
// when the I/O operation is already canceled.
|
976
|
+
|
977
|
+
assert(fcContext->req.result >= 0);
|
978
|
+
|
979
|
+
uv_fs_t *closeReq = (uv_fs_t *) malloc(sizeof(uv_fs_t));
|
980
|
+
if (closeReq == NULL) {
|
981
|
+
FBC_CRITICAL_FROM_CALLBACK(fcContext,
|
982
|
+
"Cannot close file descriptor for " << fcContext->path
|
983
|
+
<< ": cannot allocate memory for necessary temporary data structure");
|
984
|
+
abort();
|
985
|
+
}
|
986
|
+
|
987
|
+
int result = uv_fs_close(fcContext->libuv, closeReq, fcContext->req.result,
|
988
|
+
bufferFileClosed);
|
989
|
+
if (result != 0) {
|
990
|
+
FBC_CRITICAL_FROM_CALLBACK(fcContext,
|
991
|
+
"Cannot close file descriptor for " << fcContext->path
|
992
|
+
<< ": cannot initiate I/O operation: "
|
993
|
+
<< uv_strerror(result) << " (errno=" << -result << ")");
|
994
|
+
abort();
|
995
|
+
}
|
996
|
+
}
|
997
|
+
|
998
|
+
static void unlinkBufferFileInBackground(FileCreationContext *fcContext) {
|
999
|
+
// Nobody will cancel this unlink operation. We set self to NULL
|
1000
|
+
// here as a warning that we should not use the backpointer.
|
1001
|
+
fcContext->self = NULL;
|
1002
|
+
|
1003
|
+
uv_fs_t *unlinkReq = (uv_fs_t *) malloc(sizeof(uv_fs_t));
|
1004
|
+
if (unlinkReq == NULL) {
|
1005
|
+
FBC_ERROR_FROM_CALLBACK(fcContext,
|
1006
|
+
"Cannot delete " << fcContext->path <<
|
1007
|
+
": cannot allocate memory for necessary temporary data structure");
|
1008
|
+
delete fcContext;
|
1009
|
+
} else {
|
1010
|
+
unlinkReq->data = fcContext;
|
1011
|
+
int result = uv_fs_unlink(fcContext->libuv, unlinkReq, fcContext->path.c_str(),
|
1012
|
+
bufferFileUnlinked);
|
1013
|
+
if (result != 0) {
|
1014
|
+
FBC_ERROR_FROM_CALLBACK(fcContext,
|
1015
|
+
"Cannot delete " << fcContext->path << ": cannot initiate I/O operation: "
|
1016
|
+
<< uv_strerror(result) << " (errno=" << -result << ")");
|
1017
|
+
free(unlinkReq);
|
1018
|
+
delete fcContext;
|
1019
|
+
}
|
1020
|
+
}
|
1021
|
+
}
|
1022
|
+
|
1023
|
+
static void bufferFileUnlinked(uv_fs_t *req) {
|
1024
|
+
FileCreationContext *fcContext = static_cast<FileCreationContext *>(req->data);
|
1025
|
+
assert(fcContext->self == NULL);
|
1026
|
+
|
1027
|
+
if (req->result == UV_ECANCELED) {
|
1028
|
+
uv_fs_req_cleanup(req);
|
1029
|
+
delete fcContext;
|
1030
|
+
return;
|
1031
|
+
}
|
1032
|
+
|
1033
|
+
if (req->result >= 0) {
|
1034
|
+
FBC_DEBUG_FROM_CALLBACK(fcContext,
|
1035
|
+
"Writer: file " << fcContext->path << " deleted");
|
1036
|
+
} else {
|
1037
|
+
FBC_DEBUG_FROM_CALLBACK(fcContext,
|
1038
|
+
"Writer: failed to delete " << fcContext->path <<
|
1039
|
+
": " << uv_strerror(req->result) << " (errno=" << -req->result << ")");
|
1040
|
+
}
|
1041
|
+
|
1042
|
+
uv_fs_req_cleanup(req);
|
1043
|
+
delete fcContext;
|
1044
|
+
}
|
1045
|
+
|
1046
|
+
static void bufferFileClosed(uv_fs_t *req) {
|
1047
|
+
uv_fs_req_cleanup(req);
|
1048
|
+
free(req);
|
1049
|
+
}
|
1050
|
+
|
1051
|
+
|
1052
|
+
/***** Mover *****/
|
1053
|
+
|
1054
|
+
struct MoveContext: public FileIOContext {
|
1055
|
+
// Smart pointer to keep fd open until libuv operation
|
1056
|
+
// is finished.
|
1057
|
+
boost::shared_ptr<InFileMode> inFileMode;
|
1058
|
+
MemoryKit::mbuf buffer;
|
1059
|
+
uv_buf_t uvBuffer;
|
1060
|
+
size_t written;
|
1061
|
+
|
1062
|
+
MoveContext(FileBufferedChannel *self)
|
1063
|
+
: FileIOContext(self)
|
1064
|
+
{ }
|
1065
|
+
};
|
1066
|
+
|
1067
|
+
void moveNextBufferToFile() {
|
1068
|
+
P_ASSERT_EQ(mode, IN_FILE_MODE);
|
1069
|
+
assert(inFileMode->fd != -1);
|
1070
|
+
verifyInvariants();
|
1071
|
+
|
1072
|
+
if (nbuffers == 0) {
|
1073
|
+
FBC_DEBUG("Writer: no more buffers. Transitioning to WS_INACTIVE");
|
1074
|
+
inFileMode->writerState = WS_INACTIVE;
|
1075
|
+
return;
|
1076
|
+
} else if (peekBuffer().empty()) {
|
1077
|
+
FBC_DEBUG("Writer: EOF encountered. Transitioning to WS_TERMINATED");
|
1078
|
+
inFileMode->writerState = WS_TERMINATED;
|
1079
|
+
return;
|
1080
|
+
}
|
1081
|
+
|
1082
|
+
FBC_DEBUG("Writer: moving next buffer to file: " <<
|
1083
|
+
peekBuffer().size() << " bytes");
|
1084
|
+
|
1085
|
+
MoveContext *moveContext = new MoveContext(this);
|
1086
|
+
moveContext->inFileMode = inFileMode;
|
1087
|
+
moveContext->buffer = peekBuffer();
|
1088
|
+
moveContext->written = 0;
|
1089
|
+
moveContext->uvBuffer = uv_buf_init(moveContext->buffer.start,
|
1090
|
+
moveContext->buffer.size());
|
1091
|
+
|
1092
|
+
inFileMode->writerState = WS_MOVING;
|
1093
|
+
inFileMode->writerRequest = moveContext;
|
1094
|
+
int result = uv_fs_write(ctx->libuv, &moveContext->req, inFileMode->fd,
|
1095
|
+
&moveContext->uvBuffer, 1,
|
1096
|
+
inFileMode->readOffset + inFileMode->written,
|
1097
|
+
_bufferWrittenToFile);
|
1098
|
+
if (result != 0) {
|
1099
|
+
moveContext->req.result = result;
|
1100
|
+
ctx->libev->runLater(boost::bind(_bufferWrittenToFile,
|
1101
|
+
&moveContext->req));
|
1102
|
+
}
|
1103
|
+
verifyInvariants();
|
1104
|
+
}
|
1105
|
+
|
1106
|
+
static void _bufferWrittenToFile(uv_fs_t *req) {
|
1107
|
+
MoveContext *moveContext = static_cast<MoveContext *>(req->data);
|
1108
|
+
uv_fs_req_cleanup(req);
|
1109
|
+
if (moveContext->isCanceled()) {
|
1110
|
+
delete moveContext;
|
1111
|
+
return;
|
1112
|
+
}
|
1113
|
+
|
1114
|
+
moveContext->self->bufferWrittenToFile(moveContext);
|
1115
|
+
}
|
1116
|
+
|
1117
|
+
void bufferWrittenToFile(MoveContext *moveContext) {
|
1118
|
+
P_ASSERT_EQ(mode, IN_FILE_MODE);
|
1119
|
+
P_ASSERT_EQ(inFileMode->writerState, WS_MOVING);
|
1120
|
+
assert(!peekBuffer().empty());
|
1121
|
+
verifyInvariants();
|
1122
|
+
|
1123
|
+
if (moveContext->req.result >= 0) {
|
1124
|
+
moveContext->written += moveContext->req.result;
|
1125
|
+
assert(moveContext->written <= moveContext->buffer.size());
|
1126
|
+
|
1127
|
+
if (moveContext->written == moveContext->buffer.size()) {
|
1128
|
+
// Write completed. Proceed with next buffer.
|
1129
|
+
RefGuard guard(hooks, this, __FILE__, __LINE__);
|
1130
|
+
unsigned int generation = this->generation;
|
1131
|
+
|
1132
|
+
FBC_DEBUG("Writer: move complete");
|
1133
|
+
assert(peekBuffer().size() == moveContext->buffer.size());
|
1134
|
+
inFileMode->written += moveContext->buffer.size();
|
1135
|
+
|
1136
|
+
popBuffer();
|
1137
|
+
if (generation != this->generation || mode >= ERROR) {
|
1138
|
+
// buffersFlushedCallback deinitialized this object, or callback
|
1139
|
+
// called a method that encountered an error.
|
1140
|
+
delete moveContext;
|
1141
|
+
return;
|
1142
|
+
}
|
1143
|
+
|
1144
|
+
inFileMode->writerRequest = NULL;
|
1145
|
+
delete moveContext;
|
1146
|
+
moveNextBufferToFile();
|
1147
|
+
} else {
|
1148
|
+
FBC_DEBUG("Writer: move incomplete, proceeding " <<
|
1149
|
+
"with writing rest of buffer");
|
1150
|
+
moveContext->uvBuffer = uv_buf_init(
|
1151
|
+
moveContext->buffer.start + moveContext->written,
|
1152
|
+
moveContext->buffer.size() - moveContext->written);
|
1153
|
+
int result = uv_fs_write(ctx->libuv, &moveContext->req,
|
1154
|
+
inFileMode->fd, &moveContext->uvBuffer, 1,
|
1155
|
+
inFileMode->readOffset + inFileMode->written,
|
1156
|
+
_bufferWrittenToFile);
|
1157
|
+
if (result != 0) {
|
1158
|
+
moveContext->req.result = result;
|
1159
|
+
ctx->libev->runLater(boost::bind(_bufferWrittenToFile,
|
1160
|
+
&moveContext->req));
|
1161
|
+
}
|
1162
|
+
verifyInvariants();
|
1163
|
+
}
|
1164
|
+
} else {
|
1165
|
+
FBC_DEBUG("Writer: file write failed");
|
1166
|
+
int errcode = -moveContext->req.result;
|
1167
|
+
delete moveContext;
|
1168
|
+
inFileMode->writerRequest = NULL;
|
1169
|
+
inFileMode->writerState = WS_TERMINATED;
|
1170
|
+
setError(errcode, __FILE__, __LINE__);
|
1171
|
+
}
|
1172
|
+
}
|
1173
|
+
|
1174
|
+
|
1175
|
+
/***** Misc *****/
|
1176
|
+
|
1177
|
+
void setError(int errcode, const char *file, unsigned int line) {
|
1178
|
+
if (mode >= ERROR) {
|
1179
|
+
return;
|
1180
|
+
}
|
1181
|
+
|
1182
|
+
FBC_DEBUG_WITH_POS(file, line, "Setting error: errno=" <<
|
1183
|
+
errcode << " (" << getErrorDesc(errcode) << ")");
|
1184
|
+
cancelReader();
|
1185
|
+
if (mode == IN_FILE_MODE) {
|
1186
|
+
cancelWriter();
|
1187
|
+
}
|
1188
|
+
readerState = RS_TERMINATED;
|
1189
|
+
this->errcode = errcode;
|
1190
|
+
inFileMode.reset();
|
1191
|
+
if (acceptingInput()) {
|
1192
|
+
FBC_DEBUG("Feeding error");
|
1193
|
+
mode = ERROR;
|
1194
|
+
Channel::feedError(errcode);
|
1195
|
+
} else {
|
1196
|
+
FBC_DEBUG("Waiting until underlying channel becomes idle for error feeding");
|
1197
|
+
mode = ERROR_WAITING;
|
1198
|
+
}
|
1199
|
+
}
|
1200
|
+
|
1201
|
+
void feedErrorWhenChannelIdleOrEnded() {
|
1202
|
+
assert(errcode != 0);
|
1203
|
+
if (isIdle()) {
|
1204
|
+
FBC_DEBUG("Channel has become idle. Feeding error");
|
1205
|
+
Channel::feedError(errcode);
|
1206
|
+
} else {
|
1207
|
+
FBC_DEBUG("Channel ended while trying to feed an error");
|
1208
|
+
}
|
1209
|
+
}
|
1210
|
+
|
1211
|
+
/**
|
1212
|
+
* Must be used in combination with `setError()`, so that the reader will
|
1213
|
+
* stop processing after returning from `Channel::feed()`.
|
1214
|
+
*/
|
1215
|
+
void cancelReader() {
|
1216
|
+
switch (readerState) {
|
1217
|
+
case RS_FEEDING:
|
1218
|
+
case RS_FEEDING_EOF:
|
1219
|
+
case RS_WAITING_FOR_CHANNEL_IDLE:
|
1220
|
+
break;
|
1221
|
+
case RS_READING_FROM_FILE:
|
1222
|
+
inFileMode->readRequest->cancel();
|
1223
|
+
inFileMode->readRequest = NULL;
|
1224
|
+
break;
|
1225
|
+
case RS_INACTIVE:
|
1226
|
+
case RS_TERMINATED:
|
1227
|
+
return;
|
1228
|
+
}
|
1229
|
+
}
|
1230
|
+
|
1231
|
+
void cancelWriter() {
|
1232
|
+
P_ASSERT_EQ(mode, IN_FILE_MODE);
|
1233
|
+
|
1234
|
+
switch (inFileMode->writerState) {
|
1235
|
+
case WS_INACTIVE:
|
1236
|
+
break;
|
1237
|
+
case WS_CREATING_FILE:
|
1238
|
+
case WS_MOVING:
|
1239
|
+
inFileMode->writerRequest->cancel();
|
1240
|
+
inFileMode->writerRequest = NULL;
|
1241
|
+
break;
|
1242
|
+
case WS_TERMINATED:
|
1243
|
+
return;
|
1244
|
+
}
|
1245
|
+
inFileMode->writerState = WS_INACTIVE;
|
1246
|
+
}
|
1247
|
+
|
1248
|
+
const char *getReaderStateString() const {
|
1249
|
+
switch (readerState) {
|
1250
|
+
case RS_INACTIVE:
|
1251
|
+
return "RS_INACTIVE";
|
1252
|
+
case RS_FEEDING:
|
1253
|
+
return "RS_FEEDING";
|
1254
|
+
case RS_FEEDING_EOF:
|
1255
|
+
return "RS_FEEDING_EOF";
|
1256
|
+
case RS_WAITING_FOR_CHANNEL_IDLE:
|
1257
|
+
return "RS_WAITING_FOR_CHANNEL_IDLE";
|
1258
|
+
case RS_READING_FROM_FILE:
|
1259
|
+
return "RS_READING_FROM_FILE";
|
1260
|
+
case RS_TERMINATED:
|
1261
|
+
return "RS_TERMINATED";
|
1262
|
+
default:
|
1263
|
+
P_BUG("Unknown readerState");
|
1264
|
+
return NULL;
|
1265
|
+
}
|
1266
|
+
}
|
1267
|
+
|
1268
|
+
const char *getWriterStateString() const {
|
1269
|
+
switch (inFileMode->writerState) {
|
1270
|
+
case WS_INACTIVE:
|
1271
|
+
return "WS_INACTIVE";
|
1272
|
+
case WS_CREATING_FILE:
|
1273
|
+
return "WS_CREATING_FILE";
|
1274
|
+
case WS_MOVING:
|
1275
|
+
return "WS_MOVING";
|
1276
|
+
case WS_TERMINATED:
|
1277
|
+
return "WS_TERMINATED";
|
1278
|
+
default:
|
1279
|
+
P_BUG("Unknown writerState");
|
1280
|
+
return NULL;
|
1281
|
+
}
|
1282
|
+
}
|
1283
|
+
|
1284
|
+
void verifyInvariants() const {
|
1285
|
+
#ifndef NDEBUG
|
1286
|
+
if (mode >= ERROR) {
|
1287
|
+
P_ASSERT_EQ(readerState, RS_TERMINATED);
|
1288
|
+
P_ASSERT_EQ(inFileMode, 0);
|
1289
|
+
}
|
1290
|
+
|
1291
|
+
switch (readerState) {
|
1292
|
+
case RS_INACTIVE:
|
1293
|
+
case RS_FEEDING:
|
1294
|
+
case RS_FEEDING_EOF:
|
1295
|
+
break;
|
1296
|
+
case RS_WAITING_FOR_CHANNEL_IDLE:
|
1297
|
+
assert(mode < ERROR);
|
1298
|
+
break;
|
1299
|
+
case RS_READING_FROM_FILE:
|
1300
|
+
P_ASSERT_EQ(mode, IN_FILE_MODE);
|
1301
|
+
assert(inFileMode->readRequest != NULL);
|
1302
|
+
assert(inFileMode->written > 0);
|
1303
|
+
break;
|
1304
|
+
case RS_TERMINATED:
|
1305
|
+
break;
|
1306
|
+
}
|
1307
|
+
|
1308
|
+
assert((errcode == 0) == (mode < ERROR));
|
1309
|
+
assert((inFileMode != NULL) == (mode == IN_FILE_MODE));
|
1310
|
+
#endif
|
1311
|
+
}
|
1312
|
+
|
1313
|
+
static void onChannelConsumed(Channel *channel, unsigned int size) {
|
1314
|
+
FileBufferedChannel *self = static_cast<FileBufferedChannel *>(channel);
|
1315
|
+
if (self->readerState == RS_WAITING_FOR_CHANNEL_IDLE) {
|
1316
|
+
if (self->acceptingInput()) {
|
1317
|
+
self->channelHasBecomeIdle();
|
1318
|
+
} else {
|
1319
|
+
assert(self->Channel::ended());
|
1320
|
+
self->channelEndedWhileWaitingForItToBecomeIdle();
|
1321
|
+
}
|
1322
|
+
} else if (self->mode == ERROR_WAITING) {
|
1323
|
+
self->feedErrorWhenChannelIdleOrEnded();
|
1324
|
+
}
|
1325
|
+
}
|
1326
|
+
|
1327
|
+
public:
|
1328
|
+
/**
|
1329
|
+
* Called when all the in-memory buffers have been popped. This could happen
|
1330
|
+
* (when we're in the in-memory mode) because the last in-memory buffer is being
|
1331
|
+
* processed by the data callback. It could also happen (when we're in the in-file
|
1332
|
+
* mode) when the last in-memory buffer has sucessfully been written to disk.
|
1333
|
+
*
|
1334
|
+
* This event does not imply that the data callback has consumed all memory
|
1335
|
+
* buffers. For example, in case of FileBufferedFdSinkChannel, this event does
|
1336
|
+
* not imply that all the in-memory buffers have been written to the sink FD.
|
1337
|
+
* That's what `dataFlushedCallback` is for.
|
1338
|
+
*/
|
1339
|
+
Callback buffersFlushedCallback;
|
1340
|
+
/**
|
1341
|
+
* Called when all buffered data (whether in-memory or on-disk) has been consumed
|
1342
|
+
* by the data callback. In case of FileBufferedFdSinkChannel, this means that all
|
1343
|
+
* buffered data has been written out to the sink FD.
|
1344
|
+
*/
|
1345
|
+
Callback dataFlushedCallback;
|
1346
|
+
|
1347
|
+
FileBufferedChannel()
|
1348
|
+
: config(NULL),
|
1349
|
+
mode(IN_MEMORY_MODE),
|
1350
|
+
readerState(RS_INACTIVE),
|
1351
|
+
nbuffers(0),
|
1352
|
+
errcode(0),
|
1353
|
+
bytesBuffered(0),
|
1354
|
+
inFileMode(),
|
1355
|
+
buffersFlushedCallback(NULL),
|
1356
|
+
dataFlushedCallback(NULL)
|
1357
|
+
{
|
1358
|
+
Channel::consumedCallback = onChannelConsumed;
|
1359
|
+
}
|
1360
|
+
|
1361
|
+
FileBufferedChannel(Context *context)
|
1362
|
+
: Channel(context),
|
1363
|
+
config(&context->defaultFileBufferedChannelConfig),
|
1364
|
+
mode(IN_MEMORY_MODE),
|
1365
|
+
readerState(RS_INACTIVE),
|
1366
|
+
nbuffers(0),
|
1367
|
+
errcode(0),
|
1368
|
+
bytesBuffered(0),
|
1369
|
+
inFileMode(),
|
1370
|
+
buffersFlushedCallback(NULL),
|
1371
|
+
dataFlushedCallback(NULL)
|
1372
|
+
{
|
1373
|
+
Channel::consumedCallback = onChannelConsumed;
|
1374
|
+
}
|
1375
|
+
|
1376
|
+
~FileBufferedChannel() {
|
1377
|
+
cancelReader();
|
1378
|
+
if (mode == IN_FILE_MODE) {
|
1379
|
+
cancelWriter();
|
1380
|
+
}
|
1381
|
+
}
|
1382
|
+
|
1383
|
+
// May only be called right after construction.
|
1384
|
+
void setContext(Context *context) {
|
1385
|
+
Channel::setContext(context);
|
1386
|
+
if (config == NULL) {
|
1387
|
+
config = &context->defaultFileBufferedChannelConfig;
|
1388
|
+
}
|
1389
|
+
}
|
1390
|
+
|
1391
|
+
void feed(const MemoryKit::mbuf &buffer) {
|
1392
|
+
RefGuard guard(hooks, this, __FILE__, __LINE__);
|
1393
|
+
feedWithoutRefGuard(buffer);
|
1394
|
+
}
|
1395
|
+
|
1396
|
+
void feed(const char *data, unsigned int size) {
|
1397
|
+
feed(MemoryKit::mbuf(data, size));
|
1398
|
+
}
|
1399
|
+
|
1400
|
+
void feed(const char *data) {
|
1401
|
+
feed(MemoryKit::mbuf(data));
|
1402
|
+
}
|
1403
|
+
|
1404
|
+
void feedWithoutRefGuard(const MemoryKit::mbuf &buffer) {
|
1405
|
+
FBC_DEBUG("Feeding " << buffer.size() << " bytes");
|
1406
|
+
verifyInvariants();
|
1407
|
+
if (ended()) {
|
1408
|
+
FBC_DEBUG("Feeding aborted: EOF or error detected");
|
1409
|
+
return;
|
1410
|
+
}
|
1411
|
+
pushBuffer(buffer);
|
1412
|
+
if (mode == IN_MEMORY_MODE && passedThreshold()) {
|
1413
|
+
switchToInFileMode();
|
1414
|
+
} else if (mode == IN_FILE_MODE
|
1415
|
+
&& inFileMode->writerState == WS_INACTIVE
|
1416
|
+
&& config->autoStartMover)
|
1417
|
+
{
|
1418
|
+
moveNextBufferToFile();
|
1419
|
+
}
|
1420
|
+
if (readerState == RS_INACTIVE) {
|
1421
|
+
if (acceptingInput()) {
|
1422
|
+
readNextWithoutRefGuard();
|
1423
|
+
} else {
|
1424
|
+
readNextWhenChannelIdle();
|
1425
|
+
}
|
1426
|
+
}
|
1427
|
+
}
|
1428
|
+
|
1429
|
+
void feedWithoutRefGuard(const char *data, unsigned int size) {
|
1430
|
+
feedWithoutRefGuard(MemoryKit::mbuf(data, size));
|
1431
|
+
}
|
1432
|
+
|
1433
|
+
void feedError(int errcode, const char *file = NULL, unsigned int line = 0) {
|
1434
|
+
if (file == NULL) {
|
1435
|
+
file = __FILE__;
|
1436
|
+
}
|
1437
|
+
if (line == 0) {
|
1438
|
+
line = __LINE__;
|
1439
|
+
}
|
1440
|
+
setError(errcode, file, line);
|
1441
|
+
}
|
1442
|
+
|
1443
|
+
void reinitialize() {
|
1444
|
+
Channel::reinitialize();
|
1445
|
+
verifyInvariants();
|
1446
|
+
}
|
1447
|
+
|
1448
|
+
void deinitialize() {
|
1449
|
+
FBC_DEBUG("Deinitialize");
|
1450
|
+
cancelReader();
|
1451
|
+
if (mode == IN_FILE_MODE) {
|
1452
|
+
cancelWriter();
|
1453
|
+
}
|
1454
|
+
clearBuffers(false);
|
1455
|
+
mode = IN_MEMORY_MODE;
|
1456
|
+
readerState = RS_INACTIVE;
|
1457
|
+
errcode = 0;
|
1458
|
+
if (OXT_UNLIKELY(inFileMode != NULL)) {
|
1459
|
+
inFileMode.reset();
|
1460
|
+
}
|
1461
|
+
Channel::deinitialize();
|
1462
|
+
}
|
1463
|
+
|
1464
|
+
void start() {
|
1465
|
+
Channel::start();
|
1466
|
+
}
|
1467
|
+
|
1468
|
+
void stop() {
|
1469
|
+
Channel::stop();
|
1470
|
+
}
|
1471
|
+
|
1472
|
+
bool isStarted() const {
|
1473
|
+
return Channel::isStarted();
|
1474
|
+
}
|
1475
|
+
|
1476
|
+
void consumed(unsigned int size, bool end) {
|
1477
|
+
Channel::consumed(size, end);
|
1478
|
+
}
|
1479
|
+
|
1480
|
+
Channel::State getState() const {
|
1481
|
+
return state;
|
1482
|
+
}
|
1483
|
+
|
1484
|
+
Mode getMode() const {
|
1485
|
+
return mode;
|
1486
|
+
}
|
1487
|
+
|
1488
|
+
ReaderState getReaderState() const {
|
1489
|
+
return readerState;
|
1490
|
+
}
|
1491
|
+
|
1492
|
+
WriterState getWriterState() const {
|
1493
|
+
return inFileMode->writerState;
|
1494
|
+
}
|
1495
|
+
|
1496
|
+
/**
|
1497
|
+
* Returns the number of bytes buffered in memory.
|
1498
|
+
*/
|
1499
|
+
unsigned int getBytesBuffered() const {
|
1500
|
+
return bytesBuffered;
|
1501
|
+
}
|
1502
|
+
|
1503
|
+
/**
|
1504
|
+
* Returns the number of bytes that are buffered on disk
|
1505
|
+
* and have not yet been read.
|
1506
|
+
*/
|
1507
|
+
boost::uint64_t getBytesBufferedOnDisk() const {
|
1508
|
+
if (mode == IN_FILE_MODE && inFileMode->written >= 0) {
|
1509
|
+
return inFileMode->written;
|
1510
|
+
} else {
|
1511
|
+
return 0;
|
1512
|
+
}
|
1513
|
+
}
|
1514
|
+
|
1515
|
+
/**
|
1516
|
+
* Returns the total bytes buffered, both in-memory and on disk.
|
1517
|
+
*/
|
1518
|
+
boost::uint64_t getTotalBytesBuffered() const {
|
1519
|
+
return bytesBuffered + getBytesBufferedOnDisk();
|
1520
|
+
}
|
1521
|
+
|
1522
|
+
bool ended() const {
|
1523
|
+
return (hasBuffers() && peekLastBuffer().empty())
|
1524
|
+
|| mode >= ERROR || Channel::ended();
|
1525
|
+
}
|
1526
|
+
|
1527
|
+
bool endAcked() const {
|
1528
|
+
return Channel::endAcked();
|
1529
|
+
}
|
1530
|
+
|
1531
|
+
bool passedThreshold() const {
|
1532
|
+
return bytesBuffered >= config->threshold;
|
1533
|
+
}
|
1534
|
+
|
1535
|
+
OXT_FORCE_INLINE
|
1536
|
+
void setDataCallback(DataCallback callback) {
|
1537
|
+
Channel::dataCallback = callback;
|
1538
|
+
}
|
1539
|
+
|
1540
|
+
OXT_FORCE_INLINE
|
1541
|
+
Callback getBuffersFlushedCallback() const {
|
1542
|
+
return buffersFlushedCallback;
|
1543
|
+
}
|
1544
|
+
|
1545
|
+
OXT_FORCE_INLINE
|
1546
|
+
void setBuffersFlushedCallback(Callback callback) {
|
1547
|
+
buffersFlushedCallback = callback;
|
1548
|
+
}
|
1549
|
+
|
1550
|
+
OXT_FORCE_INLINE
|
1551
|
+
Callback getDataFlushedCallback() const {
|
1552
|
+
return dataFlushedCallback;
|
1553
|
+
}
|
1554
|
+
|
1555
|
+
OXT_FORCE_INLINE
|
1556
|
+
void setDataFlushedCallback(Callback callback) {
|
1557
|
+
dataFlushedCallback = callback;
|
1558
|
+
}
|
1559
|
+
|
1560
|
+
OXT_FORCE_INLINE
|
1561
|
+
Hooks *getHooks() const {
|
1562
|
+
return Channel::hooks;
|
1563
|
+
}
|
1564
|
+
|
1565
|
+
OXT_FORCE_INLINE
|
1566
|
+
void setHooks(Hooks *hooks) {
|
1567
|
+
Channel::hooks = hooks;
|
1568
|
+
}
|
1569
|
+
|
1570
|
+
Json::Value inspectAsJson() const {
|
1571
|
+
Json::Value doc = Channel::inspectAsJson();
|
1572
|
+
|
1573
|
+
switch (mode) {
|
1574
|
+
case IN_MEMORY_MODE:
|
1575
|
+
doc["mode"] = "IN_MEMORY_MODE";
|
1576
|
+
break;
|
1577
|
+
case IN_FILE_MODE:
|
1578
|
+
doc["mode"] = "IN_FILE_MODE";
|
1579
|
+
doc["writer_state"] = getWriterStateString();
|
1580
|
+
doc["read_offset"] = byteSizeToJson(inFileMode->readOffset);
|
1581
|
+
doc["written"] = signedByteSizeToJson(inFileMode->written);
|
1582
|
+
break;
|
1583
|
+
case ERROR:
|
1584
|
+
doc["mode"] = "ERROR";
|
1585
|
+
break;
|
1586
|
+
case ERROR_WAITING:
|
1587
|
+
doc["mode"] = "ERROR_WAITING";
|
1588
|
+
break;
|
1589
|
+
default:
|
1590
|
+
break;
|
1591
|
+
}
|
1592
|
+
|
1593
|
+
doc["reader_state"] = getReaderStateString();
|
1594
|
+
doc["nbuffers"] = nbuffers;
|
1595
|
+
doc["bytes_buffered"] = byteSizeToJson(getBytesBuffered());
|
1596
|
+
|
1597
|
+
return doc;
|
1598
|
+
}
|
1599
|
+
};
|
1600
|
+
|
1601
|
+
|
1602
|
+
} // namespace ServerKit
|
1603
|
+
} // namespace Passenger
|
1604
|
+
|
1605
|
+
#endif /* _PASSENGER_SERVER_KIT_FILE_BUFFERED_CHANNEL_H_ */
|