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
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/bool_trait_undef.hpp
RENAMED
File without changes
|
data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/common_type_imp.hpp
RENAMED
File without changes
|
File without changes
|
File without changes
|
data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/has_binary_operator.hpp
RENAMED
File without changes
|
data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/has_postfix_operator.hpp
RENAMED
File without changes
|
data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/has_prefix_operator.hpp
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/is_function_ptr_helper.hpp
RENAMED
File without changes
|
data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/is_function_ptr_tester.hpp
RENAMED
File without changes
|
data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp
RENAMED
File without changes
|
File without changes
|
data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/size_t_trait_def.hpp
RENAMED
File without changes
|
data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/size_t_trait_undef.hpp
RENAMED
File without changes
|
data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/template_arity_spec.hpp
RENAMED
File without changes
|
File without changes
|
data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/detail/type_trait_undef.hpp
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/has_nothrow_constructor.hpp
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/has_trivial_constructor.hpp
RENAMED
File without changes
|
File without changes
|
data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/has_trivial_destructor.hpp
RENAMED
File without changes
|
data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/has_trivial_move_assign.hpp
RENAMED
File without changes
|
data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/has_trivial_move_constructor.hpp
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_member_function_pointer.hpp
RENAMED
File without changes
|
File without changes
|
data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_nothrow_move_assignable.hpp
RENAMED
File without changes
|
data/{ext → src/cxx_supportlib/vendor-modified}/boost/type_traits/is_nothrow_move_constructible.hpp
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
data/{ext → src/cxx_supportlib/vendor-modified}/boost/utility/detail/in_place_factory_prefix.hpp
RENAMED
File without changes
|
data/{ext → src/cxx_supportlib/vendor-modified}/boost/utility/detail/in_place_factory_suffix.hpp
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -0,0 +1,4237 @@
|
|
1
|
+
/// Json-cpp amalgated source (http://jsoncpp.sourceforge.net/).
|
2
|
+
/// It is intented to be used with #include <json/json.h>
|
3
|
+
|
4
|
+
// //////////////////////////////////////////////////////////////////////
|
5
|
+
// Beginning of content of file: LICENSE
|
6
|
+
// //////////////////////////////////////////////////////////////////////
|
7
|
+
|
8
|
+
/*
|
9
|
+
The JsonCpp library's source code, including accompanying documentation,
|
10
|
+
tests and demonstration applications, are licensed under the following
|
11
|
+
conditions...
|
12
|
+
|
13
|
+
The author (Baptiste Lepilleur) explicitly disclaims copyright in all
|
14
|
+
jurisdictions which recognize such a disclaimer. In such jurisdictions,
|
15
|
+
this software is released into the Public Domain.
|
16
|
+
|
17
|
+
In jurisdictions which do not recognize Public Domain property (e.g. Germany as of
|
18
|
+
2010), this software is Copyright (c) 2007-2010 by Baptiste Lepilleur, and is
|
19
|
+
released under the terms of the MIT License (see below).
|
20
|
+
|
21
|
+
In jurisdictions which recognize Public Domain property, the user of this
|
22
|
+
software may choose to accept it either as 1) Public Domain, 2) under the
|
23
|
+
conditions of the MIT License (see below), or 3) under the terms of dual
|
24
|
+
Public Domain/MIT License conditions described here, as they choose.
|
25
|
+
|
26
|
+
The MIT License is about as close to Public Domain as a license can get, and is
|
27
|
+
described in clear, concise terms at:
|
28
|
+
|
29
|
+
http://en.wikipedia.org/wiki/MIT_License
|
30
|
+
|
31
|
+
The full text of the MIT License follows:
|
32
|
+
|
33
|
+
========================================================================
|
34
|
+
Copyright (c) 2007-2010 Baptiste Lepilleur
|
35
|
+
|
36
|
+
Permission is hereby granted, free of charge, to any person
|
37
|
+
obtaining a copy of this software and associated documentation
|
38
|
+
files (the "Software"), to deal in the Software without
|
39
|
+
restriction, including without limitation the rights to use, copy,
|
40
|
+
modify, merge, publish, distribute, sublicense, and/or sell copies
|
41
|
+
of the Software, and to permit persons to whom the Software is
|
42
|
+
furnished to do so, subject to the following conditions:
|
43
|
+
|
44
|
+
The above copyright notice and this permission notice shall be
|
45
|
+
included in all copies or substantial portions of the Software.
|
46
|
+
|
47
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
48
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
49
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
50
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
|
51
|
+
BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
|
52
|
+
ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
53
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
54
|
+
SOFTWARE.
|
55
|
+
========================================================================
|
56
|
+
(END LICENSE TEXT)
|
57
|
+
|
58
|
+
The MIT license is compatible with both the GPL and commercial
|
59
|
+
software, affording one all of the rights of Public Domain with the
|
60
|
+
minor nuisance of being required to keep the above copyright notice
|
61
|
+
and license text in the source code. Note also that by accepting the
|
62
|
+
Public Domain "license" you can re-license your copy using whatever
|
63
|
+
license you like.
|
64
|
+
|
65
|
+
*/
|
66
|
+
|
67
|
+
// //////////////////////////////////////////////////////////////////////
|
68
|
+
// End of content of file: LICENSE
|
69
|
+
// //////////////////////////////////////////////////////////////////////
|
70
|
+
|
71
|
+
|
72
|
+
|
73
|
+
|
74
|
+
|
75
|
+
|
76
|
+
#include <jsoncpp/json.h>
|
77
|
+
|
78
|
+
|
79
|
+
// //////////////////////////////////////////////////////////////////////
|
80
|
+
// Beginning of content of file: src/lib_json/json_tool.h
|
81
|
+
// //////////////////////////////////////////////////////////////////////
|
82
|
+
|
83
|
+
// Copyright 2007-2010 Baptiste Lepilleur
|
84
|
+
// Distributed under MIT license, or public domain if desired and
|
85
|
+
// recognized in your jurisdiction.
|
86
|
+
// See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE
|
87
|
+
|
88
|
+
#ifndef LIB_JSONCPP_JSON_TOOL_H_INCLUDED
|
89
|
+
# define LIB_JSONCPP_JSON_TOOL_H_INCLUDED
|
90
|
+
|
91
|
+
/* This header provides common string manipulation support, such as UTF-8,
|
92
|
+
* portable conversion from/to string...
|
93
|
+
*
|
94
|
+
* It is an internal header that must not be exposed.
|
95
|
+
*/
|
96
|
+
|
97
|
+
namespace Json {
|
98
|
+
|
99
|
+
/// Converts a unicode code-point to UTF-8.
|
100
|
+
static inline std::string
|
101
|
+
codePointToUTF8(unsigned int cp)
|
102
|
+
{
|
103
|
+
std::string result;
|
104
|
+
|
105
|
+
// based on description from http://en.wikipedia.org/wiki/UTF-8
|
106
|
+
|
107
|
+
if (cp <= 0x7f)
|
108
|
+
{
|
109
|
+
result.resize(1);
|
110
|
+
result[0] = static_cast<char>(cp);
|
111
|
+
}
|
112
|
+
else if (cp <= 0x7FF)
|
113
|
+
{
|
114
|
+
result.resize(2);
|
115
|
+
result[1] = static_cast<char>(0x80 | (0x3f & cp));
|
116
|
+
result[0] = static_cast<char>(0xC0 | (0x1f & (cp >> 6)));
|
117
|
+
}
|
118
|
+
else if (cp <= 0xFFFF)
|
119
|
+
{
|
120
|
+
result.resize(3);
|
121
|
+
result[2] = static_cast<char>(0x80 | (0x3f & cp));
|
122
|
+
result[1] = 0x80 | static_cast<char>((0x3f & (cp >> 6)));
|
123
|
+
result[0] = 0xE0 | static_cast<char>((0xf & (cp >> 12)));
|
124
|
+
}
|
125
|
+
else if (cp <= 0x10FFFF)
|
126
|
+
{
|
127
|
+
result.resize(4);
|
128
|
+
result[3] = static_cast<char>(0x80 | (0x3f & cp));
|
129
|
+
result[2] = static_cast<char>(0x80 | (0x3f & (cp >> 6)));
|
130
|
+
result[1] = static_cast<char>(0x80 | (0x3f & (cp >> 12)));
|
131
|
+
result[0] = static_cast<char>(0xF0 | (0x7 & (cp >> 18)));
|
132
|
+
}
|
133
|
+
|
134
|
+
return result;
|
135
|
+
}
|
136
|
+
|
137
|
+
|
138
|
+
/// Returns true if ch is a control character (in range [0,32[).
|
139
|
+
static inline bool
|
140
|
+
isControlCharacter(char ch)
|
141
|
+
{
|
142
|
+
return ch > 0 && ch <= 0x1F;
|
143
|
+
}
|
144
|
+
|
145
|
+
|
146
|
+
enum {
|
147
|
+
/// Constant that specify the size of the buffer that must be passed to uintToString.
|
148
|
+
uintToStringBufferSize = 3*sizeof(LargestUInt)+1
|
149
|
+
};
|
150
|
+
|
151
|
+
// Defines a char buffer for use with uintToString().
|
152
|
+
typedef char UIntToStringBuffer[uintToStringBufferSize];
|
153
|
+
|
154
|
+
|
155
|
+
/** Converts an unsigned integer to string.
|
156
|
+
* @param value Unsigned interger to convert to string
|
157
|
+
* @param current Input/Output string buffer.
|
158
|
+
* Must have at least uintToStringBufferSize chars free.
|
159
|
+
*/
|
160
|
+
static inline void
|
161
|
+
uintToString( LargestUInt value,
|
162
|
+
char *¤t )
|
163
|
+
{
|
164
|
+
*--current = 0;
|
165
|
+
do
|
166
|
+
{
|
167
|
+
*--current = char(value % 10) + '0';
|
168
|
+
value /= 10;
|
169
|
+
}
|
170
|
+
while ( value != 0 );
|
171
|
+
}
|
172
|
+
|
173
|
+
} // namespace Json {
|
174
|
+
|
175
|
+
#endif // LIB_JSONCPP_JSON_TOOL_H_INCLUDED
|
176
|
+
|
177
|
+
// //////////////////////////////////////////////////////////////////////
|
178
|
+
// End of content of file: src/lib_json/json_tool.h
|
179
|
+
// //////////////////////////////////////////////////////////////////////
|
180
|
+
|
181
|
+
|
182
|
+
|
183
|
+
|
184
|
+
|
185
|
+
|
186
|
+
// //////////////////////////////////////////////////////////////////////
|
187
|
+
// Beginning of content of file: src/lib_json/json_reader.cpp
|
188
|
+
// //////////////////////////////////////////////////////////////////////
|
189
|
+
|
190
|
+
// Copyright 2007-2010 Baptiste Lepilleur
|
191
|
+
// Distributed under MIT license, or public domain if desired and
|
192
|
+
// recognized in your jurisdiction.
|
193
|
+
// See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE
|
194
|
+
|
195
|
+
#if !defined(JSON_IS_AMALGAMATION)
|
196
|
+
# include <json/reader.h>
|
197
|
+
# include <json/value.h>
|
198
|
+
# include "json_tool.h"
|
199
|
+
#endif // if !defined(JSON_IS_AMALGAMATION)
|
200
|
+
#include <utility>
|
201
|
+
#include <cstdio>
|
202
|
+
#include <cassert>
|
203
|
+
#include <cstring>
|
204
|
+
#include <iostream>
|
205
|
+
#include <stdexcept>
|
206
|
+
#include <string.h>
|
207
|
+
#include <boost/math/special_functions/fpclassify.hpp>
|
208
|
+
|
209
|
+
#if _MSC_VER >= 1400 // VC++ 8.0
|
210
|
+
#pragma warning( disable : 4996 ) // disable warning about strdup being deprecated.
|
211
|
+
#endif
|
212
|
+
|
213
|
+
namespace Json {
|
214
|
+
|
215
|
+
// Implementation of class Features
|
216
|
+
// ////////////////////////////////
|
217
|
+
|
218
|
+
Features::Features()
|
219
|
+
: allowComments_( true )
|
220
|
+
, strictRoot_( false )
|
221
|
+
{
|
222
|
+
}
|
223
|
+
|
224
|
+
|
225
|
+
Features
|
226
|
+
Features::all()
|
227
|
+
{
|
228
|
+
return Features();
|
229
|
+
}
|
230
|
+
|
231
|
+
|
232
|
+
Features
|
233
|
+
Features::strictMode()
|
234
|
+
{
|
235
|
+
Features features;
|
236
|
+
features.allowComments_ = false;
|
237
|
+
features.strictRoot_ = true;
|
238
|
+
return features;
|
239
|
+
}
|
240
|
+
|
241
|
+
// Implementation of class Reader
|
242
|
+
// ////////////////////////////////
|
243
|
+
|
244
|
+
|
245
|
+
static inline bool
|
246
|
+
in( Reader::Char c, Reader::Char c1, Reader::Char c2, Reader::Char c3, Reader::Char c4 )
|
247
|
+
{
|
248
|
+
return c == c1 || c == c2 || c == c3 || c == c4;
|
249
|
+
}
|
250
|
+
|
251
|
+
static inline bool
|
252
|
+
in( Reader::Char c, Reader::Char c1, Reader::Char c2, Reader::Char c3, Reader::Char c4, Reader::Char c5 )
|
253
|
+
{
|
254
|
+
return c == c1 || c == c2 || c == c3 || c == c4 || c == c5;
|
255
|
+
}
|
256
|
+
|
257
|
+
|
258
|
+
static bool
|
259
|
+
containsNewLine( Reader::Location begin,
|
260
|
+
Reader::Location end )
|
261
|
+
{
|
262
|
+
for ( ;begin < end; ++begin )
|
263
|
+
if ( *begin == '\n' || *begin == '\r' )
|
264
|
+
return true;
|
265
|
+
return false;
|
266
|
+
}
|
267
|
+
|
268
|
+
|
269
|
+
// Class Reader
|
270
|
+
// //////////////////////////////////////////////////////////////////
|
271
|
+
|
272
|
+
Reader::Reader()
|
273
|
+
: features_( Features::all() )
|
274
|
+
{
|
275
|
+
}
|
276
|
+
|
277
|
+
|
278
|
+
Reader::Reader( const Features &features )
|
279
|
+
: features_( features )
|
280
|
+
{
|
281
|
+
}
|
282
|
+
|
283
|
+
|
284
|
+
bool
|
285
|
+
Reader::parse( const std::string &document,
|
286
|
+
Value &root,
|
287
|
+
bool collectComments )
|
288
|
+
{
|
289
|
+
document_ = document;
|
290
|
+
const char *begin = document_.c_str();
|
291
|
+
const char *end = begin + document_.length();
|
292
|
+
return parse( begin, end, root, collectComments );
|
293
|
+
}
|
294
|
+
|
295
|
+
|
296
|
+
bool
|
297
|
+
Reader::parse( std::istream& sin,
|
298
|
+
Value &root,
|
299
|
+
bool collectComments )
|
300
|
+
{
|
301
|
+
//std::istream_iterator<char> begin(sin);
|
302
|
+
//std::istream_iterator<char> end;
|
303
|
+
// Those would allow streamed input from a file, if parse() were a
|
304
|
+
// template function.
|
305
|
+
|
306
|
+
// Since std::string is reference-counted, this at least does not
|
307
|
+
// create an extra copy.
|
308
|
+
std::string doc;
|
309
|
+
std::getline(sin, doc, (char)EOF);
|
310
|
+
return parse( doc, root, collectComments );
|
311
|
+
}
|
312
|
+
|
313
|
+
bool
|
314
|
+
Reader::parse( const char *beginDoc, const char *endDoc,
|
315
|
+
Value &root,
|
316
|
+
bool collectComments )
|
317
|
+
{
|
318
|
+
if ( !features_.allowComments_ )
|
319
|
+
{
|
320
|
+
collectComments = false;
|
321
|
+
}
|
322
|
+
|
323
|
+
begin_ = beginDoc;
|
324
|
+
end_ = endDoc;
|
325
|
+
collectComments_ = collectComments;
|
326
|
+
current_ = begin_;
|
327
|
+
lastValueEnd_ = 0;
|
328
|
+
lastValue_ = 0;
|
329
|
+
commentsBefore_ = "";
|
330
|
+
errors_.clear();
|
331
|
+
while ( !nodes_.empty() )
|
332
|
+
nodes_.pop();
|
333
|
+
nodes_.push( &root );
|
334
|
+
|
335
|
+
bool successful = readValue();
|
336
|
+
Token token;
|
337
|
+
skipCommentTokens( token );
|
338
|
+
if ( collectComments_ && !commentsBefore_.empty() )
|
339
|
+
root.setComment( commentsBefore_, commentAfter );
|
340
|
+
if ( features_.strictRoot_ )
|
341
|
+
{
|
342
|
+
if ( !root.isArray() && !root.isObject() )
|
343
|
+
{
|
344
|
+
// Set error location to start of doc, ideally should be first token found in doc
|
345
|
+
token.type_ = tokenError;
|
346
|
+
token.start_ = beginDoc;
|
347
|
+
token.end_ = endDoc;
|
348
|
+
addError( "A valid JSON document must be either an array or an object value.",
|
349
|
+
token );
|
350
|
+
return false;
|
351
|
+
}
|
352
|
+
}
|
353
|
+
return successful;
|
354
|
+
}
|
355
|
+
|
356
|
+
|
357
|
+
bool
|
358
|
+
Reader::readValue()
|
359
|
+
{
|
360
|
+
Token token;
|
361
|
+
skipCommentTokens( token );
|
362
|
+
bool successful = true;
|
363
|
+
|
364
|
+
if ( collectComments_ && !commentsBefore_.empty() )
|
365
|
+
{
|
366
|
+
currentValue().setComment( commentsBefore_, commentBefore );
|
367
|
+
commentsBefore_ = "";
|
368
|
+
}
|
369
|
+
|
370
|
+
|
371
|
+
switch ( token.type_ )
|
372
|
+
{
|
373
|
+
case tokenObjectBegin:
|
374
|
+
successful = readObject( token );
|
375
|
+
break;
|
376
|
+
case tokenArrayBegin:
|
377
|
+
successful = readArray( token );
|
378
|
+
break;
|
379
|
+
case tokenNumber:
|
380
|
+
successful = decodeNumber( token );
|
381
|
+
break;
|
382
|
+
case tokenString:
|
383
|
+
successful = decodeString( token );
|
384
|
+
break;
|
385
|
+
case tokenTrue:
|
386
|
+
currentValue() = true;
|
387
|
+
break;
|
388
|
+
case tokenFalse:
|
389
|
+
currentValue() = false;
|
390
|
+
break;
|
391
|
+
case tokenNull:
|
392
|
+
currentValue() = Value();
|
393
|
+
break;
|
394
|
+
default:
|
395
|
+
return addError( "Syntax error: value, object or array expected.", token );
|
396
|
+
}
|
397
|
+
|
398
|
+
if ( collectComments_ )
|
399
|
+
{
|
400
|
+
lastValueEnd_ = current_;
|
401
|
+
lastValue_ = ¤tValue();
|
402
|
+
}
|
403
|
+
|
404
|
+
return successful;
|
405
|
+
}
|
406
|
+
|
407
|
+
|
408
|
+
void
|
409
|
+
Reader::skipCommentTokens( Token &token )
|
410
|
+
{
|
411
|
+
if ( features_.allowComments_ )
|
412
|
+
{
|
413
|
+
do
|
414
|
+
{
|
415
|
+
readToken( token );
|
416
|
+
}
|
417
|
+
while ( token.type_ == tokenComment );
|
418
|
+
}
|
419
|
+
else
|
420
|
+
{
|
421
|
+
readToken( token );
|
422
|
+
}
|
423
|
+
}
|
424
|
+
|
425
|
+
|
426
|
+
bool
|
427
|
+
Reader::expectToken( TokenType type, Token &token, const char *message )
|
428
|
+
{
|
429
|
+
readToken( token );
|
430
|
+
if ( token.type_ != type )
|
431
|
+
return addError( message, token );
|
432
|
+
return true;
|
433
|
+
}
|
434
|
+
|
435
|
+
|
436
|
+
bool
|
437
|
+
Reader::readToken( Token &token )
|
438
|
+
{
|
439
|
+
skipSpaces();
|
440
|
+
token.start_ = current_;
|
441
|
+
Char c = getNextChar();
|
442
|
+
bool ok = true;
|
443
|
+
switch ( c )
|
444
|
+
{
|
445
|
+
case '{':
|
446
|
+
token.type_ = tokenObjectBegin;
|
447
|
+
break;
|
448
|
+
case '}':
|
449
|
+
token.type_ = tokenObjectEnd;
|
450
|
+
break;
|
451
|
+
case '[':
|
452
|
+
token.type_ = tokenArrayBegin;
|
453
|
+
break;
|
454
|
+
case ']':
|
455
|
+
token.type_ = tokenArrayEnd;
|
456
|
+
break;
|
457
|
+
case '"':
|
458
|
+
token.type_ = tokenString;
|
459
|
+
ok = readString();
|
460
|
+
break;
|
461
|
+
case '/':
|
462
|
+
token.type_ = tokenComment;
|
463
|
+
ok = readComment();
|
464
|
+
break;
|
465
|
+
case '0':
|
466
|
+
case '1':
|
467
|
+
case '2':
|
468
|
+
case '3':
|
469
|
+
case '4':
|
470
|
+
case '5':
|
471
|
+
case '6':
|
472
|
+
case '7':
|
473
|
+
case '8':
|
474
|
+
case '9':
|
475
|
+
case '-':
|
476
|
+
token.type_ = tokenNumber;
|
477
|
+
readNumber();
|
478
|
+
break;
|
479
|
+
case 't':
|
480
|
+
token.type_ = tokenTrue;
|
481
|
+
ok = match( "rue", 3 );
|
482
|
+
break;
|
483
|
+
case 'f':
|
484
|
+
token.type_ = tokenFalse;
|
485
|
+
ok = match( "alse", 4 );
|
486
|
+
break;
|
487
|
+
case 'n':
|
488
|
+
token.type_ = tokenNull;
|
489
|
+
ok = match( "ull", 3 );
|
490
|
+
break;
|
491
|
+
case ',':
|
492
|
+
token.type_ = tokenArraySeparator;
|
493
|
+
break;
|
494
|
+
case ':':
|
495
|
+
token.type_ = tokenMemberSeparator;
|
496
|
+
break;
|
497
|
+
case 0:
|
498
|
+
token.type_ = tokenEndOfStream;
|
499
|
+
break;
|
500
|
+
default:
|
501
|
+
ok = false;
|
502
|
+
break;
|
503
|
+
}
|
504
|
+
if ( !ok )
|
505
|
+
token.type_ = tokenError;
|
506
|
+
token.end_ = current_;
|
507
|
+
return true;
|
508
|
+
}
|
509
|
+
|
510
|
+
|
511
|
+
void
|
512
|
+
Reader::skipSpaces()
|
513
|
+
{
|
514
|
+
while ( current_ != end_ )
|
515
|
+
{
|
516
|
+
Char c = *current_;
|
517
|
+
if ( c == ' ' || c == '\t' || c == '\r' || c == '\n' )
|
518
|
+
++current_;
|
519
|
+
else
|
520
|
+
break;
|
521
|
+
}
|
522
|
+
}
|
523
|
+
|
524
|
+
|
525
|
+
bool
|
526
|
+
Reader::match( Location pattern,
|
527
|
+
int patternLength )
|
528
|
+
{
|
529
|
+
if ( end_ - current_ < patternLength )
|
530
|
+
return false;
|
531
|
+
int index = patternLength;
|
532
|
+
while ( index-- )
|
533
|
+
if ( current_[index] != pattern[index] )
|
534
|
+
return false;
|
535
|
+
current_ += patternLength;
|
536
|
+
return true;
|
537
|
+
}
|
538
|
+
|
539
|
+
|
540
|
+
bool
|
541
|
+
Reader::readComment()
|
542
|
+
{
|
543
|
+
Location commentBegin = current_ - 1;
|
544
|
+
Char c = getNextChar();
|
545
|
+
bool successful = false;
|
546
|
+
if ( c == '*' )
|
547
|
+
successful = readCStyleComment();
|
548
|
+
else if ( c == '/' )
|
549
|
+
successful = readCppStyleComment();
|
550
|
+
if ( !successful )
|
551
|
+
return false;
|
552
|
+
|
553
|
+
if ( collectComments_ )
|
554
|
+
{
|
555
|
+
CommentPlacement placement = commentBefore;
|
556
|
+
if ( lastValueEnd_ && !containsNewLine( lastValueEnd_, commentBegin ) )
|
557
|
+
{
|
558
|
+
if ( c != '*' || !containsNewLine( commentBegin, current_ ) )
|
559
|
+
placement = commentAfterOnSameLine;
|
560
|
+
}
|
561
|
+
|
562
|
+
addComment( commentBegin, current_, placement );
|
563
|
+
}
|
564
|
+
return true;
|
565
|
+
}
|
566
|
+
|
567
|
+
|
568
|
+
void
|
569
|
+
Reader::addComment( Location begin,
|
570
|
+
Location end,
|
571
|
+
CommentPlacement placement )
|
572
|
+
{
|
573
|
+
assert( collectComments_ );
|
574
|
+
if ( placement == commentAfterOnSameLine )
|
575
|
+
{
|
576
|
+
assert( lastValue_ != 0 );
|
577
|
+
lastValue_->setComment( std::string( begin, end ), placement );
|
578
|
+
}
|
579
|
+
else
|
580
|
+
{
|
581
|
+
if ( !commentsBefore_.empty() )
|
582
|
+
commentsBefore_ += "\n";
|
583
|
+
commentsBefore_ += std::string( begin, end );
|
584
|
+
}
|
585
|
+
}
|
586
|
+
|
587
|
+
|
588
|
+
bool
|
589
|
+
Reader::readCStyleComment()
|
590
|
+
{
|
591
|
+
while ( current_ != end_ )
|
592
|
+
{
|
593
|
+
Char c = getNextChar();
|
594
|
+
if ( c == '*' && *current_ == '/' )
|
595
|
+
break;
|
596
|
+
}
|
597
|
+
return getNextChar() == '/';
|
598
|
+
}
|
599
|
+
|
600
|
+
|
601
|
+
bool
|
602
|
+
Reader::readCppStyleComment()
|
603
|
+
{
|
604
|
+
while ( current_ != end_ )
|
605
|
+
{
|
606
|
+
Char c = getNextChar();
|
607
|
+
if ( c == '\r' || c == '\n' )
|
608
|
+
break;
|
609
|
+
}
|
610
|
+
return true;
|
611
|
+
}
|
612
|
+
|
613
|
+
|
614
|
+
void
|
615
|
+
Reader::readNumber()
|
616
|
+
{
|
617
|
+
while ( current_ != end_ )
|
618
|
+
{
|
619
|
+
if ( !(*current_ >= '0' && *current_ <= '9') &&
|
620
|
+
!in( *current_, '.', 'e', 'E', '+', '-' ) )
|
621
|
+
break;
|
622
|
+
++current_;
|
623
|
+
}
|
624
|
+
}
|
625
|
+
|
626
|
+
bool
|
627
|
+
Reader::readString()
|
628
|
+
{
|
629
|
+
Char c = 0;
|
630
|
+
while ( current_ != end_ )
|
631
|
+
{
|
632
|
+
c = getNextChar();
|
633
|
+
if ( c == '\\' )
|
634
|
+
getNextChar();
|
635
|
+
else if ( c == '"' )
|
636
|
+
break;
|
637
|
+
}
|
638
|
+
return c == '"';
|
639
|
+
}
|
640
|
+
|
641
|
+
|
642
|
+
bool
|
643
|
+
Reader::readObject( Token &/*tokenStart*/ )
|
644
|
+
{
|
645
|
+
Token tokenName;
|
646
|
+
std::string name;
|
647
|
+
currentValue() = Value( objectValue );
|
648
|
+
while ( readToken( tokenName ) )
|
649
|
+
{
|
650
|
+
bool initialTokenOk = true;
|
651
|
+
while ( tokenName.type_ == tokenComment && initialTokenOk )
|
652
|
+
initialTokenOk = readToken( tokenName );
|
653
|
+
if ( !initialTokenOk )
|
654
|
+
break;
|
655
|
+
if ( tokenName.type_ == tokenObjectEnd && name.empty() ) // empty object
|
656
|
+
return true;
|
657
|
+
if ( tokenName.type_ != tokenString )
|
658
|
+
break;
|
659
|
+
|
660
|
+
name = "";
|
661
|
+
if ( !decodeString( tokenName, name ) )
|
662
|
+
return recoverFromError( tokenObjectEnd );
|
663
|
+
|
664
|
+
Token colon;
|
665
|
+
if ( !readToken( colon ) || colon.type_ != tokenMemberSeparator )
|
666
|
+
{
|
667
|
+
return addErrorAndRecover( "Missing ':' after object member name",
|
668
|
+
colon,
|
669
|
+
tokenObjectEnd );
|
670
|
+
}
|
671
|
+
Value &value = currentValue()[ name ];
|
672
|
+
nodes_.push( &value );
|
673
|
+
bool ok = readValue();
|
674
|
+
nodes_.pop();
|
675
|
+
if ( !ok ) // error already set
|
676
|
+
return recoverFromError( tokenObjectEnd );
|
677
|
+
|
678
|
+
Token comma;
|
679
|
+
if ( !readToken( comma )
|
680
|
+
|| ( comma.type_ != tokenObjectEnd &&
|
681
|
+
comma.type_ != tokenArraySeparator &&
|
682
|
+
comma.type_ != tokenComment ) )
|
683
|
+
{
|
684
|
+
return addErrorAndRecover( "Missing ',' or '}' in object declaration",
|
685
|
+
comma,
|
686
|
+
tokenObjectEnd );
|
687
|
+
}
|
688
|
+
bool finalizeTokenOk = true;
|
689
|
+
while ( comma.type_ == tokenComment &&
|
690
|
+
finalizeTokenOk )
|
691
|
+
finalizeTokenOk = readToken( comma );
|
692
|
+
if ( comma.type_ == tokenObjectEnd )
|
693
|
+
return true;
|
694
|
+
}
|
695
|
+
return addErrorAndRecover( "Missing '}' or object member name",
|
696
|
+
tokenName,
|
697
|
+
tokenObjectEnd );
|
698
|
+
}
|
699
|
+
|
700
|
+
|
701
|
+
bool
|
702
|
+
Reader::readArray( Token &/*tokenStart*/ )
|
703
|
+
{
|
704
|
+
currentValue() = Value( arrayValue );
|
705
|
+
skipSpaces();
|
706
|
+
if ( *current_ == ']' ) // empty array
|
707
|
+
{
|
708
|
+
Token endArray;
|
709
|
+
readToken( endArray );
|
710
|
+
return true;
|
711
|
+
}
|
712
|
+
int index = 0;
|
713
|
+
for (;;)
|
714
|
+
{
|
715
|
+
Value &value = currentValue()[ index++ ];
|
716
|
+
nodes_.push( &value );
|
717
|
+
bool ok = readValue();
|
718
|
+
nodes_.pop();
|
719
|
+
if ( !ok ) // error already set
|
720
|
+
return recoverFromError( tokenArrayEnd );
|
721
|
+
|
722
|
+
Token token;
|
723
|
+
// Accept Comment after last item in the array.
|
724
|
+
ok = readToken( token );
|
725
|
+
while ( token.type_ == tokenComment && ok )
|
726
|
+
{
|
727
|
+
ok = readToken( token );
|
728
|
+
}
|
729
|
+
bool badTokenType = ( token.type_ != tokenArraySeparator &&
|
730
|
+
token.type_ != tokenArrayEnd );
|
731
|
+
if ( !ok || badTokenType )
|
732
|
+
{
|
733
|
+
return addErrorAndRecover( "Missing ',' or ']' in array declaration",
|
734
|
+
token,
|
735
|
+
tokenArrayEnd );
|
736
|
+
}
|
737
|
+
if ( token.type_ == tokenArrayEnd )
|
738
|
+
break;
|
739
|
+
}
|
740
|
+
return true;
|
741
|
+
}
|
742
|
+
|
743
|
+
|
744
|
+
bool
|
745
|
+
Reader::decodeNumber( Token &token )
|
746
|
+
{
|
747
|
+
bool isDouble = false;
|
748
|
+
for ( Location inspect = token.start_; inspect != token.end_; ++inspect )
|
749
|
+
{
|
750
|
+
isDouble = isDouble
|
751
|
+
|| in( *inspect, '.', 'e', 'E', '+' )
|
752
|
+
|| ( *inspect == '-' && inspect != token.start_ );
|
753
|
+
}
|
754
|
+
if ( isDouble )
|
755
|
+
return decodeDouble( token );
|
756
|
+
// Attempts to parse the number as an integer. If the number is
|
757
|
+
// larger than the maximum supported value of an integer then
|
758
|
+
// we decode the number as a double.
|
759
|
+
Location current = token.start_;
|
760
|
+
bool isNegative = *current == '-';
|
761
|
+
if ( isNegative )
|
762
|
+
++current;
|
763
|
+
Value::LargestUInt maxIntegerValue = isNegative ? Value::LargestUInt(-Value::minLargestInt)
|
764
|
+
: Value::maxLargestUInt;
|
765
|
+
Value::LargestUInt threshold = maxIntegerValue / 10;
|
766
|
+
Value::UInt lastDigitThreshold = Value::UInt( maxIntegerValue % 10 );
|
767
|
+
assert( lastDigitThreshold >=0 && lastDigitThreshold <= 9 );
|
768
|
+
Value::LargestUInt value = 0;
|
769
|
+
while ( current < token.end_ )
|
770
|
+
{
|
771
|
+
Char c = *current++;
|
772
|
+
if ( c < '0' || c > '9' )
|
773
|
+
return addError( "'" + std::string( token.start_, token.end_ ) + "' is not a number.", token );
|
774
|
+
Value::UInt digit(c - '0');
|
775
|
+
if ( value >= threshold )
|
776
|
+
{
|
777
|
+
// If the current digit is not the last one, or if it is
|
778
|
+
// greater than the last digit of the maximum integer value,
|
779
|
+
// the parse the number as a double.
|
780
|
+
if ( current != token.end_ || digit > lastDigitThreshold )
|
781
|
+
{
|
782
|
+
return decodeDouble( token );
|
783
|
+
}
|
784
|
+
}
|
785
|
+
value = value * 10 + digit;
|
786
|
+
}
|
787
|
+
if ( isNegative )
|
788
|
+
currentValue() = -Value::LargestInt( value );
|
789
|
+
else if ( value <= Value::LargestUInt(Value::maxInt) )
|
790
|
+
currentValue() = Value::LargestInt( value );
|
791
|
+
else
|
792
|
+
currentValue() = value;
|
793
|
+
return true;
|
794
|
+
}
|
795
|
+
|
796
|
+
|
797
|
+
bool
|
798
|
+
Reader::decodeDouble( Token &token )
|
799
|
+
{
|
800
|
+
double value = 0;
|
801
|
+
const int bufferSize = 32;
|
802
|
+
int count;
|
803
|
+
int length = int(token.end_ - token.start_);
|
804
|
+
if ( length <= bufferSize )
|
805
|
+
{
|
806
|
+
Char buffer[bufferSize+1];
|
807
|
+
memcpy( buffer, token.start_, length );
|
808
|
+
buffer[length] = 0;
|
809
|
+
count = sscanf( buffer, "%lf", &value );
|
810
|
+
}
|
811
|
+
else
|
812
|
+
{
|
813
|
+
std::string buffer( token.start_, token.end_ );
|
814
|
+
count = sscanf( buffer.c_str(), "%lf", &value );
|
815
|
+
}
|
816
|
+
|
817
|
+
if ( count != 1 )
|
818
|
+
return addError( "'" + std::string( token.start_, token.end_ ) + "' is not a number.", token );
|
819
|
+
currentValue() = value;
|
820
|
+
return true;
|
821
|
+
}
|
822
|
+
|
823
|
+
|
824
|
+
bool
|
825
|
+
Reader::decodeString( Token &token )
|
826
|
+
{
|
827
|
+
std::string decoded;
|
828
|
+
if ( !decodeString( token, decoded ) )
|
829
|
+
return false;
|
830
|
+
currentValue() = decoded;
|
831
|
+
return true;
|
832
|
+
}
|
833
|
+
|
834
|
+
|
835
|
+
bool
|
836
|
+
Reader::decodeString( Token &token, std::string &decoded )
|
837
|
+
{
|
838
|
+
decoded.reserve( token.end_ - token.start_ - 2 );
|
839
|
+
Location current = token.start_ + 1; // skip '"'
|
840
|
+
Location end = token.end_ - 1; // do not include '"'
|
841
|
+
while ( current != end )
|
842
|
+
{
|
843
|
+
Char c = *current++;
|
844
|
+
if ( c == '"' )
|
845
|
+
break;
|
846
|
+
else if ( c == '\\' )
|
847
|
+
{
|
848
|
+
if ( current == end )
|
849
|
+
return addError( "Empty escape sequence in string", token, current );
|
850
|
+
Char escape = *current++;
|
851
|
+
switch ( escape )
|
852
|
+
{
|
853
|
+
case '"': decoded += '"'; break;
|
854
|
+
case '/': decoded += '/'; break;
|
855
|
+
case '\\': decoded += '\\'; break;
|
856
|
+
case 'b': decoded += '\b'; break;
|
857
|
+
case 'f': decoded += '\f'; break;
|
858
|
+
case 'n': decoded += '\n'; break;
|
859
|
+
case 'r': decoded += '\r'; break;
|
860
|
+
case 't': decoded += '\t'; break;
|
861
|
+
case 'u':
|
862
|
+
{
|
863
|
+
unsigned int unicode;
|
864
|
+
if ( !decodeUnicodeCodePoint( token, current, end, unicode ) )
|
865
|
+
return false;
|
866
|
+
decoded += codePointToUTF8(unicode);
|
867
|
+
}
|
868
|
+
break;
|
869
|
+
default:
|
870
|
+
return addError( "Bad escape sequence in string", token, current );
|
871
|
+
}
|
872
|
+
}
|
873
|
+
else
|
874
|
+
{
|
875
|
+
decoded += c;
|
876
|
+
}
|
877
|
+
}
|
878
|
+
return true;
|
879
|
+
}
|
880
|
+
|
881
|
+
bool
|
882
|
+
Reader::decodeUnicodeCodePoint( Token &token,
|
883
|
+
Location ¤t,
|
884
|
+
Location end,
|
885
|
+
unsigned int &unicode )
|
886
|
+
{
|
887
|
+
|
888
|
+
if ( !decodeUnicodeEscapeSequence( token, current, end, unicode ) )
|
889
|
+
return false;
|
890
|
+
if (unicode >= 0xD800 && unicode <= 0xDBFF)
|
891
|
+
{
|
892
|
+
// surrogate pairs
|
893
|
+
if (end - current < 6)
|
894
|
+
return addError( "additional six characters expected to parse unicode surrogate pair.", token, current );
|
895
|
+
unsigned int surrogatePair;
|
896
|
+
if (*(current++) == '\\' && *(current++)== 'u')
|
897
|
+
{
|
898
|
+
if (decodeUnicodeEscapeSequence( token, current, end, surrogatePair ))
|
899
|
+
{
|
900
|
+
unicode = 0x10000 + ((unicode & 0x3FF) << 10) + (surrogatePair & 0x3FF);
|
901
|
+
}
|
902
|
+
else
|
903
|
+
return false;
|
904
|
+
}
|
905
|
+
else
|
906
|
+
return addError( "expecting another \\u token to begin the second half of a unicode surrogate pair", token, current );
|
907
|
+
}
|
908
|
+
return true;
|
909
|
+
}
|
910
|
+
|
911
|
+
bool
|
912
|
+
Reader::decodeUnicodeEscapeSequence( Token &token,
|
913
|
+
Location ¤t,
|
914
|
+
Location end,
|
915
|
+
unsigned int &unicode )
|
916
|
+
{
|
917
|
+
if ( end - current < 4 )
|
918
|
+
return addError( "Bad unicode escape sequence in string: four digits expected.", token, current );
|
919
|
+
unicode = 0;
|
920
|
+
for ( int index =0; index < 4; ++index )
|
921
|
+
{
|
922
|
+
Char c = *current++;
|
923
|
+
unicode *= 16;
|
924
|
+
if ( c >= '0' && c <= '9' )
|
925
|
+
unicode += c - '0';
|
926
|
+
else if ( c >= 'a' && c <= 'f' )
|
927
|
+
unicode += c - 'a' + 10;
|
928
|
+
else if ( c >= 'A' && c <= 'F' )
|
929
|
+
unicode += c - 'A' + 10;
|
930
|
+
else
|
931
|
+
return addError( "Bad unicode escape sequence in string: hexadecimal digit expected.", token, current );
|
932
|
+
}
|
933
|
+
return true;
|
934
|
+
}
|
935
|
+
|
936
|
+
|
937
|
+
bool
|
938
|
+
Reader::addError( const std::string &message,
|
939
|
+
Token &token,
|
940
|
+
Location extra )
|
941
|
+
{
|
942
|
+
ErrorInfo info;
|
943
|
+
info.token_ = token;
|
944
|
+
info.message_ = message;
|
945
|
+
info.extra_ = extra;
|
946
|
+
errors_.push_back( info );
|
947
|
+
return false;
|
948
|
+
}
|
949
|
+
|
950
|
+
|
951
|
+
bool
|
952
|
+
Reader::recoverFromError( TokenType skipUntilToken )
|
953
|
+
{
|
954
|
+
int errorCount = int(errors_.size());
|
955
|
+
Token skip;
|
956
|
+
for (;;)
|
957
|
+
{
|
958
|
+
if ( !readToken(skip) )
|
959
|
+
errors_.resize( errorCount ); // discard errors caused by recovery
|
960
|
+
if ( skip.type_ == skipUntilToken || skip.type_ == tokenEndOfStream )
|
961
|
+
break;
|
962
|
+
}
|
963
|
+
errors_.resize( errorCount );
|
964
|
+
return false;
|
965
|
+
}
|
966
|
+
|
967
|
+
|
968
|
+
bool
|
969
|
+
Reader::addErrorAndRecover( const std::string &message,
|
970
|
+
Token &token,
|
971
|
+
TokenType skipUntilToken )
|
972
|
+
{
|
973
|
+
addError( message, token );
|
974
|
+
return recoverFromError( skipUntilToken );
|
975
|
+
}
|
976
|
+
|
977
|
+
|
978
|
+
Value &
|
979
|
+
Reader::currentValue()
|
980
|
+
{
|
981
|
+
return *(nodes_.top());
|
982
|
+
}
|
983
|
+
|
984
|
+
|
985
|
+
Reader::Char
|
986
|
+
Reader::getNextChar()
|
987
|
+
{
|
988
|
+
if ( current_ == end_ )
|
989
|
+
return 0;
|
990
|
+
return *current_++;
|
991
|
+
}
|
992
|
+
|
993
|
+
|
994
|
+
void
|
995
|
+
Reader::getLocationLineAndColumn( Location location,
|
996
|
+
int &line,
|
997
|
+
int &column ) const
|
998
|
+
{
|
999
|
+
Location current = begin_;
|
1000
|
+
Location lastLineStart = current;
|
1001
|
+
line = 0;
|
1002
|
+
while ( current < location && current != end_ )
|
1003
|
+
{
|
1004
|
+
Char c = *current++;
|
1005
|
+
if ( c == '\r' )
|
1006
|
+
{
|
1007
|
+
if ( *current == '\n' )
|
1008
|
+
++current;
|
1009
|
+
lastLineStart = current;
|
1010
|
+
++line;
|
1011
|
+
}
|
1012
|
+
else if ( c == '\n' )
|
1013
|
+
{
|
1014
|
+
lastLineStart = current;
|
1015
|
+
++line;
|
1016
|
+
}
|
1017
|
+
}
|
1018
|
+
// column & line start at 1
|
1019
|
+
column = int(location - lastLineStart) + 1;
|
1020
|
+
++line;
|
1021
|
+
}
|
1022
|
+
|
1023
|
+
|
1024
|
+
std::string
|
1025
|
+
Reader::getLocationLineAndColumn( Location location ) const
|
1026
|
+
{
|
1027
|
+
int line, column;
|
1028
|
+
getLocationLineAndColumn( location, line, column );
|
1029
|
+
char buffer[18+16+16+1];
|
1030
|
+
sprintf( buffer, "Line %d, Column %d", line, column );
|
1031
|
+
return buffer;
|
1032
|
+
}
|
1033
|
+
|
1034
|
+
|
1035
|
+
// Deprecated. Preserved for backward compatibility
|
1036
|
+
std::string
|
1037
|
+
Reader::getFormatedErrorMessages() const
|
1038
|
+
{
|
1039
|
+
return getFormattedErrorMessages();
|
1040
|
+
}
|
1041
|
+
|
1042
|
+
|
1043
|
+
std::string
|
1044
|
+
Reader::getFormattedErrorMessages() const
|
1045
|
+
{
|
1046
|
+
std::string formattedMessage;
|
1047
|
+
for ( Errors::const_iterator itError = errors_.begin();
|
1048
|
+
itError != errors_.end();
|
1049
|
+
++itError )
|
1050
|
+
{
|
1051
|
+
const ErrorInfo &error = *itError;
|
1052
|
+
formattedMessage += "* " + getLocationLineAndColumn( error.token_.start_ ) + "\n";
|
1053
|
+
formattedMessage += " " + error.message_ + "\n";
|
1054
|
+
if ( error.extra_ )
|
1055
|
+
formattedMessage += "See " + getLocationLineAndColumn( error.extra_ ) + " for detail.\n";
|
1056
|
+
}
|
1057
|
+
return formattedMessage;
|
1058
|
+
}
|
1059
|
+
|
1060
|
+
|
1061
|
+
std::istream& operator>>( std::istream &sin, Value &root )
|
1062
|
+
{
|
1063
|
+
Json::Reader reader;
|
1064
|
+
bool ok = reader.parse(sin, root, true);
|
1065
|
+
//JSON_ASSERT( ok );
|
1066
|
+
if (!ok) throw std::runtime_error(reader.getFormattedErrorMessages());
|
1067
|
+
return sin;
|
1068
|
+
}
|
1069
|
+
|
1070
|
+
|
1071
|
+
} // namespace Json
|
1072
|
+
|
1073
|
+
// //////////////////////////////////////////////////////////////////////
|
1074
|
+
// End of content of file: src/lib_json/json_reader.cpp
|
1075
|
+
// //////////////////////////////////////////////////////////////////////
|
1076
|
+
|
1077
|
+
|
1078
|
+
|
1079
|
+
|
1080
|
+
|
1081
|
+
|
1082
|
+
// //////////////////////////////////////////////////////////////////////
|
1083
|
+
// Beginning of content of file: src/lib_json/json_batchallocator.h
|
1084
|
+
// //////////////////////////////////////////////////////////////////////
|
1085
|
+
|
1086
|
+
// Copyright 2007-2010 Baptiste Lepilleur
|
1087
|
+
// Distributed under MIT license, or public domain if desired and
|
1088
|
+
// recognized in your jurisdiction.
|
1089
|
+
// See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE
|
1090
|
+
|
1091
|
+
#ifndef JSONCPP_BATCHALLOCATOR_H_INCLUDED
|
1092
|
+
# define JSONCPP_BATCHALLOCATOR_H_INCLUDED
|
1093
|
+
|
1094
|
+
# include <stdlib.h>
|
1095
|
+
# include <assert.h>
|
1096
|
+
|
1097
|
+
# ifndef JSONCPP_DOC_EXCLUDE_IMPLEMENTATION
|
1098
|
+
|
1099
|
+
namespace Json {
|
1100
|
+
|
1101
|
+
/* Fast memory allocator.
|
1102
|
+
*
|
1103
|
+
* This memory allocator allocates memory for a batch of object (specified by
|
1104
|
+
* the page size, the number of object in each page).
|
1105
|
+
*
|
1106
|
+
* It does not allow the destruction of a single object. All the allocated objects
|
1107
|
+
* can be destroyed at once. The memory can be either released or reused for future
|
1108
|
+
* allocation.
|
1109
|
+
*
|
1110
|
+
* The in-place new operator must be used to construct the object using the pointer
|
1111
|
+
* returned by allocate.
|
1112
|
+
*/
|
1113
|
+
template<typename AllocatedType
|
1114
|
+
,const unsigned int objectPerAllocation>
|
1115
|
+
class BatchAllocator
|
1116
|
+
{
|
1117
|
+
public:
|
1118
|
+
typedef AllocatedType Type;
|
1119
|
+
|
1120
|
+
BatchAllocator( unsigned int objectsPerPage = 255 )
|
1121
|
+
: freeHead_( 0 )
|
1122
|
+
, objectsPerPage_( objectsPerPage )
|
1123
|
+
{
|
1124
|
+
// printf( "Size: %d => %s\n", sizeof(AllocatedType), typeid(AllocatedType).name() );
|
1125
|
+
assert( sizeof(AllocatedType) * objectPerAllocation >= sizeof(AllocatedType *) ); // We must be able to store a slist in the object free space.
|
1126
|
+
assert( objectsPerPage >= 16 );
|
1127
|
+
batches_ = allocateBatch( 0 ); // allocated a dummy page
|
1128
|
+
currentBatch_ = batches_;
|
1129
|
+
}
|
1130
|
+
|
1131
|
+
~BatchAllocator()
|
1132
|
+
{
|
1133
|
+
for ( BatchInfo *batch = batches_; batch; )
|
1134
|
+
{
|
1135
|
+
BatchInfo *nextBatch = batch->next_;
|
1136
|
+
free( batch );
|
1137
|
+
batch = nextBatch;
|
1138
|
+
}
|
1139
|
+
}
|
1140
|
+
|
1141
|
+
/// allocate space for an array of objectPerAllocation object.
|
1142
|
+
/// @warning it is the responsability of the caller to call objects constructors.
|
1143
|
+
AllocatedType *allocate()
|
1144
|
+
{
|
1145
|
+
if ( freeHead_ ) // returns node from free list.
|
1146
|
+
{
|
1147
|
+
AllocatedType *object = freeHead_;
|
1148
|
+
freeHead_ = *(AllocatedType **)object;
|
1149
|
+
return object;
|
1150
|
+
}
|
1151
|
+
if ( currentBatch_->used_ == currentBatch_->end_ )
|
1152
|
+
{
|
1153
|
+
currentBatch_ = currentBatch_->next_;
|
1154
|
+
while ( currentBatch_ && currentBatch_->used_ == currentBatch_->end_ )
|
1155
|
+
currentBatch_ = currentBatch_->next_;
|
1156
|
+
|
1157
|
+
if ( !currentBatch_ ) // no free batch found, allocate a new one
|
1158
|
+
{
|
1159
|
+
currentBatch_ = allocateBatch( objectsPerPage_ );
|
1160
|
+
currentBatch_->next_ = batches_; // insert at the head of the list
|
1161
|
+
batches_ = currentBatch_;
|
1162
|
+
}
|
1163
|
+
}
|
1164
|
+
AllocatedType *allocated = currentBatch_->used_;
|
1165
|
+
currentBatch_->used_ += objectPerAllocation;
|
1166
|
+
return allocated;
|
1167
|
+
}
|
1168
|
+
|
1169
|
+
/// Release the object.
|
1170
|
+
/// @warning it is the responsability of the caller to actually destruct the object.
|
1171
|
+
void release( AllocatedType *object )
|
1172
|
+
{
|
1173
|
+
assert( object != 0 );
|
1174
|
+
*(AllocatedType **)object = freeHead_;
|
1175
|
+
freeHead_ = object;
|
1176
|
+
}
|
1177
|
+
|
1178
|
+
private:
|
1179
|
+
struct BatchInfo
|
1180
|
+
{
|
1181
|
+
BatchInfo *next_;
|
1182
|
+
AllocatedType *used_;
|
1183
|
+
AllocatedType *end_;
|
1184
|
+
AllocatedType buffer_[objectPerAllocation];
|
1185
|
+
};
|
1186
|
+
|
1187
|
+
// disabled copy constructor and assignement operator.
|
1188
|
+
BatchAllocator( const BatchAllocator & );
|
1189
|
+
void operator =( const BatchAllocator &);
|
1190
|
+
|
1191
|
+
static BatchInfo *allocateBatch( unsigned int objectsPerPage )
|
1192
|
+
{
|
1193
|
+
const unsigned int mallocSize = sizeof(BatchInfo) - sizeof(AllocatedType)* objectPerAllocation
|
1194
|
+
+ sizeof(AllocatedType) * objectPerAllocation * objectsPerPage;
|
1195
|
+
BatchInfo *batch = static_cast<BatchInfo*>( malloc( mallocSize ) );
|
1196
|
+
batch->next_ = 0;
|
1197
|
+
batch->used_ = batch->buffer_;
|
1198
|
+
batch->end_ = batch->buffer_ + objectsPerPage;
|
1199
|
+
return batch;
|
1200
|
+
}
|
1201
|
+
|
1202
|
+
BatchInfo *batches_;
|
1203
|
+
BatchInfo *currentBatch_;
|
1204
|
+
/// Head of a single linked list within the allocated space of freeed object
|
1205
|
+
AllocatedType *freeHead_;
|
1206
|
+
unsigned int objectsPerPage_;
|
1207
|
+
};
|
1208
|
+
|
1209
|
+
|
1210
|
+
} // namespace Json
|
1211
|
+
|
1212
|
+
# endif // ifndef JSONCPP_DOC_INCLUDE_IMPLEMENTATION
|
1213
|
+
|
1214
|
+
#endif // JSONCPP_BATCHALLOCATOR_H_INCLUDED
|
1215
|
+
|
1216
|
+
|
1217
|
+
// //////////////////////////////////////////////////////////////////////
|
1218
|
+
// End of content of file: src/lib_json/json_batchallocator.h
|
1219
|
+
// //////////////////////////////////////////////////////////////////////
|
1220
|
+
|
1221
|
+
|
1222
|
+
|
1223
|
+
|
1224
|
+
|
1225
|
+
|
1226
|
+
// //////////////////////////////////////////////////////////////////////
|
1227
|
+
// Beginning of content of file: src/lib_json/json_valueiterator.inl
|
1228
|
+
// //////////////////////////////////////////////////////////////////////
|
1229
|
+
|
1230
|
+
// Copyright 2007-2010 Baptiste Lepilleur
|
1231
|
+
// Distributed under MIT license, or public domain if desired and
|
1232
|
+
// recognized in your jurisdiction.
|
1233
|
+
// See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE
|
1234
|
+
|
1235
|
+
// included by json_value.cpp
|
1236
|
+
|
1237
|
+
namespace Json {
|
1238
|
+
|
1239
|
+
// //////////////////////////////////////////////////////////////////
|
1240
|
+
// //////////////////////////////////////////////////////////////////
|
1241
|
+
// //////////////////////////////////////////////////////////////////
|
1242
|
+
// class ValueIteratorBase
|
1243
|
+
// //////////////////////////////////////////////////////////////////
|
1244
|
+
// //////////////////////////////////////////////////////////////////
|
1245
|
+
// //////////////////////////////////////////////////////////////////
|
1246
|
+
|
1247
|
+
ValueIteratorBase::ValueIteratorBase()
|
1248
|
+
#ifndef JSON_VALUE_USE_INTERNAL_MAP
|
1249
|
+
: current_()
|
1250
|
+
, isNull_( true )
|
1251
|
+
{
|
1252
|
+
}
|
1253
|
+
#else
|
1254
|
+
: isArray_( true )
|
1255
|
+
, isNull_( true )
|
1256
|
+
{
|
1257
|
+
iterator_.array_ = ValueInternalArray::IteratorState();
|
1258
|
+
}
|
1259
|
+
#endif
|
1260
|
+
|
1261
|
+
|
1262
|
+
#ifndef JSON_VALUE_USE_INTERNAL_MAP
|
1263
|
+
ValueIteratorBase::ValueIteratorBase( const Value::ObjectValues::iterator ¤t )
|
1264
|
+
: current_( current )
|
1265
|
+
, isNull_( false )
|
1266
|
+
{
|
1267
|
+
}
|
1268
|
+
#else
|
1269
|
+
ValueIteratorBase::ValueIteratorBase( const ValueInternalArray::IteratorState &state )
|
1270
|
+
: isArray_( true )
|
1271
|
+
{
|
1272
|
+
iterator_.array_ = state;
|
1273
|
+
}
|
1274
|
+
|
1275
|
+
|
1276
|
+
ValueIteratorBase::ValueIteratorBase( const ValueInternalMap::IteratorState &state )
|
1277
|
+
: isArray_( false )
|
1278
|
+
{
|
1279
|
+
iterator_.map_ = state;
|
1280
|
+
}
|
1281
|
+
#endif
|
1282
|
+
|
1283
|
+
Value &
|
1284
|
+
ValueIteratorBase::deref() const
|
1285
|
+
{
|
1286
|
+
#ifndef JSON_VALUE_USE_INTERNAL_MAP
|
1287
|
+
return current_->second;
|
1288
|
+
#else
|
1289
|
+
if ( isArray_ )
|
1290
|
+
return ValueInternalArray::dereference( iterator_.array_ );
|
1291
|
+
return ValueInternalMap::value( iterator_.map_ );
|
1292
|
+
#endif
|
1293
|
+
}
|
1294
|
+
|
1295
|
+
|
1296
|
+
void
|
1297
|
+
ValueIteratorBase::increment()
|
1298
|
+
{
|
1299
|
+
#ifndef JSON_VALUE_USE_INTERNAL_MAP
|
1300
|
+
++current_;
|
1301
|
+
#else
|
1302
|
+
if ( isArray_ )
|
1303
|
+
ValueInternalArray::increment( iterator_.array_ );
|
1304
|
+
ValueInternalMap::increment( iterator_.map_ );
|
1305
|
+
#endif
|
1306
|
+
}
|
1307
|
+
|
1308
|
+
|
1309
|
+
void
|
1310
|
+
ValueIteratorBase::decrement()
|
1311
|
+
{
|
1312
|
+
#ifndef JSON_VALUE_USE_INTERNAL_MAP
|
1313
|
+
--current_;
|
1314
|
+
#else
|
1315
|
+
if ( isArray_ )
|
1316
|
+
ValueInternalArray::decrement( iterator_.array_ );
|
1317
|
+
ValueInternalMap::decrement( iterator_.map_ );
|
1318
|
+
#endif
|
1319
|
+
}
|
1320
|
+
|
1321
|
+
|
1322
|
+
ValueIteratorBase::difference_type
|
1323
|
+
ValueIteratorBase::computeDistance( const SelfType &other ) const
|
1324
|
+
{
|
1325
|
+
#ifndef JSON_VALUE_USE_INTERNAL_MAP
|
1326
|
+
# ifdef JSON_USE_CPPTL_SMALLMAP
|
1327
|
+
return current_ - other.current_;
|
1328
|
+
# else
|
1329
|
+
// Iterator for null value are initialized using the default
|
1330
|
+
// constructor, which initialize current_ to the default
|
1331
|
+
// std::map::iterator. As begin() and end() are two instance
|
1332
|
+
// of the default std::map::iterator, they can not be compared.
|
1333
|
+
// To allow this, we handle this comparison specifically.
|
1334
|
+
if ( isNull_ && other.isNull_ )
|
1335
|
+
{
|
1336
|
+
return 0;
|
1337
|
+
}
|
1338
|
+
|
1339
|
+
|
1340
|
+
// Usage of std::distance is not portable (does not compile with Sun Studio 12 RogueWave STL,
|
1341
|
+
// which is the one used by default).
|
1342
|
+
// Using a portable hand-made version for non random iterator instead:
|
1343
|
+
// return difference_type( std::distance( current_, other.current_ ) );
|
1344
|
+
difference_type myDistance = 0;
|
1345
|
+
for ( Value::ObjectValues::iterator it = current_; it != other.current_; ++it )
|
1346
|
+
{
|
1347
|
+
++myDistance;
|
1348
|
+
}
|
1349
|
+
return myDistance;
|
1350
|
+
# endif
|
1351
|
+
#else
|
1352
|
+
if ( isArray_ )
|
1353
|
+
return ValueInternalArray::distance( iterator_.array_, other.iterator_.array_ );
|
1354
|
+
return ValueInternalMap::distance( iterator_.map_, other.iterator_.map_ );
|
1355
|
+
#endif
|
1356
|
+
}
|
1357
|
+
|
1358
|
+
|
1359
|
+
bool
|
1360
|
+
ValueIteratorBase::isEqual( const SelfType &other ) const
|
1361
|
+
{
|
1362
|
+
#ifndef JSON_VALUE_USE_INTERNAL_MAP
|
1363
|
+
if ( isNull_ )
|
1364
|
+
{
|
1365
|
+
return other.isNull_;
|
1366
|
+
}
|
1367
|
+
return current_ == other.current_;
|
1368
|
+
#else
|
1369
|
+
if ( isArray_ )
|
1370
|
+
return ValueInternalArray::equals( iterator_.array_, other.iterator_.array_ );
|
1371
|
+
return ValueInternalMap::equals( iterator_.map_, other.iterator_.map_ );
|
1372
|
+
#endif
|
1373
|
+
}
|
1374
|
+
|
1375
|
+
|
1376
|
+
void
|
1377
|
+
ValueIteratorBase::copy( const SelfType &other )
|
1378
|
+
{
|
1379
|
+
#ifndef JSON_VALUE_USE_INTERNAL_MAP
|
1380
|
+
current_ = other.current_;
|
1381
|
+
#else
|
1382
|
+
if ( isArray_ )
|
1383
|
+
iterator_.array_ = other.iterator_.array_;
|
1384
|
+
iterator_.map_ = other.iterator_.map_;
|
1385
|
+
#endif
|
1386
|
+
}
|
1387
|
+
|
1388
|
+
|
1389
|
+
Value
|
1390
|
+
ValueIteratorBase::key() const
|
1391
|
+
{
|
1392
|
+
#ifndef JSON_VALUE_USE_INTERNAL_MAP
|
1393
|
+
const Value::CZString czstring = (*current_).first;
|
1394
|
+
if ( czstring.c_str() )
|
1395
|
+
{
|
1396
|
+
if ( czstring.isStaticString() )
|
1397
|
+
return Value( StaticString( czstring.c_str() ) );
|
1398
|
+
return Value( czstring.c_str() );
|
1399
|
+
}
|
1400
|
+
return Value( czstring.index() );
|
1401
|
+
#else
|
1402
|
+
if ( isArray_ )
|
1403
|
+
return Value( ValueInternalArray::indexOf( iterator_.array_ ) );
|
1404
|
+
bool isStatic;
|
1405
|
+
const char *memberName = ValueInternalMap::key( iterator_.map_, isStatic );
|
1406
|
+
if ( isStatic )
|
1407
|
+
return Value( StaticString( memberName ) );
|
1408
|
+
return Value( memberName );
|
1409
|
+
#endif
|
1410
|
+
}
|
1411
|
+
|
1412
|
+
|
1413
|
+
UInt
|
1414
|
+
ValueIteratorBase::index() const
|
1415
|
+
{
|
1416
|
+
#ifndef JSON_VALUE_USE_INTERNAL_MAP
|
1417
|
+
const Value::CZString czstring = (*current_).first;
|
1418
|
+
if ( !czstring.c_str() )
|
1419
|
+
return czstring.index();
|
1420
|
+
return Value::UInt( -1 );
|
1421
|
+
#else
|
1422
|
+
if ( isArray_ )
|
1423
|
+
return Value::UInt( ValueInternalArray::indexOf( iterator_.array_ ) );
|
1424
|
+
return Value::UInt( -1 );
|
1425
|
+
#endif
|
1426
|
+
}
|
1427
|
+
|
1428
|
+
|
1429
|
+
const char *
|
1430
|
+
ValueIteratorBase::memberName() const
|
1431
|
+
{
|
1432
|
+
#ifndef JSON_VALUE_USE_INTERNAL_MAP
|
1433
|
+
const char *name = (*current_).first.c_str();
|
1434
|
+
return name ? name : "";
|
1435
|
+
#else
|
1436
|
+
if ( !isArray_ )
|
1437
|
+
return ValueInternalMap::key( iterator_.map_ );
|
1438
|
+
return "";
|
1439
|
+
#endif
|
1440
|
+
}
|
1441
|
+
|
1442
|
+
|
1443
|
+
// //////////////////////////////////////////////////////////////////
|
1444
|
+
// //////////////////////////////////////////////////////////////////
|
1445
|
+
// //////////////////////////////////////////////////////////////////
|
1446
|
+
// class ValueConstIterator
|
1447
|
+
// //////////////////////////////////////////////////////////////////
|
1448
|
+
// //////////////////////////////////////////////////////////////////
|
1449
|
+
// //////////////////////////////////////////////////////////////////
|
1450
|
+
|
1451
|
+
ValueConstIterator::ValueConstIterator()
|
1452
|
+
{
|
1453
|
+
}
|
1454
|
+
|
1455
|
+
|
1456
|
+
#ifndef JSON_VALUE_USE_INTERNAL_MAP
|
1457
|
+
ValueConstIterator::ValueConstIterator( const Value::ObjectValues::iterator ¤t )
|
1458
|
+
: ValueIteratorBase( current )
|
1459
|
+
{
|
1460
|
+
}
|
1461
|
+
#else
|
1462
|
+
ValueConstIterator::ValueConstIterator( const ValueInternalArray::IteratorState &state )
|
1463
|
+
: ValueIteratorBase( state )
|
1464
|
+
{
|
1465
|
+
}
|
1466
|
+
|
1467
|
+
ValueConstIterator::ValueConstIterator( const ValueInternalMap::IteratorState &state )
|
1468
|
+
: ValueIteratorBase( state )
|
1469
|
+
{
|
1470
|
+
}
|
1471
|
+
#endif
|
1472
|
+
|
1473
|
+
ValueConstIterator &
|
1474
|
+
ValueConstIterator::operator =( const ValueIteratorBase &other )
|
1475
|
+
{
|
1476
|
+
copy( other );
|
1477
|
+
return *this;
|
1478
|
+
}
|
1479
|
+
|
1480
|
+
|
1481
|
+
// //////////////////////////////////////////////////////////////////
|
1482
|
+
// //////////////////////////////////////////////////////////////////
|
1483
|
+
// //////////////////////////////////////////////////////////////////
|
1484
|
+
// class ValueIterator
|
1485
|
+
// //////////////////////////////////////////////////////////////////
|
1486
|
+
// //////////////////////////////////////////////////////////////////
|
1487
|
+
// //////////////////////////////////////////////////////////////////
|
1488
|
+
|
1489
|
+
ValueIterator::ValueIterator()
|
1490
|
+
{
|
1491
|
+
}
|
1492
|
+
|
1493
|
+
|
1494
|
+
#ifndef JSON_VALUE_USE_INTERNAL_MAP
|
1495
|
+
ValueIterator::ValueIterator( const Value::ObjectValues::iterator ¤t )
|
1496
|
+
: ValueIteratorBase( current )
|
1497
|
+
{
|
1498
|
+
}
|
1499
|
+
#else
|
1500
|
+
ValueIterator::ValueIterator( const ValueInternalArray::IteratorState &state )
|
1501
|
+
: ValueIteratorBase( state )
|
1502
|
+
{
|
1503
|
+
}
|
1504
|
+
|
1505
|
+
ValueIterator::ValueIterator( const ValueInternalMap::IteratorState &state )
|
1506
|
+
: ValueIteratorBase( state )
|
1507
|
+
{
|
1508
|
+
}
|
1509
|
+
#endif
|
1510
|
+
|
1511
|
+
ValueIterator::ValueIterator( const ValueConstIterator &other )
|
1512
|
+
: ValueIteratorBase( other )
|
1513
|
+
{
|
1514
|
+
}
|
1515
|
+
|
1516
|
+
ValueIterator::ValueIterator( const ValueIterator &other )
|
1517
|
+
: ValueIteratorBase( other )
|
1518
|
+
{
|
1519
|
+
}
|
1520
|
+
|
1521
|
+
ValueIterator &
|
1522
|
+
ValueIterator::operator =( const SelfType &other )
|
1523
|
+
{
|
1524
|
+
copy( other );
|
1525
|
+
return *this;
|
1526
|
+
}
|
1527
|
+
|
1528
|
+
} // namespace Json
|
1529
|
+
|
1530
|
+
// //////////////////////////////////////////////////////////////////////
|
1531
|
+
// End of content of file: src/lib_json/json_valueiterator.inl
|
1532
|
+
// //////////////////////////////////////////////////////////////////////
|
1533
|
+
|
1534
|
+
|
1535
|
+
|
1536
|
+
|
1537
|
+
|
1538
|
+
|
1539
|
+
// //////////////////////////////////////////////////////////////////////
|
1540
|
+
// Beginning of content of file: src/lib_json/json_value.cpp
|
1541
|
+
// //////////////////////////////////////////////////////////////////////
|
1542
|
+
|
1543
|
+
// Copyright 2007-2010 Baptiste Lepilleur
|
1544
|
+
// Distributed under MIT license, or public domain if desired and
|
1545
|
+
// recognized in your jurisdiction.
|
1546
|
+
// See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE
|
1547
|
+
|
1548
|
+
#if !defined(JSON_IS_AMALGAMATION)
|
1549
|
+
# include <json/value.h>
|
1550
|
+
# include <json/writer.h>
|
1551
|
+
# ifndef JSON_USE_SIMPLE_INTERNAL_ALLOCATOR
|
1552
|
+
# include "json_batchallocator.h"
|
1553
|
+
# endif // #ifndef JSON_USE_SIMPLE_INTERNAL_ALLOCATOR
|
1554
|
+
#endif // if !defined(JSON_IS_AMALGAMATION)
|
1555
|
+
#include <iostream>
|
1556
|
+
#include <utility>
|
1557
|
+
#include <stdexcept>
|
1558
|
+
#include <cstring>
|
1559
|
+
#include <cassert>
|
1560
|
+
#ifdef JSON_USE_CPPTL
|
1561
|
+
# include <cpptl/conststring.h>
|
1562
|
+
#endif
|
1563
|
+
#include <cstddef> // size_t
|
1564
|
+
|
1565
|
+
#define JSON_ASSERT_UNREACHABLE assert( false )
|
1566
|
+
#define JSON_ASSERT( condition ) assert( condition ); // @todo <= change this into an exception throw
|
1567
|
+
#define JSON_FAIL_MESSAGE( message ) throw std::runtime_error( message );
|
1568
|
+
#define JSON_ASSERT_MESSAGE( condition, message ) if (!( condition )) JSON_FAIL_MESSAGE( message )
|
1569
|
+
|
1570
|
+
namespace Json {
|
1571
|
+
|
1572
|
+
const Value Value::null;
|
1573
|
+
const Int Value::minInt = Int( ~(UInt(-1)/2) );
|
1574
|
+
const Int Value::maxInt = Int( UInt(-1)/2 );
|
1575
|
+
const UInt Value::maxUInt = UInt(-1);
|
1576
|
+
const Int64 Value::minInt64 = Int64( ~(UInt64(-1)/2) );
|
1577
|
+
const Int64 Value::maxInt64 = Int64( UInt64(-1)/2 );
|
1578
|
+
const UInt64 Value::maxUInt64 = UInt64(-1);
|
1579
|
+
const LargestInt Value::minLargestInt = LargestInt( ~(LargestUInt(-1)/2) );
|
1580
|
+
const LargestInt Value::maxLargestInt = LargestInt( LargestUInt(-1)/2 );
|
1581
|
+
const LargestUInt Value::maxLargestUInt = LargestUInt(-1);
|
1582
|
+
|
1583
|
+
|
1584
|
+
/// Unknown size marker
|
1585
|
+
static const unsigned int unknown = (unsigned)-1;
|
1586
|
+
|
1587
|
+
|
1588
|
+
/** Duplicates the specified string value.
|
1589
|
+
* @param value Pointer to the string to duplicate. Must be zero-terminated if
|
1590
|
+
* length is "unknown".
|
1591
|
+
* @param length Length of the value. if equals to unknown, then it will be
|
1592
|
+
* computed using strlen(value).
|
1593
|
+
* @return Pointer on the duplicate instance of string.
|
1594
|
+
*/
|
1595
|
+
static inline char *
|
1596
|
+
duplicateStringValue( const char *value,
|
1597
|
+
unsigned int length = unknown )
|
1598
|
+
{
|
1599
|
+
if ( length == unknown )
|
1600
|
+
length = (unsigned int)strlen(value);
|
1601
|
+
char *newString = static_cast<char *>( malloc( length + 1 ) );
|
1602
|
+
JSON_ASSERT_MESSAGE( newString != 0, "Failed to allocate string value buffer" );
|
1603
|
+
memcpy( newString, value, length );
|
1604
|
+
newString[length] = 0;
|
1605
|
+
return newString;
|
1606
|
+
}
|
1607
|
+
|
1608
|
+
|
1609
|
+
/** Free the string duplicated by duplicateStringValue().
|
1610
|
+
*/
|
1611
|
+
static inline void
|
1612
|
+
releaseStringValue( char *value )
|
1613
|
+
{
|
1614
|
+
if ( value )
|
1615
|
+
free( value );
|
1616
|
+
}
|
1617
|
+
|
1618
|
+
} // namespace Json
|
1619
|
+
|
1620
|
+
|
1621
|
+
// //////////////////////////////////////////////////////////////////
|
1622
|
+
// //////////////////////////////////////////////////////////////////
|
1623
|
+
// //////////////////////////////////////////////////////////////////
|
1624
|
+
// ValueInternals...
|
1625
|
+
// //////////////////////////////////////////////////////////////////
|
1626
|
+
// //////////////////////////////////////////////////////////////////
|
1627
|
+
// //////////////////////////////////////////////////////////////////
|
1628
|
+
#if !defined(JSON_IS_AMALGAMATION)
|
1629
|
+
# ifdef JSON_VALUE_USE_INTERNAL_MAP
|
1630
|
+
# include "json_internalarray.inl"
|
1631
|
+
# include "json_internalmap.inl"
|
1632
|
+
# endif // JSON_VALUE_USE_INTERNAL_MAP
|
1633
|
+
|
1634
|
+
# include "json_valueiterator.inl"
|
1635
|
+
#endif // if !defined(JSON_IS_AMALGAMATION)
|
1636
|
+
|
1637
|
+
namespace Json {
|
1638
|
+
|
1639
|
+
// //////////////////////////////////////////////////////////////////
|
1640
|
+
// //////////////////////////////////////////////////////////////////
|
1641
|
+
// //////////////////////////////////////////////////////////////////
|
1642
|
+
// class Value::CommentInfo
|
1643
|
+
// //////////////////////////////////////////////////////////////////
|
1644
|
+
// //////////////////////////////////////////////////////////////////
|
1645
|
+
// //////////////////////////////////////////////////////////////////
|
1646
|
+
|
1647
|
+
|
1648
|
+
Value::CommentInfo::CommentInfo()
|
1649
|
+
: comment_( 0 )
|
1650
|
+
{
|
1651
|
+
}
|
1652
|
+
|
1653
|
+
Value::CommentInfo::~CommentInfo()
|
1654
|
+
{
|
1655
|
+
if ( comment_ )
|
1656
|
+
releaseStringValue( comment_ );
|
1657
|
+
}
|
1658
|
+
|
1659
|
+
|
1660
|
+
void
|
1661
|
+
Value::CommentInfo::setComment( const char *text )
|
1662
|
+
{
|
1663
|
+
if ( comment_ )
|
1664
|
+
releaseStringValue( comment_ );
|
1665
|
+
JSON_ASSERT( text != 0 );
|
1666
|
+
JSON_ASSERT_MESSAGE( text[0]=='\0' || text[0]=='/', "Comments must start with /");
|
1667
|
+
// It seems that /**/ style comments are acceptable as well.
|
1668
|
+
comment_ = duplicateStringValue( text );
|
1669
|
+
}
|
1670
|
+
|
1671
|
+
|
1672
|
+
// //////////////////////////////////////////////////////////////////
|
1673
|
+
// //////////////////////////////////////////////////////////////////
|
1674
|
+
// //////////////////////////////////////////////////////////////////
|
1675
|
+
// class Value::CZString
|
1676
|
+
// //////////////////////////////////////////////////////////////////
|
1677
|
+
// //////////////////////////////////////////////////////////////////
|
1678
|
+
// //////////////////////////////////////////////////////////////////
|
1679
|
+
# ifndef JSON_VALUE_USE_INTERNAL_MAP
|
1680
|
+
|
1681
|
+
// Notes: index_ indicates if the string was allocated when
|
1682
|
+
// a string is stored.
|
1683
|
+
|
1684
|
+
Value::CZString::CZString( ArrayIndex index )
|
1685
|
+
: cstr_( 0 )
|
1686
|
+
, index_( index )
|
1687
|
+
{
|
1688
|
+
}
|
1689
|
+
|
1690
|
+
Value::CZString::CZString( const char *cstr, DuplicationPolicy allocate )
|
1691
|
+
: cstr_( allocate == duplicate ? duplicateStringValue(cstr)
|
1692
|
+
: cstr )
|
1693
|
+
, index_( allocate )
|
1694
|
+
{
|
1695
|
+
}
|
1696
|
+
|
1697
|
+
Value::CZString::CZString( const CZString &other )
|
1698
|
+
: cstr_( other.index_ != noDuplication && other.cstr_ != 0
|
1699
|
+
? duplicateStringValue( other.cstr_ )
|
1700
|
+
: other.cstr_ )
|
1701
|
+
, index_( other.cstr_ ? (other.index_ == noDuplication ? noDuplication : duplicate)
|
1702
|
+
: other.index_ )
|
1703
|
+
{
|
1704
|
+
}
|
1705
|
+
|
1706
|
+
Value::CZString::~CZString()
|
1707
|
+
{
|
1708
|
+
if ( cstr_ && index_ == duplicate )
|
1709
|
+
releaseStringValue( const_cast<char *>( cstr_ ) );
|
1710
|
+
}
|
1711
|
+
|
1712
|
+
void
|
1713
|
+
Value::CZString::swap( CZString &other )
|
1714
|
+
{
|
1715
|
+
std::swap( cstr_, other.cstr_ );
|
1716
|
+
std::swap( index_, other.index_ );
|
1717
|
+
}
|
1718
|
+
|
1719
|
+
Value::CZString &
|
1720
|
+
Value::CZString::operator =( const CZString &other )
|
1721
|
+
{
|
1722
|
+
CZString temp( other );
|
1723
|
+
swap( temp );
|
1724
|
+
return *this;
|
1725
|
+
}
|
1726
|
+
|
1727
|
+
bool
|
1728
|
+
Value::CZString::operator<( const CZString &other ) const
|
1729
|
+
{
|
1730
|
+
if ( cstr_ )
|
1731
|
+
return strcmp( cstr_, other.cstr_ ) < 0;
|
1732
|
+
return index_ < other.index_;
|
1733
|
+
}
|
1734
|
+
|
1735
|
+
bool
|
1736
|
+
Value::CZString::operator==( const CZString &other ) const
|
1737
|
+
{
|
1738
|
+
if ( cstr_ )
|
1739
|
+
return strcmp( cstr_, other.cstr_ ) == 0;
|
1740
|
+
return index_ == other.index_;
|
1741
|
+
}
|
1742
|
+
|
1743
|
+
|
1744
|
+
ArrayIndex
|
1745
|
+
Value::CZString::index() const
|
1746
|
+
{
|
1747
|
+
return index_;
|
1748
|
+
}
|
1749
|
+
|
1750
|
+
|
1751
|
+
const char *
|
1752
|
+
Value::CZString::c_str() const
|
1753
|
+
{
|
1754
|
+
return cstr_;
|
1755
|
+
}
|
1756
|
+
|
1757
|
+
bool
|
1758
|
+
Value::CZString::isStaticString() const
|
1759
|
+
{
|
1760
|
+
return index_ == noDuplication;
|
1761
|
+
}
|
1762
|
+
|
1763
|
+
#endif // ifndef JSON_VALUE_USE_INTERNAL_MAP
|
1764
|
+
|
1765
|
+
|
1766
|
+
// //////////////////////////////////////////////////////////////////
|
1767
|
+
// //////////////////////////////////////////////////////////////////
|
1768
|
+
// //////////////////////////////////////////////////////////////////
|
1769
|
+
// class Value::Value
|
1770
|
+
// //////////////////////////////////////////////////////////////////
|
1771
|
+
// //////////////////////////////////////////////////////////////////
|
1772
|
+
// //////////////////////////////////////////////////////////////////
|
1773
|
+
|
1774
|
+
/*! \internal Default constructor initialization must be equivalent to:
|
1775
|
+
* memset( this, 0, sizeof(Value) )
|
1776
|
+
* This optimization is used in ValueInternalMap fast allocator.
|
1777
|
+
*/
|
1778
|
+
Value::Value( ValueType type )
|
1779
|
+
: type_( type )
|
1780
|
+
, allocated_( 0 )
|
1781
|
+
, comments_( 0 )
|
1782
|
+
# ifdef JSON_VALUE_USE_INTERNAL_MAP
|
1783
|
+
, itemIsUsed_( 0 )
|
1784
|
+
#endif
|
1785
|
+
{
|
1786
|
+
switch ( type )
|
1787
|
+
{
|
1788
|
+
case nullValue:
|
1789
|
+
break;
|
1790
|
+
case intValue:
|
1791
|
+
case uintValue:
|
1792
|
+
value_.int_ = 0;
|
1793
|
+
break;
|
1794
|
+
case realValue:
|
1795
|
+
value_.real_ = 0.0;
|
1796
|
+
break;
|
1797
|
+
case stringValue:
|
1798
|
+
value_.string_ = 0;
|
1799
|
+
break;
|
1800
|
+
#ifndef JSON_VALUE_USE_INTERNAL_MAP
|
1801
|
+
case arrayValue:
|
1802
|
+
case objectValue:
|
1803
|
+
value_.map_ = new ObjectValues();
|
1804
|
+
break;
|
1805
|
+
#else
|
1806
|
+
case arrayValue:
|
1807
|
+
value_.array_ = arrayAllocator()->newArray();
|
1808
|
+
break;
|
1809
|
+
case objectValue:
|
1810
|
+
value_.map_ = mapAllocator()->newMap();
|
1811
|
+
break;
|
1812
|
+
#endif
|
1813
|
+
case booleanValue:
|
1814
|
+
value_.bool_ = false;
|
1815
|
+
break;
|
1816
|
+
default:
|
1817
|
+
JSON_ASSERT_UNREACHABLE;
|
1818
|
+
}
|
1819
|
+
}
|
1820
|
+
|
1821
|
+
|
1822
|
+
#if defined(JSON_HAS_INT64)
|
1823
|
+
Value::Value( UInt value )
|
1824
|
+
: type_( uintValue )
|
1825
|
+
, comments_( 0 )
|
1826
|
+
# ifdef JSON_VALUE_USE_INTERNAL_MAP
|
1827
|
+
, itemIsUsed_( 0 )
|
1828
|
+
#endif
|
1829
|
+
{
|
1830
|
+
value_.uint_ = value;
|
1831
|
+
}
|
1832
|
+
|
1833
|
+
Value::Value( Int value )
|
1834
|
+
: type_( intValue )
|
1835
|
+
, comments_( 0 )
|
1836
|
+
# ifdef JSON_VALUE_USE_INTERNAL_MAP
|
1837
|
+
, itemIsUsed_( 0 )
|
1838
|
+
#endif
|
1839
|
+
{
|
1840
|
+
value_.int_ = value;
|
1841
|
+
}
|
1842
|
+
|
1843
|
+
#endif // if defined(JSON_HAS_INT64)
|
1844
|
+
|
1845
|
+
|
1846
|
+
Value::Value( Int64 value )
|
1847
|
+
: type_( intValue )
|
1848
|
+
, comments_( 0 )
|
1849
|
+
# ifdef JSON_VALUE_USE_INTERNAL_MAP
|
1850
|
+
, itemIsUsed_( 0 )
|
1851
|
+
#endif
|
1852
|
+
{
|
1853
|
+
value_.int_ = value;
|
1854
|
+
}
|
1855
|
+
|
1856
|
+
|
1857
|
+
Value::Value( UInt64 value )
|
1858
|
+
: type_( uintValue )
|
1859
|
+
, comments_( 0 )
|
1860
|
+
# ifdef JSON_VALUE_USE_INTERNAL_MAP
|
1861
|
+
, itemIsUsed_( 0 )
|
1862
|
+
#endif
|
1863
|
+
{
|
1864
|
+
value_.uint_ = value;
|
1865
|
+
}
|
1866
|
+
|
1867
|
+
Value::Value( double value )
|
1868
|
+
: type_( realValue )
|
1869
|
+
, comments_( 0 )
|
1870
|
+
# ifdef JSON_VALUE_USE_INTERNAL_MAP
|
1871
|
+
, itemIsUsed_( 0 )
|
1872
|
+
#endif
|
1873
|
+
{
|
1874
|
+
value_.real_ = value;
|
1875
|
+
}
|
1876
|
+
|
1877
|
+
Value::Value( const char *value )
|
1878
|
+
: type_( stringValue )
|
1879
|
+
, allocated_( true )
|
1880
|
+
, comments_( 0 )
|
1881
|
+
# ifdef JSON_VALUE_USE_INTERNAL_MAP
|
1882
|
+
, itemIsUsed_( 0 )
|
1883
|
+
#endif
|
1884
|
+
{
|
1885
|
+
value_.string_ = duplicateStringValue( value );
|
1886
|
+
}
|
1887
|
+
|
1888
|
+
|
1889
|
+
Value::Value( const char *beginValue,
|
1890
|
+
const char *endValue )
|
1891
|
+
: type_( stringValue )
|
1892
|
+
, allocated_( true )
|
1893
|
+
, comments_( 0 )
|
1894
|
+
# ifdef JSON_VALUE_USE_INTERNAL_MAP
|
1895
|
+
, itemIsUsed_( 0 )
|
1896
|
+
#endif
|
1897
|
+
{
|
1898
|
+
value_.string_ = duplicateStringValue( beginValue,
|
1899
|
+
(unsigned int)(endValue - beginValue) );
|
1900
|
+
}
|
1901
|
+
|
1902
|
+
|
1903
|
+
Value::Value( const std::string &value )
|
1904
|
+
: type_( stringValue )
|
1905
|
+
, allocated_( true )
|
1906
|
+
, comments_( 0 )
|
1907
|
+
# ifdef JSON_VALUE_USE_INTERNAL_MAP
|
1908
|
+
, itemIsUsed_( 0 )
|
1909
|
+
#endif
|
1910
|
+
{
|
1911
|
+
value_.string_ = duplicateStringValue( value.c_str(),
|
1912
|
+
(unsigned int)value.length() );
|
1913
|
+
|
1914
|
+
}
|
1915
|
+
|
1916
|
+
Value::Value( const StaticString &value )
|
1917
|
+
: type_( stringValue )
|
1918
|
+
, allocated_( false )
|
1919
|
+
, comments_( 0 )
|
1920
|
+
# ifdef JSON_VALUE_USE_INTERNAL_MAP
|
1921
|
+
, itemIsUsed_( 0 )
|
1922
|
+
#endif
|
1923
|
+
{
|
1924
|
+
value_.string_ = const_cast<char *>( value.c_str() );
|
1925
|
+
}
|
1926
|
+
|
1927
|
+
|
1928
|
+
# ifdef JSON_USE_CPPTL
|
1929
|
+
Value::Value( const CppTL::ConstString &value )
|
1930
|
+
: type_( stringValue )
|
1931
|
+
, allocated_( true )
|
1932
|
+
, comments_( 0 )
|
1933
|
+
# ifdef JSON_VALUE_USE_INTERNAL_MAP
|
1934
|
+
, itemIsUsed_( 0 )
|
1935
|
+
#endif
|
1936
|
+
{
|
1937
|
+
value_.string_ = duplicateStringValue( value, value.length() );
|
1938
|
+
}
|
1939
|
+
# endif
|
1940
|
+
|
1941
|
+
Value::Value( bool value )
|
1942
|
+
: type_( booleanValue )
|
1943
|
+
, comments_( 0 )
|
1944
|
+
# ifdef JSON_VALUE_USE_INTERNAL_MAP
|
1945
|
+
, itemIsUsed_( 0 )
|
1946
|
+
#endif
|
1947
|
+
{
|
1948
|
+
value_.bool_ = value;
|
1949
|
+
}
|
1950
|
+
|
1951
|
+
|
1952
|
+
Value::Value( const Value &other )
|
1953
|
+
: type_( other.type_ )
|
1954
|
+
, comments_( 0 )
|
1955
|
+
# ifdef JSON_VALUE_USE_INTERNAL_MAP
|
1956
|
+
, itemIsUsed_( 0 )
|
1957
|
+
#endif
|
1958
|
+
{
|
1959
|
+
switch ( type_ )
|
1960
|
+
{
|
1961
|
+
case nullValue:
|
1962
|
+
case intValue:
|
1963
|
+
case uintValue:
|
1964
|
+
case realValue:
|
1965
|
+
case booleanValue:
|
1966
|
+
value_ = other.value_;
|
1967
|
+
break;
|
1968
|
+
case stringValue:
|
1969
|
+
if ( other.value_.string_ )
|
1970
|
+
{
|
1971
|
+
value_.string_ = duplicateStringValue( other.value_.string_ );
|
1972
|
+
allocated_ = true;
|
1973
|
+
}
|
1974
|
+
else
|
1975
|
+
value_.string_ = 0;
|
1976
|
+
break;
|
1977
|
+
#ifndef JSON_VALUE_USE_INTERNAL_MAP
|
1978
|
+
case arrayValue:
|
1979
|
+
case objectValue:
|
1980
|
+
value_.map_ = new ObjectValues( *other.value_.map_ );
|
1981
|
+
break;
|
1982
|
+
#else
|
1983
|
+
case arrayValue:
|
1984
|
+
value_.array_ = arrayAllocator()->newArrayCopy( *other.value_.array_ );
|
1985
|
+
break;
|
1986
|
+
case objectValue:
|
1987
|
+
value_.map_ = mapAllocator()->newMapCopy( *other.value_.map_ );
|
1988
|
+
break;
|
1989
|
+
#endif
|
1990
|
+
default:
|
1991
|
+
JSON_ASSERT_UNREACHABLE;
|
1992
|
+
}
|
1993
|
+
if ( other.comments_ )
|
1994
|
+
{
|
1995
|
+
comments_ = new CommentInfo[numberOfCommentPlacement];
|
1996
|
+
for ( int comment =0; comment < numberOfCommentPlacement; ++comment )
|
1997
|
+
{
|
1998
|
+
const CommentInfo &otherComment = other.comments_[comment];
|
1999
|
+
if ( otherComment.comment_ )
|
2000
|
+
comments_[comment].setComment( otherComment.comment_ );
|
2001
|
+
}
|
2002
|
+
}
|
2003
|
+
}
|
2004
|
+
|
2005
|
+
|
2006
|
+
Value::~Value()
|
2007
|
+
{
|
2008
|
+
switch ( type_ )
|
2009
|
+
{
|
2010
|
+
case nullValue:
|
2011
|
+
case intValue:
|
2012
|
+
case uintValue:
|
2013
|
+
case realValue:
|
2014
|
+
case booleanValue:
|
2015
|
+
break;
|
2016
|
+
case stringValue:
|
2017
|
+
if ( allocated_ )
|
2018
|
+
releaseStringValue( value_.string_ );
|
2019
|
+
break;
|
2020
|
+
#ifndef JSON_VALUE_USE_INTERNAL_MAP
|
2021
|
+
case arrayValue:
|
2022
|
+
case objectValue:
|
2023
|
+
delete value_.map_;
|
2024
|
+
break;
|
2025
|
+
#else
|
2026
|
+
case arrayValue:
|
2027
|
+
arrayAllocator()->destructArray( value_.array_ );
|
2028
|
+
break;
|
2029
|
+
case objectValue:
|
2030
|
+
mapAllocator()->destructMap( value_.map_ );
|
2031
|
+
break;
|
2032
|
+
#endif
|
2033
|
+
default:
|
2034
|
+
JSON_ASSERT_UNREACHABLE;
|
2035
|
+
}
|
2036
|
+
|
2037
|
+
if ( comments_ )
|
2038
|
+
delete[] comments_;
|
2039
|
+
}
|
2040
|
+
|
2041
|
+
Value &
|
2042
|
+
Value::operator=( const Value &other )
|
2043
|
+
{
|
2044
|
+
Value temp( other );
|
2045
|
+
swap( temp );
|
2046
|
+
return *this;
|
2047
|
+
}
|
2048
|
+
|
2049
|
+
void
|
2050
|
+
Value::swap( Value &other )
|
2051
|
+
{
|
2052
|
+
ValueType temp = type_;
|
2053
|
+
type_ = other.type_;
|
2054
|
+
other.type_ = temp;
|
2055
|
+
std::swap( value_, other.value_ );
|
2056
|
+
int temp2 = allocated_;
|
2057
|
+
allocated_ = other.allocated_;
|
2058
|
+
other.allocated_ = temp2;
|
2059
|
+
}
|
2060
|
+
|
2061
|
+
ValueType
|
2062
|
+
Value::type() const
|
2063
|
+
{
|
2064
|
+
return type_;
|
2065
|
+
}
|
2066
|
+
|
2067
|
+
|
2068
|
+
int
|
2069
|
+
Value::compare( const Value &other ) const
|
2070
|
+
{
|
2071
|
+
if ( *this < other )
|
2072
|
+
return -1;
|
2073
|
+
if ( *this > other )
|
2074
|
+
return 1;
|
2075
|
+
return 0;
|
2076
|
+
}
|
2077
|
+
|
2078
|
+
|
2079
|
+
bool
|
2080
|
+
Value::operator <( const Value &other ) const
|
2081
|
+
{
|
2082
|
+
int typeDelta = type_ - other.type_;
|
2083
|
+
if ( typeDelta )
|
2084
|
+
return typeDelta < 0 ? true : false;
|
2085
|
+
switch ( type_ )
|
2086
|
+
{
|
2087
|
+
case nullValue:
|
2088
|
+
return false;
|
2089
|
+
case intValue:
|
2090
|
+
return value_.int_ < other.value_.int_;
|
2091
|
+
case uintValue:
|
2092
|
+
return value_.uint_ < other.value_.uint_;
|
2093
|
+
case realValue:
|
2094
|
+
return value_.real_ < other.value_.real_;
|
2095
|
+
case booleanValue:
|
2096
|
+
return value_.bool_ < other.value_.bool_;
|
2097
|
+
case stringValue:
|
2098
|
+
return ( value_.string_ == 0 && other.value_.string_ )
|
2099
|
+
|| ( other.value_.string_
|
2100
|
+
&& value_.string_
|
2101
|
+
&& strcmp( value_.string_, other.value_.string_ ) < 0 );
|
2102
|
+
#ifndef JSON_VALUE_USE_INTERNAL_MAP
|
2103
|
+
case arrayValue:
|
2104
|
+
case objectValue:
|
2105
|
+
{
|
2106
|
+
int delta = int( value_.map_->size() - other.value_.map_->size() );
|
2107
|
+
if ( delta )
|
2108
|
+
return delta < 0;
|
2109
|
+
return (*value_.map_) < (*other.value_.map_);
|
2110
|
+
}
|
2111
|
+
#else
|
2112
|
+
case arrayValue:
|
2113
|
+
return value_.array_->compare( *(other.value_.array_) ) < 0;
|
2114
|
+
case objectValue:
|
2115
|
+
return value_.map_->compare( *(other.value_.map_) ) < 0;
|
2116
|
+
#endif
|
2117
|
+
default:
|
2118
|
+
JSON_ASSERT_UNREACHABLE;
|
2119
|
+
}
|
2120
|
+
return false; // unreachable
|
2121
|
+
}
|
2122
|
+
|
2123
|
+
bool
|
2124
|
+
Value::operator <=( const Value &other ) const
|
2125
|
+
{
|
2126
|
+
return !(other < *this);
|
2127
|
+
}
|
2128
|
+
|
2129
|
+
bool
|
2130
|
+
Value::operator >=( const Value &other ) const
|
2131
|
+
{
|
2132
|
+
return !(*this < other);
|
2133
|
+
}
|
2134
|
+
|
2135
|
+
bool
|
2136
|
+
Value::operator >( const Value &other ) const
|
2137
|
+
{
|
2138
|
+
return other < *this;
|
2139
|
+
}
|
2140
|
+
|
2141
|
+
bool
|
2142
|
+
Value::operator ==( const Value &other ) const
|
2143
|
+
{
|
2144
|
+
//if ( type_ != other.type_ )
|
2145
|
+
// GCC 2.95.3 says:
|
2146
|
+
// attempt to take address of bit-field structure member `Json::Value::type_'
|
2147
|
+
// Beats me, but a temp solves the problem.
|
2148
|
+
int temp = other.type_;
|
2149
|
+
if ( type_ != temp )
|
2150
|
+
return false;
|
2151
|
+
switch ( type_ )
|
2152
|
+
{
|
2153
|
+
case nullValue:
|
2154
|
+
return true;
|
2155
|
+
case intValue:
|
2156
|
+
return value_.int_ == other.value_.int_;
|
2157
|
+
case uintValue:
|
2158
|
+
return value_.uint_ == other.value_.uint_;
|
2159
|
+
case realValue:
|
2160
|
+
return value_.real_ == other.value_.real_;
|
2161
|
+
case booleanValue:
|
2162
|
+
return value_.bool_ == other.value_.bool_;
|
2163
|
+
case stringValue:
|
2164
|
+
return ( value_.string_ == other.value_.string_ )
|
2165
|
+
|| ( other.value_.string_
|
2166
|
+
&& value_.string_
|
2167
|
+
&& strcmp( value_.string_, other.value_.string_ ) == 0 );
|
2168
|
+
#ifndef JSON_VALUE_USE_INTERNAL_MAP
|
2169
|
+
case arrayValue:
|
2170
|
+
case objectValue:
|
2171
|
+
return value_.map_->size() == other.value_.map_->size()
|
2172
|
+
&& (*value_.map_) == (*other.value_.map_);
|
2173
|
+
#else
|
2174
|
+
case arrayValue:
|
2175
|
+
return value_.array_->compare( *(other.value_.array_) ) == 0;
|
2176
|
+
case objectValue:
|
2177
|
+
return value_.map_->compare( *(other.value_.map_) ) == 0;
|
2178
|
+
#endif
|
2179
|
+
default:
|
2180
|
+
JSON_ASSERT_UNREACHABLE;
|
2181
|
+
}
|
2182
|
+
return false; // unreachable
|
2183
|
+
}
|
2184
|
+
|
2185
|
+
bool
|
2186
|
+
Value::operator !=( const Value &other ) const
|
2187
|
+
{
|
2188
|
+
return !( *this == other );
|
2189
|
+
}
|
2190
|
+
|
2191
|
+
const char *
|
2192
|
+
Value::asCString() const
|
2193
|
+
{
|
2194
|
+
JSON_ASSERT( type_ == stringValue );
|
2195
|
+
return value_.string_;
|
2196
|
+
}
|
2197
|
+
|
2198
|
+
|
2199
|
+
std::string
|
2200
|
+
Value::asString() const
|
2201
|
+
{
|
2202
|
+
switch ( type_ )
|
2203
|
+
{
|
2204
|
+
case nullValue:
|
2205
|
+
return "";
|
2206
|
+
case stringValue:
|
2207
|
+
return value_.string_ ? value_.string_ : "";
|
2208
|
+
case booleanValue:
|
2209
|
+
return value_.bool_ ? "true" : "false";
|
2210
|
+
case intValue:
|
2211
|
+
case uintValue:
|
2212
|
+
case realValue:
|
2213
|
+
case arrayValue:
|
2214
|
+
case objectValue:
|
2215
|
+
JSON_FAIL_MESSAGE( "Type is not convertible to string" );
|
2216
|
+
default:
|
2217
|
+
JSON_ASSERT_UNREACHABLE;
|
2218
|
+
}
|
2219
|
+
return ""; // unreachable
|
2220
|
+
}
|
2221
|
+
|
2222
|
+
# ifdef JSON_USE_CPPTL
|
2223
|
+
CppTL::ConstString
|
2224
|
+
Value::asConstString() const
|
2225
|
+
{
|
2226
|
+
return CppTL::ConstString( asString().c_str() );
|
2227
|
+
}
|
2228
|
+
# endif
|
2229
|
+
|
2230
|
+
|
2231
|
+
Value::Int
|
2232
|
+
Value::asInt() const
|
2233
|
+
{
|
2234
|
+
switch ( type_ )
|
2235
|
+
{
|
2236
|
+
case nullValue:
|
2237
|
+
return 0;
|
2238
|
+
case intValue:
|
2239
|
+
JSON_ASSERT_MESSAGE( value_.int_ >= minInt && value_.int_ <= maxInt, "unsigned integer out of signed int range" );
|
2240
|
+
return Int(value_.int_);
|
2241
|
+
case uintValue:
|
2242
|
+
JSON_ASSERT_MESSAGE( value_.uint_ <= UInt(maxInt), "unsigned integer out of signed int range" );
|
2243
|
+
return Int(value_.uint_);
|
2244
|
+
case realValue:
|
2245
|
+
JSON_ASSERT_MESSAGE( value_.real_ >= minInt && value_.real_ <= maxInt, "Real out of signed integer range" );
|
2246
|
+
return Int( value_.real_ );
|
2247
|
+
case booleanValue:
|
2248
|
+
return value_.bool_ ? 1 : 0;
|
2249
|
+
case stringValue:
|
2250
|
+
case arrayValue:
|
2251
|
+
case objectValue:
|
2252
|
+
JSON_FAIL_MESSAGE( "Type is not convertible to int" );
|
2253
|
+
default:
|
2254
|
+
JSON_ASSERT_UNREACHABLE;
|
2255
|
+
}
|
2256
|
+
return 0; // unreachable;
|
2257
|
+
}
|
2258
|
+
|
2259
|
+
|
2260
|
+
Value::UInt
|
2261
|
+
Value::asUInt() const
|
2262
|
+
{
|
2263
|
+
switch ( type_ )
|
2264
|
+
{
|
2265
|
+
case nullValue:
|
2266
|
+
return 0;
|
2267
|
+
case intValue:
|
2268
|
+
JSON_ASSERT_MESSAGE( value_.int_ >= 0, "Negative integer can not be converted to unsigned integer" );
|
2269
|
+
JSON_ASSERT_MESSAGE( value_.int_ <= maxUInt, "signed integer out of UInt range" );
|
2270
|
+
return UInt(value_.int_);
|
2271
|
+
case uintValue:
|
2272
|
+
JSON_ASSERT_MESSAGE( value_.uint_ <= maxUInt, "unsigned integer out of UInt range" );
|
2273
|
+
return UInt(value_.uint_);
|
2274
|
+
case realValue:
|
2275
|
+
JSON_ASSERT_MESSAGE( value_.real_ >= 0 && value_.real_ <= maxUInt, "Real out of unsigned integer range" );
|
2276
|
+
return UInt( value_.real_ );
|
2277
|
+
case booleanValue:
|
2278
|
+
return value_.bool_ ? 1 : 0;
|
2279
|
+
case stringValue:
|
2280
|
+
case arrayValue:
|
2281
|
+
case objectValue:
|
2282
|
+
JSON_FAIL_MESSAGE( "Type is not convertible to uint" );
|
2283
|
+
default:
|
2284
|
+
JSON_ASSERT_UNREACHABLE;
|
2285
|
+
}
|
2286
|
+
return 0; // unreachable;
|
2287
|
+
}
|
2288
|
+
|
2289
|
+
|
2290
|
+
# if defined(JSON_HAS_INT64)
|
2291
|
+
|
2292
|
+
Value::Int64
|
2293
|
+
Value::asInt64() const
|
2294
|
+
{
|
2295
|
+
switch ( type_ )
|
2296
|
+
{
|
2297
|
+
case nullValue:
|
2298
|
+
return 0;
|
2299
|
+
case intValue:
|
2300
|
+
return value_.int_;
|
2301
|
+
case uintValue:
|
2302
|
+
JSON_ASSERT_MESSAGE( value_.uint_ <= UInt64(maxInt64), "unsigned integer out of Int64 range" );
|
2303
|
+
return value_.uint_;
|
2304
|
+
case realValue:
|
2305
|
+
JSON_ASSERT_MESSAGE( value_.real_ >= minInt64 && value_.real_ <= maxInt64, "Real out of Int64 range" );
|
2306
|
+
return Int( value_.real_ );
|
2307
|
+
case booleanValue:
|
2308
|
+
return value_.bool_ ? 1 : 0;
|
2309
|
+
case stringValue:
|
2310
|
+
case arrayValue:
|
2311
|
+
case objectValue:
|
2312
|
+
JSON_FAIL_MESSAGE( "Type is not convertible to Int64" );
|
2313
|
+
default:
|
2314
|
+
JSON_ASSERT_UNREACHABLE;
|
2315
|
+
}
|
2316
|
+
return 0; // unreachable;
|
2317
|
+
}
|
2318
|
+
|
2319
|
+
|
2320
|
+
Value::UInt64
|
2321
|
+
Value::asUInt64() const
|
2322
|
+
{
|
2323
|
+
switch ( type_ )
|
2324
|
+
{
|
2325
|
+
case nullValue:
|
2326
|
+
return 0;
|
2327
|
+
case intValue:
|
2328
|
+
JSON_ASSERT_MESSAGE( value_.int_ >= 0, "Negative integer can not be converted to UInt64" );
|
2329
|
+
return value_.int_;
|
2330
|
+
case uintValue:
|
2331
|
+
return value_.uint_;
|
2332
|
+
case realValue:
|
2333
|
+
JSON_ASSERT_MESSAGE( value_.real_ >= 0 && value_.real_ <= maxUInt64, "Real out of UInt64 range" );
|
2334
|
+
return UInt( value_.real_ );
|
2335
|
+
case booleanValue:
|
2336
|
+
return value_.bool_ ? 1 : 0;
|
2337
|
+
case stringValue:
|
2338
|
+
case arrayValue:
|
2339
|
+
case objectValue:
|
2340
|
+
JSON_FAIL_MESSAGE( "Type is not convertible to UInt64" );
|
2341
|
+
default:
|
2342
|
+
JSON_ASSERT_UNREACHABLE;
|
2343
|
+
}
|
2344
|
+
return 0; // unreachable;
|
2345
|
+
}
|
2346
|
+
# endif // if defined(JSON_HAS_INT64)
|
2347
|
+
|
2348
|
+
|
2349
|
+
LargestInt
|
2350
|
+
Value::asLargestInt() const
|
2351
|
+
{
|
2352
|
+
#if defined(JSON_NO_INT64)
|
2353
|
+
return asInt();
|
2354
|
+
#else
|
2355
|
+
return asInt64();
|
2356
|
+
#endif
|
2357
|
+
}
|
2358
|
+
|
2359
|
+
|
2360
|
+
LargestUInt
|
2361
|
+
Value::asLargestUInt() const
|
2362
|
+
{
|
2363
|
+
#if defined(JSON_NO_INT64)
|
2364
|
+
return asUInt();
|
2365
|
+
#else
|
2366
|
+
return asUInt64();
|
2367
|
+
#endif
|
2368
|
+
}
|
2369
|
+
|
2370
|
+
|
2371
|
+
double
|
2372
|
+
Value::asDouble() const
|
2373
|
+
{
|
2374
|
+
switch ( type_ )
|
2375
|
+
{
|
2376
|
+
case nullValue:
|
2377
|
+
return 0.0;
|
2378
|
+
case intValue:
|
2379
|
+
return static_cast<double>( value_.int_ );
|
2380
|
+
case uintValue:
|
2381
|
+
#if !defined(JSON_USE_INT64_DOUBLE_CONVERSION)
|
2382
|
+
return static_cast<double>( value_.uint_ );
|
2383
|
+
#else // if !defined(JSON_USE_INT64_DOUBLE_CONVERSION)
|
2384
|
+
return static_cast<double>( Int(value_.uint_/2) ) * 2 + Int(value_.uint_ & 1);
|
2385
|
+
#endif // if !defined(JSON_USE_INT64_DOUBLE_CONVERSION)
|
2386
|
+
case realValue:
|
2387
|
+
return value_.real_;
|
2388
|
+
case booleanValue:
|
2389
|
+
return value_.bool_ ? 1.0 : 0.0;
|
2390
|
+
case stringValue:
|
2391
|
+
case arrayValue:
|
2392
|
+
case objectValue:
|
2393
|
+
JSON_FAIL_MESSAGE( "Type is not convertible to double" );
|
2394
|
+
default:
|
2395
|
+
JSON_ASSERT_UNREACHABLE;
|
2396
|
+
}
|
2397
|
+
return 0; // unreachable;
|
2398
|
+
}
|
2399
|
+
|
2400
|
+
float
|
2401
|
+
Value::asFloat() const
|
2402
|
+
{
|
2403
|
+
switch ( type_ )
|
2404
|
+
{
|
2405
|
+
case nullValue:
|
2406
|
+
return 0.0f;
|
2407
|
+
case intValue:
|
2408
|
+
return static_cast<float>( value_.int_ );
|
2409
|
+
case uintValue:
|
2410
|
+
#if !defined(JSON_USE_INT64_DOUBLE_CONVERSION)
|
2411
|
+
return static_cast<float>( value_.uint_ );
|
2412
|
+
#else // if !defined(JSON_USE_INT64_DOUBLE_CONVERSION)
|
2413
|
+
return static_cast<float>( Int(value_.uint_/2) ) * 2 + Int(value_.uint_ & 1);
|
2414
|
+
#endif // if !defined(JSON_USE_INT64_DOUBLE_CONVERSION)
|
2415
|
+
case realValue:
|
2416
|
+
return static_cast<float>( value_.real_ );
|
2417
|
+
case booleanValue:
|
2418
|
+
return value_.bool_ ? 1.0f : 0.0f;
|
2419
|
+
case stringValue:
|
2420
|
+
case arrayValue:
|
2421
|
+
case objectValue:
|
2422
|
+
JSON_FAIL_MESSAGE( "Type is not convertible to float" );
|
2423
|
+
default:
|
2424
|
+
JSON_ASSERT_UNREACHABLE;
|
2425
|
+
}
|
2426
|
+
return 0.0f; // unreachable;
|
2427
|
+
}
|
2428
|
+
|
2429
|
+
bool
|
2430
|
+
Value::asBool() const
|
2431
|
+
{
|
2432
|
+
switch ( type_ )
|
2433
|
+
{
|
2434
|
+
case nullValue:
|
2435
|
+
return false;
|
2436
|
+
case intValue:
|
2437
|
+
case uintValue:
|
2438
|
+
return value_.int_ != 0;
|
2439
|
+
case realValue:
|
2440
|
+
return value_.real_ != 0.0;
|
2441
|
+
case booleanValue:
|
2442
|
+
return value_.bool_;
|
2443
|
+
case stringValue:
|
2444
|
+
return value_.string_ && value_.string_[0] != 0;
|
2445
|
+
case arrayValue:
|
2446
|
+
case objectValue:
|
2447
|
+
return value_.map_->size() != 0;
|
2448
|
+
default:
|
2449
|
+
JSON_ASSERT_UNREACHABLE;
|
2450
|
+
}
|
2451
|
+
return false; // unreachable;
|
2452
|
+
}
|
2453
|
+
|
2454
|
+
|
2455
|
+
bool
|
2456
|
+
Value::isConvertibleTo( ValueType other ) const
|
2457
|
+
{
|
2458
|
+
switch ( type_ )
|
2459
|
+
{
|
2460
|
+
case nullValue:
|
2461
|
+
return true;
|
2462
|
+
case intValue:
|
2463
|
+
return ( other == nullValue && value_.int_ == 0 )
|
2464
|
+
|| other == intValue
|
2465
|
+
|| ( other == uintValue && value_.int_ >= 0 )
|
2466
|
+
|| other == realValue
|
2467
|
+
|| other == stringValue
|
2468
|
+
|| other == booleanValue;
|
2469
|
+
case uintValue:
|
2470
|
+
return ( other == nullValue && value_.uint_ == 0 )
|
2471
|
+
|| ( other == intValue && value_.uint_ <= (unsigned)maxInt )
|
2472
|
+
|| other == uintValue
|
2473
|
+
|| other == realValue
|
2474
|
+
|| other == stringValue
|
2475
|
+
|| other == booleanValue;
|
2476
|
+
case realValue:
|
2477
|
+
return ( other == nullValue && value_.real_ == 0.0 )
|
2478
|
+
|| ( other == intValue && value_.real_ >= minInt && value_.real_ <= maxInt )
|
2479
|
+
|| ( other == uintValue && value_.real_ >= 0 && value_.real_ <= maxUInt )
|
2480
|
+
|| other == realValue
|
2481
|
+
|| other == stringValue
|
2482
|
+
|| other == booleanValue;
|
2483
|
+
case booleanValue:
|
2484
|
+
return ( other == nullValue && value_.bool_ == false )
|
2485
|
+
|| other == intValue
|
2486
|
+
|| other == uintValue
|
2487
|
+
|| other == realValue
|
2488
|
+
|| other == stringValue
|
2489
|
+
|| other == booleanValue;
|
2490
|
+
case stringValue:
|
2491
|
+
return other == stringValue
|
2492
|
+
|| ( other == nullValue && (!value_.string_ || value_.string_[0] == 0) );
|
2493
|
+
case arrayValue:
|
2494
|
+
return other == arrayValue
|
2495
|
+
|| ( other == nullValue && value_.map_->size() == 0 );
|
2496
|
+
case objectValue:
|
2497
|
+
return other == objectValue
|
2498
|
+
|| ( other == nullValue && value_.map_->size() == 0 );
|
2499
|
+
default:
|
2500
|
+
JSON_ASSERT_UNREACHABLE;
|
2501
|
+
}
|
2502
|
+
return false; // unreachable;
|
2503
|
+
}
|
2504
|
+
|
2505
|
+
|
2506
|
+
/// Number of values in array or object
|
2507
|
+
ArrayIndex
|
2508
|
+
Value::size() const
|
2509
|
+
{
|
2510
|
+
switch ( type_ )
|
2511
|
+
{
|
2512
|
+
case nullValue:
|
2513
|
+
case intValue:
|
2514
|
+
case uintValue:
|
2515
|
+
case realValue:
|
2516
|
+
case booleanValue:
|
2517
|
+
case stringValue:
|
2518
|
+
return 0;
|
2519
|
+
#ifndef JSON_VALUE_USE_INTERNAL_MAP
|
2520
|
+
case arrayValue: // size of the array is highest index + 1
|
2521
|
+
if ( !value_.map_->empty() )
|
2522
|
+
{
|
2523
|
+
ObjectValues::const_iterator itLast = value_.map_->end();
|
2524
|
+
--itLast;
|
2525
|
+
return (*itLast).first.index()+1;
|
2526
|
+
}
|
2527
|
+
return 0;
|
2528
|
+
case objectValue:
|
2529
|
+
return ArrayIndex( value_.map_->size() );
|
2530
|
+
#else
|
2531
|
+
case arrayValue:
|
2532
|
+
return Int( value_.array_->size() );
|
2533
|
+
case objectValue:
|
2534
|
+
return Int( value_.map_->size() );
|
2535
|
+
#endif
|
2536
|
+
default:
|
2537
|
+
JSON_ASSERT_UNREACHABLE;
|
2538
|
+
}
|
2539
|
+
return 0; // unreachable;
|
2540
|
+
}
|
2541
|
+
|
2542
|
+
|
2543
|
+
bool
|
2544
|
+
Value::empty() const
|
2545
|
+
{
|
2546
|
+
if ( isNull() || isArray() || isObject() )
|
2547
|
+
return size() == 0u;
|
2548
|
+
else
|
2549
|
+
return false;
|
2550
|
+
}
|
2551
|
+
|
2552
|
+
|
2553
|
+
bool
|
2554
|
+
Value::operator!() const
|
2555
|
+
{
|
2556
|
+
return isNull();
|
2557
|
+
}
|
2558
|
+
|
2559
|
+
|
2560
|
+
void
|
2561
|
+
Value::clear()
|
2562
|
+
{
|
2563
|
+
JSON_ASSERT( type_ == nullValue || type_ == arrayValue || type_ == objectValue );
|
2564
|
+
|
2565
|
+
switch ( type_ )
|
2566
|
+
{
|
2567
|
+
#ifndef JSON_VALUE_USE_INTERNAL_MAP
|
2568
|
+
case arrayValue:
|
2569
|
+
case objectValue:
|
2570
|
+
value_.map_->clear();
|
2571
|
+
break;
|
2572
|
+
#else
|
2573
|
+
case arrayValue:
|
2574
|
+
value_.array_->clear();
|
2575
|
+
break;
|
2576
|
+
case objectValue:
|
2577
|
+
value_.map_->clear();
|
2578
|
+
break;
|
2579
|
+
#endif
|
2580
|
+
default:
|
2581
|
+
break;
|
2582
|
+
}
|
2583
|
+
}
|
2584
|
+
|
2585
|
+
void
|
2586
|
+
Value::resize( ArrayIndex newSize )
|
2587
|
+
{
|
2588
|
+
JSON_ASSERT( type_ == nullValue || type_ == arrayValue );
|
2589
|
+
if ( type_ == nullValue )
|
2590
|
+
*this = Value( arrayValue );
|
2591
|
+
#ifndef JSON_VALUE_USE_INTERNAL_MAP
|
2592
|
+
ArrayIndex oldSize = size();
|
2593
|
+
if ( newSize == 0 )
|
2594
|
+
clear();
|
2595
|
+
else if ( newSize > oldSize )
|
2596
|
+
(*this)[ newSize - 1 ];
|
2597
|
+
else
|
2598
|
+
{
|
2599
|
+
for ( ArrayIndex index = newSize; index < oldSize; ++index )
|
2600
|
+
{
|
2601
|
+
value_.map_->erase( index );
|
2602
|
+
}
|
2603
|
+
assert( size() == newSize );
|
2604
|
+
}
|
2605
|
+
#else
|
2606
|
+
value_.array_->resize( newSize );
|
2607
|
+
#endif
|
2608
|
+
}
|
2609
|
+
|
2610
|
+
|
2611
|
+
Value &
|
2612
|
+
Value::operator[]( ArrayIndex index )
|
2613
|
+
{
|
2614
|
+
JSON_ASSERT( type_ == nullValue || type_ == arrayValue );
|
2615
|
+
if ( type_ == nullValue )
|
2616
|
+
*this = Value( arrayValue );
|
2617
|
+
#ifndef JSON_VALUE_USE_INTERNAL_MAP
|
2618
|
+
CZString key( index );
|
2619
|
+
ObjectValues::iterator it = value_.map_->lower_bound( key );
|
2620
|
+
if ( it != value_.map_->end() && (*it).first == key )
|
2621
|
+
return (*it).second;
|
2622
|
+
|
2623
|
+
ObjectValues::value_type defaultValue( key, null );
|
2624
|
+
it = value_.map_->insert( it, defaultValue );
|
2625
|
+
return (*it).second;
|
2626
|
+
#else
|
2627
|
+
return value_.array_->resolveReference( index );
|
2628
|
+
#endif
|
2629
|
+
}
|
2630
|
+
|
2631
|
+
|
2632
|
+
Value &
|
2633
|
+
Value::operator[]( int index )
|
2634
|
+
{
|
2635
|
+
JSON_ASSERT( index >= 0 );
|
2636
|
+
return (*this)[ ArrayIndex(index) ];
|
2637
|
+
}
|
2638
|
+
|
2639
|
+
|
2640
|
+
const Value &
|
2641
|
+
Value::operator[]( ArrayIndex index ) const
|
2642
|
+
{
|
2643
|
+
JSON_ASSERT( type_ == nullValue || type_ == arrayValue );
|
2644
|
+
if ( type_ == nullValue )
|
2645
|
+
return null;
|
2646
|
+
#ifndef JSON_VALUE_USE_INTERNAL_MAP
|
2647
|
+
CZString key( index );
|
2648
|
+
ObjectValues::const_iterator it = value_.map_->find( key );
|
2649
|
+
if ( it == value_.map_->end() )
|
2650
|
+
return null;
|
2651
|
+
return (*it).second;
|
2652
|
+
#else
|
2653
|
+
Value *value = value_.array_->find( index );
|
2654
|
+
return value ? *value : null;
|
2655
|
+
#endif
|
2656
|
+
}
|
2657
|
+
|
2658
|
+
|
2659
|
+
const Value &
|
2660
|
+
Value::operator[]( int index ) const
|
2661
|
+
{
|
2662
|
+
JSON_ASSERT( index >= 0 );
|
2663
|
+
return (*this)[ ArrayIndex(index) ];
|
2664
|
+
}
|
2665
|
+
|
2666
|
+
|
2667
|
+
Value &
|
2668
|
+
Value::operator[]( const char *key )
|
2669
|
+
{
|
2670
|
+
return resolveReference( key, false );
|
2671
|
+
}
|
2672
|
+
|
2673
|
+
|
2674
|
+
Value &
|
2675
|
+
Value::resolveReference( const char *key,
|
2676
|
+
bool isStatic )
|
2677
|
+
{
|
2678
|
+
JSON_ASSERT( type_ == nullValue || type_ == objectValue );
|
2679
|
+
if ( type_ == nullValue )
|
2680
|
+
*this = Value( objectValue );
|
2681
|
+
#ifndef JSON_VALUE_USE_INTERNAL_MAP
|
2682
|
+
CZString actualKey( key, isStatic ? CZString::noDuplication
|
2683
|
+
: CZString::duplicateOnCopy );
|
2684
|
+
ObjectValues::iterator it = value_.map_->lower_bound( actualKey );
|
2685
|
+
if ( it != value_.map_->end() && (*it).first == actualKey )
|
2686
|
+
return (*it).second;
|
2687
|
+
|
2688
|
+
ObjectValues::value_type defaultValue( actualKey, null );
|
2689
|
+
it = value_.map_->insert( it, defaultValue );
|
2690
|
+
Value &value = (*it).second;
|
2691
|
+
return value;
|
2692
|
+
#else
|
2693
|
+
return value_.map_->resolveReference( key, isStatic );
|
2694
|
+
#endif
|
2695
|
+
}
|
2696
|
+
|
2697
|
+
|
2698
|
+
Value
|
2699
|
+
Value::get( ArrayIndex index,
|
2700
|
+
const Value &defaultValue ) const
|
2701
|
+
{
|
2702
|
+
const Value *value = &((*this)[index]);
|
2703
|
+
return value == &null ? defaultValue : *value;
|
2704
|
+
}
|
2705
|
+
|
2706
|
+
|
2707
|
+
bool
|
2708
|
+
Value::isValidIndex( ArrayIndex index ) const
|
2709
|
+
{
|
2710
|
+
return index < size();
|
2711
|
+
}
|
2712
|
+
|
2713
|
+
|
2714
|
+
|
2715
|
+
const Value &
|
2716
|
+
Value::operator[]( const char *key ) const
|
2717
|
+
{
|
2718
|
+
JSON_ASSERT( type_ == nullValue || type_ == objectValue );
|
2719
|
+
if ( type_ == nullValue )
|
2720
|
+
return null;
|
2721
|
+
#ifndef JSON_VALUE_USE_INTERNAL_MAP
|
2722
|
+
CZString actualKey( key, CZString::noDuplication );
|
2723
|
+
ObjectValues::const_iterator it = value_.map_->find( actualKey );
|
2724
|
+
if ( it == value_.map_->end() )
|
2725
|
+
return null;
|
2726
|
+
return (*it).second;
|
2727
|
+
#else
|
2728
|
+
const Value *value = value_.map_->find( key );
|
2729
|
+
return value ? *value : null;
|
2730
|
+
#endif
|
2731
|
+
}
|
2732
|
+
|
2733
|
+
|
2734
|
+
Value &
|
2735
|
+
Value::operator[]( const std::string &key )
|
2736
|
+
{
|
2737
|
+
return (*this)[ key.c_str() ];
|
2738
|
+
}
|
2739
|
+
|
2740
|
+
|
2741
|
+
const Value &
|
2742
|
+
Value::operator[]( const std::string &key ) const
|
2743
|
+
{
|
2744
|
+
return (*this)[ key.c_str() ];
|
2745
|
+
}
|
2746
|
+
|
2747
|
+
Value &
|
2748
|
+
Value::operator[]( const StaticString &key )
|
2749
|
+
{
|
2750
|
+
return resolveReference( key, true );
|
2751
|
+
}
|
2752
|
+
|
2753
|
+
|
2754
|
+
# ifdef JSON_USE_CPPTL
|
2755
|
+
Value &
|
2756
|
+
Value::operator[]( const CppTL::ConstString &key )
|
2757
|
+
{
|
2758
|
+
return (*this)[ key.c_str() ];
|
2759
|
+
}
|
2760
|
+
|
2761
|
+
|
2762
|
+
const Value &
|
2763
|
+
Value::operator[]( const CppTL::ConstString &key ) const
|
2764
|
+
{
|
2765
|
+
return (*this)[ key.c_str() ];
|
2766
|
+
}
|
2767
|
+
# endif
|
2768
|
+
|
2769
|
+
|
2770
|
+
Value &
|
2771
|
+
Value::append( const Value &value )
|
2772
|
+
{
|
2773
|
+
return (*this)[size()] = value;
|
2774
|
+
}
|
2775
|
+
|
2776
|
+
|
2777
|
+
Value
|
2778
|
+
Value::get( const char *key,
|
2779
|
+
const Value &defaultValue ) const
|
2780
|
+
{
|
2781
|
+
const Value *value = &((*this)[key]);
|
2782
|
+
return value == &null ? defaultValue : *value;
|
2783
|
+
}
|
2784
|
+
|
2785
|
+
|
2786
|
+
Value
|
2787
|
+
Value::get( const std::string &key,
|
2788
|
+
const Value &defaultValue ) const
|
2789
|
+
{
|
2790
|
+
return get( key.c_str(), defaultValue );
|
2791
|
+
}
|
2792
|
+
|
2793
|
+
Value
|
2794
|
+
Value::removeMember( const char* key )
|
2795
|
+
{
|
2796
|
+
JSON_ASSERT( type_ == nullValue || type_ == objectValue );
|
2797
|
+
if ( type_ == nullValue )
|
2798
|
+
return null;
|
2799
|
+
#ifndef JSON_VALUE_USE_INTERNAL_MAP
|
2800
|
+
CZString actualKey( key, CZString::noDuplication );
|
2801
|
+
ObjectValues::iterator it = value_.map_->find( actualKey );
|
2802
|
+
if ( it == value_.map_->end() )
|
2803
|
+
return null;
|
2804
|
+
Value old(it->second);
|
2805
|
+
value_.map_->erase(it);
|
2806
|
+
return old;
|
2807
|
+
#else
|
2808
|
+
Value *value = value_.map_->find( key );
|
2809
|
+
if (value){
|
2810
|
+
Value old(*value);
|
2811
|
+
value_.map_.remove( key );
|
2812
|
+
return old;
|
2813
|
+
} else {
|
2814
|
+
return null;
|
2815
|
+
}
|
2816
|
+
#endif
|
2817
|
+
}
|
2818
|
+
|
2819
|
+
Value
|
2820
|
+
Value::removeMember( const std::string &key )
|
2821
|
+
{
|
2822
|
+
return removeMember( key.c_str() );
|
2823
|
+
}
|
2824
|
+
|
2825
|
+
# ifdef JSON_USE_CPPTL
|
2826
|
+
Value
|
2827
|
+
Value::get( const CppTL::ConstString &key,
|
2828
|
+
const Value &defaultValue ) const
|
2829
|
+
{
|
2830
|
+
return get( key.c_str(), defaultValue );
|
2831
|
+
}
|
2832
|
+
# endif
|
2833
|
+
|
2834
|
+
bool
|
2835
|
+
Value::isMember( const char *key ) const
|
2836
|
+
{
|
2837
|
+
const Value *value = &((*this)[key]);
|
2838
|
+
return value != &null;
|
2839
|
+
}
|
2840
|
+
|
2841
|
+
|
2842
|
+
bool
|
2843
|
+
Value::isMember( const std::string &key ) const
|
2844
|
+
{
|
2845
|
+
return isMember( key.c_str() );
|
2846
|
+
}
|
2847
|
+
|
2848
|
+
|
2849
|
+
# ifdef JSON_USE_CPPTL
|
2850
|
+
bool
|
2851
|
+
Value::isMember( const CppTL::ConstString &key ) const
|
2852
|
+
{
|
2853
|
+
return isMember( key.c_str() );
|
2854
|
+
}
|
2855
|
+
#endif
|
2856
|
+
|
2857
|
+
Value::Members
|
2858
|
+
Value::getMemberNames() const
|
2859
|
+
{
|
2860
|
+
JSON_ASSERT( type_ == nullValue || type_ == objectValue );
|
2861
|
+
if ( type_ == nullValue )
|
2862
|
+
return Value::Members();
|
2863
|
+
Members members;
|
2864
|
+
members.reserve( value_.map_->size() );
|
2865
|
+
#ifndef JSON_VALUE_USE_INTERNAL_MAP
|
2866
|
+
ObjectValues::const_iterator it = value_.map_->begin();
|
2867
|
+
ObjectValues::const_iterator itEnd = value_.map_->end();
|
2868
|
+
for ( ; it != itEnd; ++it )
|
2869
|
+
members.push_back( std::string( (*it).first.c_str() ) );
|
2870
|
+
#else
|
2871
|
+
ValueInternalMap::IteratorState it;
|
2872
|
+
ValueInternalMap::IteratorState itEnd;
|
2873
|
+
value_.map_->makeBeginIterator( it );
|
2874
|
+
value_.map_->makeEndIterator( itEnd );
|
2875
|
+
for ( ; !ValueInternalMap::equals( it, itEnd ); ValueInternalMap::increment(it) )
|
2876
|
+
members.push_back( std::string( ValueInternalMap::key( it ) ) );
|
2877
|
+
#endif
|
2878
|
+
return members;
|
2879
|
+
}
|
2880
|
+
//
|
2881
|
+
//# ifdef JSON_USE_CPPTL
|
2882
|
+
//EnumMemberNames
|
2883
|
+
//Value::enumMemberNames() const
|
2884
|
+
//{
|
2885
|
+
// if ( type_ == objectValue )
|
2886
|
+
// {
|
2887
|
+
// return CppTL::Enum::any( CppTL::Enum::transform(
|
2888
|
+
// CppTL::Enum::keys( *(value_.map_), CppTL::Type<const CZString &>() ),
|
2889
|
+
// MemberNamesTransform() ) );
|
2890
|
+
// }
|
2891
|
+
// return EnumMemberNames();
|
2892
|
+
//}
|
2893
|
+
//
|
2894
|
+
//
|
2895
|
+
//EnumValues
|
2896
|
+
//Value::enumValues() const
|
2897
|
+
//{
|
2898
|
+
// if ( type_ == objectValue || type_ == arrayValue )
|
2899
|
+
// return CppTL::Enum::anyValues( *(value_.map_),
|
2900
|
+
// CppTL::Type<const Value &>() );
|
2901
|
+
// return EnumValues();
|
2902
|
+
//}
|
2903
|
+
//
|
2904
|
+
//# endif
|
2905
|
+
|
2906
|
+
|
2907
|
+
bool
|
2908
|
+
Value::isNull() const
|
2909
|
+
{
|
2910
|
+
return type_ == nullValue;
|
2911
|
+
}
|
2912
|
+
|
2913
|
+
|
2914
|
+
bool
|
2915
|
+
Value::isBool() const
|
2916
|
+
{
|
2917
|
+
return type_ == booleanValue;
|
2918
|
+
}
|
2919
|
+
|
2920
|
+
|
2921
|
+
bool
|
2922
|
+
Value::isInt() const
|
2923
|
+
{
|
2924
|
+
return type_ == intValue;
|
2925
|
+
}
|
2926
|
+
|
2927
|
+
|
2928
|
+
bool
|
2929
|
+
Value::isUInt() const
|
2930
|
+
{
|
2931
|
+
return type_ == uintValue;
|
2932
|
+
}
|
2933
|
+
|
2934
|
+
|
2935
|
+
bool
|
2936
|
+
Value::isIntegral() const
|
2937
|
+
{
|
2938
|
+
return type_ == intValue
|
2939
|
+
|| type_ == uintValue
|
2940
|
+
|| type_ == booleanValue;
|
2941
|
+
}
|
2942
|
+
|
2943
|
+
|
2944
|
+
bool
|
2945
|
+
Value::isDouble() const
|
2946
|
+
{
|
2947
|
+
return type_ == realValue;
|
2948
|
+
}
|
2949
|
+
|
2950
|
+
|
2951
|
+
bool
|
2952
|
+
Value::isNumeric() const
|
2953
|
+
{
|
2954
|
+
return isIntegral() || isDouble();
|
2955
|
+
}
|
2956
|
+
|
2957
|
+
|
2958
|
+
bool
|
2959
|
+
Value::isString() const
|
2960
|
+
{
|
2961
|
+
return type_ == stringValue;
|
2962
|
+
}
|
2963
|
+
|
2964
|
+
|
2965
|
+
bool
|
2966
|
+
Value::isArray() const
|
2967
|
+
{
|
2968
|
+
return type_ == nullValue || type_ == arrayValue;
|
2969
|
+
}
|
2970
|
+
|
2971
|
+
|
2972
|
+
bool
|
2973
|
+
Value::isObject() const
|
2974
|
+
{
|
2975
|
+
return type_ == nullValue || type_ == objectValue;
|
2976
|
+
}
|
2977
|
+
|
2978
|
+
|
2979
|
+
void
|
2980
|
+
Value::setComment( const char *comment,
|
2981
|
+
CommentPlacement placement )
|
2982
|
+
{
|
2983
|
+
if ( !comments_ )
|
2984
|
+
comments_ = new CommentInfo[numberOfCommentPlacement];
|
2985
|
+
comments_[placement].setComment( comment );
|
2986
|
+
}
|
2987
|
+
|
2988
|
+
|
2989
|
+
void
|
2990
|
+
Value::setComment( const std::string &comment,
|
2991
|
+
CommentPlacement placement )
|
2992
|
+
{
|
2993
|
+
setComment( comment.c_str(), placement );
|
2994
|
+
}
|
2995
|
+
|
2996
|
+
|
2997
|
+
bool
|
2998
|
+
Value::hasComment( CommentPlacement placement ) const
|
2999
|
+
{
|
3000
|
+
return comments_ != 0 && comments_[placement].comment_ != 0;
|
3001
|
+
}
|
3002
|
+
|
3003
|
+
std::string
|
3004
|
+
Value::getComment( CommentPlacement placement ) const
|
3005
|
+
{
|
3006
|
+
if ( hasComment(placement) )
|
3007
|
+
return comments_[placement].comment_;
|
3008
|
+
return "";
|
3009
|
+
}
|
3010
|
+
|
3011
|
+
|
3012
|
+
std::string
|
3013
|
+
Value::toStyledString() const
|
3014
|
+
{
|
3015
|
+
StyledWriter writer;
|
3016
|
+
return writer.write( *this );
|
3017
|
+
}
|
3018
|
+
|
3019
|
+
|
3020
|
+
Value::const_iterator
|
3021
|
+
Value::begin() const
|
3022
|
+
{
|
3023
|
+
switch ( type_ )
|
3024
|
+
{
|
3025
|
+
#ifdef JSON_VALUE_USE_INTERNAL_MAP
|
3026
|
+
case arrayValue:
|
3027
|
+
if ( value_.array_ )
|
3028
|
+
{
|
3029
|
+
ValueInternalArray::IteratorState it;
|
3030
|
+
value_.array_->makeBeginIterator( it );
|
3031
|
+
return const_iterator( it );
|
3032
|
+
}
|
3033
|
+
break;
|
3034
|
+
case objectValue:
|
3035
|
+
if ( value_.map_ )
|
3036
|
+
{
|
3037
|
+
ValueInternalMap::IteratorState it;
|
3038
|
+
value_.map_->makeBeginIterator( it );
|
3039
|
+
return const_iterator( it );
|
3040
|
+
}
|
3041
|
+
break;
|
3042
|
+
#else
|
3043
|
+
case arrayValue:
|
3044
|
+
case objectValue:
|
3045
|
+
if ( value_.map_ )
|
3046
|
+
return const_iterator( value_.map_->begin() );
|
3047
|
+
break;
|
3048
|
+
#endif
|
3049
|
+
default:
|
3050
|
+
break;
|
3051
|
+
}
|
3052
|
+
return const_iterator();
|
3053
|
+
}
|
3054
|
+
|
3055
|
+
Value::const_iterator
|
3056
|
+
Value::end() const
|
3057
|
+
{
|
3058
|
+
switch ( type_ )
|
3059
|
+
{
|
3060
|
+
#ifdef JSON_VALUE_USE_INTERNAL_MAP
|
3061
|
+
case arrayValue:
|
3062
|
+
if ( value_.array_ )
|
3063
|
+
{
|
3064
|
+
ValueInternalArray::IteratorState it;
|
3065
|
+
value_.array_->makeEndIterator( it );
|
3066
|
+
return const_iterator( it );
|
3067
|
+
}
|
3068
|
+
break;
|
3069
|
+
case objectValue:
|
3070
|
+
if ( value_.map_ )
|
3071
|
+
{
|
3072
|
+
ValueInternalMap::IteratorState it;
|
3073
|
+
value_.map_->makeEndIterator( it );
|
3074
|
+
return const_iterator( it );
|
3075
|
+
}
|
3076
|
+
break;
|
3077
|
+
#else
|
3078
|
+
case arrayValue:
|
3079
|
+
case objectValue:
|
3080
|
+
if ( value_.map_ )
|
3081
|
+
return const_iterator( value_.map_->end() );
|
3082
|
+
break;
|
3083
|
+
#endif
|
3084
|
+
default:
|
3085
|
+
break;
|
3086
|
+
}
|
3087
|
+
return const_iterator();
|
3088
|
+
}
|
3089
|
+
|
3090
|
+
|
3091
|
+
Value::iterator
|
3092
|
+
Value::begin()
|
3093
|
+
{
|
3094
|
+
switch ( type_ )
|
3095
|
+
{
|
3096
|
+
#ifdef JSON_VALUE_USE_INTERNAL_MAP
|
3097
|
+
case arrayValue:
|
3098
|
+
if ( value_.array_ )
|
3099
|
+
{
|
3100
|
+
ValueInternalArray::IteratorState it;
|
3101
|
+
value_.array_->makeBeginIterator( it );
|
3102
|
+
return iterator( it );
|
3103
|
+
}
|
3104
|
+
break;
|
3105
|
+
case objectValue:
|
3106
|
+
if ( value_.map_ )
|
3107
|
+
{
|
3108
|
+
ValueInternalMap::IteratorState it;
|
3109
|
+
value_.map_->makeBeginIterator( it );
|
3110
|
+
return iterator( it );
|
3111
|
+
}
|
3112
|
+
break;
|
3113
|
+
#else
|
3114
|
+
case arrayValue:
|
3115
|
+
case objectValue:
|
3116
|
+
if ( value_.map_ )
|
3117
|
+
return iterator( value_.map_->begin() );
|
3118
|
+
break;
|
3119
|
+
#endif
|
3120
|
+
default:
|
3121
|
+
break;
|
3122
|
+
}
|
3123
|
+
return iterator();
|
3124
|
+
}
|
3125
|
+
|
3126
|
+
Value::iterator
|
3127
|
+
Value::end()
|
3128
|
+
{
|
3129
|
+
switch ( type_ )
|
3130
|
+
{
|
3131
|
+
#ifdef JSON_VALUE_USE_INTERNAL_MAP
|
3132
|
+
case arrayValue:
|
3133
|
+
if ( value_.array_ )
|
3134
|
+
{
|
3135
|
+
ValueInternalArray::IteratorState it;
|
3136
|
+
value_.array_->makeEndIterator( it );
|
3137
|
+
return iterator( it );
|
3138
|
+
}
|
3139
|
+
break;
|
3140
|
+
case objectValue:
|
3141
|
+
if ( value_.map_ )
|
3142
|
+
{
|
3143
|
+
ValueInternalMap::IteratorState it;
|
3144
|
+
value_.map_->makeEndIterator( it );
|
3145
|
+
return iterator( it );
|
3146
|
+
}
|
3147
|
+
break;
|
3148
|
+
#else
|
3149
|
+
case arrayValue:
|
3150
|
+
case objectValue:
|
3151
|
+
if ( value_.map_ )
|
3152
|
+
return iterator( value_.map_->end() );
|
3153
|
+
break;
|
3154
|
+
#endif
|
3155
|
+
default:
|
3156
|
+
break;
|
3157
|
+
}
|
3158
|
+
return iterator();
|
3159
|
+
}
|
3160
|
+
|
3161
|
+
|
3162
|
+
// class PathArgument
|
3163
|
+
// //////////////////////////////////////////////////////////////////
|
3164
|
+
|
3165
|
+
PathArgument::PathArgument()
|
3166
|
+
: kind_( kindNone )
|
3167
|
+
{
|
3168
|
+
}
|
3169
|
+
|
3170
|
+
|
3171
|
+
PathArgument::PathArgument( ArrayIndex index )
|
3172
|
+
: index_( index )
|
3173
|
+
, kind_( kindIndex )
|
3174
|
+
{
|
3175
|
+
}
|
3176
|
+
|
3177
|
+
|
3178
|
+
PathArgument::PathArgument( const char *key )
|
3179
|
+
: key_( key )
|
3180
|
+
, kind_( kindKey )
|
3181
|
+
{
|
3182
|
+
}
|
3183
|
+
|
3184
|
+
|
3185
|
+
PathArgument::PathArgument( const std::string &key )
|
3186
|
+
: key_( key.c_str() )
|
3187
|
+
, kind_( kindKey )
|
3188
|
+
{
|
3189
|
+
}
|
3190
|
+
|
3191
|
+
// class Path
|
3192
|
+
// //////////////////////////////////////////////////////////////////
|
3193
|
+
|
3194
|
+
Path::Path( const std::string &path,
|
3195
|
+
const PathArgument &a1,
|
3196
|
+
const PathArgument &a2,
|
3197
|
+
const PathArgument &a3,
|
3198
|
+
const PathArgument &a4,
|
3199
|
+
const PathArgument &a5 )
|
3200
|
+
{
|
3201
|
+
InArgs in;
|
3202
|
+
in.push_back( &a1 );
|
3203
|
+
in.push_back( &a2 );
|
3204
|
+
in.push_back( &a3 );
|
3205
|
+
in.push_back( &a4 );
|
3206
|
+
in.push_back( &a5 );
|
3207
|
+
makePath( path, in );
|
3208
|
+
}
|
3209
|
+
|
3210
|
+
|
3211
|
+
void
|
3212
|
+
Path::makePath( const std::string &path,
|
3213
|
+
const InArgs &in )
|
3214
|
+
{
|
3215
|
+
const char *current = path.c_str();
|
3216
|
+
const char *end = current + path.length();
|
3217
|
+
InArgs::const_iterator itInArg = in.begin();
|
3218
|
+
while ( current != end )
|
3219
|
+
{
|
3220
|
+
if ( *current == '[' )
|
3221
|
+
{
|
3222
|
+
++current;
|
3223
|
+
if ( *current == '%' )
|
3224
|
+
addPathInArg( path, in, itInArg, PathArgument::kindIndex );
|
3225
|
+
else
|
3226
|
+
{
|
3227
|
+
ArrayIndex index = 0;
|
3228
|
+
for ( ; current != end && *current >= '0' && *current <= '9'; ++current )
|
3229
|
+
index = index * 10 + ArrayIndex(*current - '0');
|
3230
|
+
args_.push_back( index );
|
3231
|
+
}
|
3232
|
+
if ( current == end || *current++ != ']' )
|
3233
|
+
invalidPath( path, int(current - path.c_str()) );
|
3234
|
+
}
|
3235
|
+
else if ( *current == '%' )
|
3236
|
+
{
|
3237
|
+
addPathInArg( path, in, itInArg, PathArgument::kindKey );
|
3238
|
+
++current;
|
3239
|
+
}
|
3240
|
+
else if ( *current == '.' )
|
3241
|
+
{
|
3242
|
+
++current;
|
3243
|
+
}
|
3244
|
+
else
|
3245
|
+
{
|
3246
|
+
const char *beginName = current;
|
3247
|
+
while ( current != end && !strchr( "[.", *current ) )
|
3248
|
+
++current;
|
3249
|
+
args_.push_back( std::string( beginName, current ) );
|
3250
|
+
}
|
3251
|
+
}
|
3252
|
+
}
|
3253
|
+
|
3254
|
+
|
3255
|
+
void
|
3256
|
+
Path::addPathInArg( const std::string &path,
|
3257
|
+
const InArgs &in,
|
3258
|
+
InArgs::const_iterator &itInArg,
|
3259
|
+
PathArgument::Kind kind )
|
3260
|
+
{
|
3261
|
+
if ( itInArg == in.end() )
|
3262
|
+
{
|
3263
|
+
// Error: missing argument %d
|
3264
|
+
}
|
3265
|
+
else if ( (*itInArg)->kind_ != kind )
|
3266
|
+
{
|
3267
|
+
// Error: bad argument type
|
3268
|
+
}
|
3269
|
+
else
|
3270
|
+
{
|
3271
|
+
args_.push_back( **itInArg );
|
3272
|
+
}
|
3273
|
+
}
|
3274
|
+
|
3275
|
+
|
3276
|
+
void
|
3277
|
+
Path::invalidPath( const std::string &path,
|
3278
|
+
int location )
|
3279
|
+
{
|
3280
|
+
// Error: invalid path.
|
3281
|
+
}
|
3282
|
+
|
3283
|
+
|
3284
|
+
const Value &
|
3285
|
+
Path::resolve( const Value &root ) const
|
3286
|
+
{
|
3287
|
+
const Value *node = &root;
|
3288
|
+
for ( Args::const_iterator it = args_.begin(); it != args_.end(); ++it )
|
3289
|
+
{
|
3290
|
+
const PathArgument &arg = *it;
|
3291
|
+
if ( arg.kind_ == PathArgument::kindIndex )
|
3292
|
+
{
|
3293
|
+
if ( !node->isArray() || node->isValidIndex( arg.index_ ) )
|
3294
|
+
{
|
3295
|
+
// Error: unable to resolve path (array value expected at position...
|
3296
|
+
}
|
3297
|
+
node = &((*node)[arg.index_]);
|
3298
|
+
}
|
3299
|
+
else if ( arg.kind_ == PathArgument::kindKey )
|
3300
|
+
{
|
3301
|
+
if ( !node->isObject() )
|
3302
|
+
{
|
3303
|
+
// Error: unable to resolve path (object value expected at position...)
|
3304
|
+
}
|
3305
|
+
node = &((*node)[arg.key_]);
|
3306
|
+
if ( node == &Value::null )
|
3307
|
+
{
|
3308
|
+
// Error: unable to resolve path (object has no member named '' at position...)
|
3309
|
+
}
|
3310
|
+
}
|
3311
|
+
}
|
3312
|
+
return *node;
|
3313
|
+
}
|
3314
|
+
|
3315
|
+
|
3316
|
+
Value
|
3317
|
+
Path::resolve( const Value &root,
|
3318
|
+
const Value &defaultValue ) const
|
3319
|
+
{
|
3320
|
+
const Value *node = &root;
|
3321
|
+
for ( Args::const_iterator it = args_.begin(); it != args_.end(); ++it )
|
3322
|
+
{
|
3323
|
+
const PathArgument &arg = *it;
|
3324
|
+
if ( arg.kind_ == PathArgument::kindIndex )
|
3325
|
+
{
|
3326
|
+
if ( !node->isArray() || node->isValidIndex( arg.index_ ) )
|
3327
|
+
return defaultValue;
|
3328
|
+
node = &((*node)[arg.index_]);
|
3329
|
+
}
|
3330
|
+
else if ( arg.kind_ == PathArgument::kindKey )
|
3331
|
+
{
|
3332
|
+
if ( !node->isObject() )
|
3333
|
+
return defaultValue;
|
3334
|
+
node = &((*node)[arg.key_]);
|
3335
|
+
if ( node == &Value::null )
|
3336
|
+
return defaultValue;
|
3337
|
+
}
|
3338
|
+
}
|
3339
|
+
return *node;
|
3340
|
+
}
|
3341
|
+
|
3342
|
+
|
3343
|
+
Value &
|
3344
|
+
Path::make( Value &root ) const
|
3345
|
+
{
|
3346
|
+
Value *node = &root;
|
3347
|
+
for ( Args::const_iterator it = args_.begin(); it != args_.end(); ++it )
|
3348
|
+
{
|
3349
|
+
const PathArgument &arg = *it;
|
3350
|
+
if ( arg.kind_ == PathArgument::kindIndex )
|
3351
|
+
{
|
3352
|
+
if ( !node->isArray() )
|
3353
|
+
{
|
3354
|
+
// Error: node is not an array at position ...
|
3355
|
+
}
|
3356
|
+
node = &((*node)[arg.index_]);
|
3357
|
+
}
|
3358
|
+
else if ( arg.kind_ == PathArgument::kindKey )
|
3359
|
+
{
|
3360
|
+
if ( !node->isObject() )
|
3361
|
+
{
|
3362
|
+
// Error: node is not an object at position...
|
3363
|
+
}
|
3364
|
+
node = &((*node)[arg.key_]);
|
3365
|
+
}
|
3366
|
+
}
|
3367
|
+
return *node;
|
3368
|
+
}
|
3369
|
+
|
3370
|
+
|
3371
|
+
} // namespace Json
|
3372
|
+
|
3373
|
+
// //////////////////////////////////////////////////////////////////////
|
3374
|
+
// End of content of file: src/lib_json/json_value.cpp
|
3375
|
+
// //////////////////////////////////////////////////////////////////////
|
3376
|
+
|
3377
|
+
|
3378
|
+
|
3379
|
+
|
3380
|
+
|
3381
|
+
|
3382
|
+
// //////////////////////////////////////////////////////////////////////
|
3383
|
+
// Beginning of content of file: src/lib_json/json_writer.cpp
|
3384
|
+
// //////////////////////////////////////////////////////////////////////
|
3385
|
+
|
3386
|
+
// Copyright 2007-2010 Baptiste Lepilleur
|
3387
|
+
// Distributed under MIT license, or public domain if desired and
|
3388
|
+
// recognized in your jurisdiction.
|
3389
|
+
// See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE
|
3390
|
+
|
3391
|
+
#if !defined(JSON_IS_AMALGAMATION)
|
3392
|
+
# include <json/writer.h>
|
3393
|
+
# include "json_tool.h"
|
3394
|
+
#endif // if !defined(JSON_IS_AMALGAMATION)
|
3395
|
+
#include <utility>
|
3396
|
+
#include <assert.h>
|
3397
|
+
#include <stdio.h>
|
3398
|
+
#include <string.h>
|
3399
|
+
#include <iostream>
|
3400
|
+
#include <sstream>
|
3401
|
+
#include <iomanip>
|
3402
|
+
#include <ios>
|
3403
|
+
|
3404
|
+
#if _MSC_VER >= 1400 // VC++ 8.0
|
3405
|
+
#pragma warning( disable : 4996 ) // disable warning about strdup being deprecated.
|
3406
|
+
#endif
|
3407
|
+
|
3408
|
+
namespace Json {
|
3409
|
+
|
3410
|
+
static bool containsControlCharacter( const char* str )
|
3411
|
+
{
|
3412
|
+
while ( *str )
|
3413
|
+
{
|
3414
|
+
if ( isControlCharacter( *(str++) ) )
|
3415
|
+
return true;
|
3416
|
+
}
|
3417
|
+
return false;
|
3418
|
+
}
|
3419
|
+
|
3420
|
+
|
3421
|
+
std::string valueToString( LargestInt value )
|
3422
|
+
{
|
3423
|
+
UIntToStringBuffer buffer;
|
3424
|
+
char *current = buffer + sizeof(buffer);
|
3425
|
+
bool isNegative = value < 0;
|
3426
|
+
if ( isNegative )
|
3427
|
+
value = -value;
|
3428
|
+
uintToString( LargestUInt(value), current );
|
3429
|
+
if ( isNegative )
|
3430
|
+
*--current = '-';
|
3431
|
+
assert( current >= buffer );
|
3432
|
+
return current;
|
3433
|
+
}
|
3434
|
+
|
3435
|
+
|
3436
|
+
std::string valueToString( LargestUInt value )
|
3437
|
+
{
|
3438
|
+
UIntToStringBuffer buffer;
|
3439
|
+
char *current = buffer + sizeof(buffer);
|
3440
|
+
uintToString( value, current );
|
3441
|
+
assert( current >= buffer );
|
3442
|
+
return current;
|
3443
|
+
}
|
3444
|
+
|
3445
|
+
#if defined(JSON_HAS_INT64)
|
3446
|
+
|
3447
|
+
std::string valueToString( Int value )
|
3448
|
+
{
|
3449
|
+
return valueToString( LargestInt(value) );
|
3450
|
+
}
|
3451
|
+
|
3452
|
+
|
3453
|
+
std::string valueToString( UInt value )
|
3454
|
+
{
|
3455
|
+
return valueToString( LargestUInt(value) );
|
3456
|
+
}
|
3457
|
+
|
3458
|
+
#endif // # if defined(JSON_HAS_INT64)
|
3459
|
+
|
3460
|
+
|
3461
|
+
std::string valueToString( double value )
|
3462
|
+
{
|
3463
|
+
if (!boost::math::isfinite(value)) {
|
3464
|
+
return "null";
|
3465
|
+
}
|
3466
|
+
|
3467
|
+
char buffer[32];
|
3468
|
+
#if defined(_MSC_VER) && defined(__STDC_SECURE_LIB__) // Use secure version with visual studio 2005 to avoid warning.
|
3469
|
+
sprintf_s(buffer, sizeof(buffer), "%#.16g", value);
|
3470
|
+
#else
|
3471
|
+
snprintf(buffer, sizeof(buffer), "%#.16g", value);
|
3472
|
+
#endif
|
3473
|
+
char* ch = buffer + strlen(buffer) - 1;
|
3474
|
+
if (*ch != '0') return buffer; // nothing to truncate, so save time
|
3475
|
+
while(ch > buffer && *ch == '0'){
|
3476
|
+
--ch;
|
3477
|
+
}
|
3478
|
+
char* last_nonzero = ch;
|
3479
|
+
while(ch >= buffer){
|
3480
|
+
switch(*ch){
|
3481
|
+
case '0':
|
3482
|
+
case '1':
|
3483
|
+
case '2':
|
3484
|
+
case '3':
|
3485
|
+
case '4':
|
3486
|
+
case '5':
|
3487
|
+
case '6':
|
3488
|
+
case '7':
|
3489
|
+
case '8':
|
3490
|
+
case '9':
|
3491
|
+
--ch;
|
3492
|
+
continue;
|
3493
|
+
case '.':
|
3494
|
+
// Truncate zeroes to save bytes in output, but keep one.
|
3495
|
+
*(last_nonzero+2) = '\0';
|
3496
|
+
return buffer;
|
3497
|
+
default:
|
3498
|
+
return buffer;
|
3499
|
+
}
|
3500
|
+
}
|
3501
|
+
return buffer;
|
3502
|
+
}
|
3503
|
+
|
3504
|
+
|
3505
|
+
std::string valueToString( bool value )
|
3506
|
+
{
|
3507
|
+
return value ? "true" : "false";
|
3508
|
+
}
|
3509
|
+
|
3510
|
+
std::string valueToQuotedString( const char *value )
|
3511
|
+
{
|
3512
|
+
// Not sure how to handle unicode...
|
3513
|
+
if (strpbrk(value, "\"\\\b\f\n\r\t") == NULL && !containsControlCharacter( value ))
|
3514
|
+
return std::string("\"") + value + "\"";
|
3515
|
+
// We have to walk value and escape any special characters.
|
3516
|
+
// Appending to std::string is not efficient, but this should be rare.
|
3517
|
+
// (Note: forward slashes are *not* rare, but I am not escaping them.)
|
3518
|
+
std::string::size_type maxsize = strlen(value)*2 + 3; // allescaped+quotes+NULL
|
3519
|
+
std::string result;
|
3520
|
+
result.reserve(maxsize); // to avoid lots of mallocs
|
3521
|
+
result += "\"";
|
3522
|
+
for (const char* c=value; *c != 0; ++c)
|
3523
|
+
{
|
3524
|
+
switch(*c)
|
3525
|
+
{
|
3526
|
+
case '\"':
|
3527
|
+
result += "\\\"";
|
3528
|
+
break;
|
3529
|
+
case '\\':
|
3530
|
+
result += "\\\\";
|
3531
|
+
break;
|
3532
|
+
case '\b':
|
3533
|
+
result += "\\b";
|
3534
|
+
break;
|
3535
|
+
case '\f':
|
3536
|
+
result += "\\f";
|
3537
|
+
break;
|
3538
|
+
case '\n':
|
3539
|
+
result += "\\n";
|
3540
|
+
break;
|
3541
|
+
case '\r':
|
3542
|
+
result += "\\r";
|
3543
|
+
break;
|
3544
|
+
case '\t':
|
3545
|
+
result += "\\t";
|
3546
|
+
break;
|
3547
|
+
//case '/':
|
3548
|
+
// Even though \/ is considered a legal escape in JSON, a bare
|
3549
|
+
// slash is also legal, so I see no reason to escape it.
|
3550
|
+
// (I hope I am not misunderstanding something.
|
3551
|
+
// blep notes: actually escaping \/ may be useful in javascript to avoid </
|
3552
|
+
// sequence.
|
3553
|
+
// Should add a flag to allow this compatibility mode and prevent this
|
3554
|
+
// sequence from occurring.
|
3555
|
+
default:
|
3556
|
+
if ( isControlCharacter( *c ) )
|
3557
|
+
{
|
3558
|
+
std::ostringstream oss;
|
3559
|
+
oss << "\\u" << std::hex << std::uppercase << std::setfill('0') << std::setw(4) << static_cast<int>(*c);
|
3560
|
+
result += oss.str();
|
3561
|
+
}
|
3562
|
+
else
|
3563
|
+
{
|
3564
|
+
result += *c;
|
3565
|
+
}
|
3566
|
+
break;
|
3567
|
+
}
|
3568
|
+
}
|
3569
|
+
result += "\"";
|
3570
|
+
return result;
|
3571
|
+
}
|
3572
|
+
|
3573
|
+
// Class Writer
|
3574
|
+
// //////////////////////////////////////////////////////////////////
|
3575
|
+
Writer::~Writer()
|
3576
|
+
{
|
3577
|
+
}
|
3578
|
+
|
3579
|
+
|
3580
|
+
// Class FastWriter
|
3581
|
+
// //////////////////////////////////////////////////////////////////
|
3582
|
+
|
3583
|
+
FastWriter::FastWriter()
|
3584
|
+
: yamlCompatiblityEnabled_( false )
|
3585
|
+
{
|
3586
|
+
}
|
3587
|
+
|
3588
|
+
|
3589
|
+
void
|
3590
|
+
FastWriter::enableYAMLCompatibility()
|
3591
|
+
{
|
3592
|
+
yamlCompatiblityEnabled_ = true;
|
3593
|
+
}
|
3594
|
+
|
3595
|
+
|
3596
|
+
std::string
|
3597
|
+
FastWriter::write( const Value &root )
|
3598
|
+
{
|
3599
|
+
document_ = "";
|
3600
|
+
writeValue( root );
|
3601
|
+
document_ += "\n";
|
3602
|
+
return document_;
|
3603
|
+
}
|
3604
|
+
|
3605
|
+
|
3606
|
+
void
|
3607
|
+
FastWriter::writeValue( const Value &value )
|
3608
|
+
{
|
3609
|
+
switch ( value.type() )
|
3610
|
+
{
|
3611
|
+
case nullValue:
|
3612
|
+
document_ += "null";
|
3613
|
+
break;
|
3614
|
+
case intValue:
|
3615
|
+
document_ += valueToString( value.asLargestInt() );
|
3616
|
+
break;
|
3617
|
+
case uintValue:
|
3618
|
+
document_ += valueToString( value.asLargestUInt() );
|
3619
|
+
break;
|
3620
|
+
case realValue:
|
3621
|
+
document_ += valueToString( value.asDouble() );
|
3622
|
+
break;
|
3623
|
+
case stringValue:
|
3624
|
+
document_ += valueToQuotedString( value.asCString() );
|
3625
|
+
break;
|
3626
|
+
case booleanValue:
|
3627
|
+
document_ += valueToString( value.asBool() );
|
3628
|
+
break;
|
3629
|
+
case arrayValue:
|
3630
|
+
{
|
3631
|
+
document_ += "[";
|
3632
|
+
int size = value.size();
|
3633
|
+
for ( int index =0; index < size; ++index )
|
3634
|
+
{
|
3635
|
+
if ( index > 0 )
|
3636
|
+
document_ += ",";
|
3637
|
+
writeValue( value[index] );
|
3638
|
+
}
|
3639
|
+
document_ += "]";
|
3640
|
+
}
|
3641
|
+
break;
|
3642
|
+
case objectValue:
|
3643
|
+
{
|
3644
|
+
Value::Members members( value.getMemberNames() );
|
3645
|
+
document_ += "{";
|
3646
|
+
for ( Value::Members::iterator it = members.begin();
|
3647
|
+
it != members.end();
|
3648
|
+
++it )
|
3649
|
+
{
|
3650
|
+
const std::string &name = *it;
|
3651
|
+
if ( it != members.begin() )
|
3652
|
+
document_ += ",";
|
3653
|
+
document_ += valueToQuotedString( name.c_str() );
|
3654
|
+
document_ += yamlCompatiblityEnabled_ ? ": "
|
3655
|
+
: ":";
|
3656
|
+
writeValue( value[name] );
|
3657
|
+
}
|
3658
|
+
document_ += "}";
|
3659
|
+
}
|
3660
|
+
break;
|
3661
|
+
}
|
3662
|
+
}
|
3663
|
+
|
3664
|
+
|
3665
|
+
// Class StyledWriter
|
3666
|
+
// //////////////////////////////////////////////////////////////////
|
3667
|
+
|
3668
|
+
StyledWriter::StyledWriter()
|
3669
|
+
: rightMargin_( 74 )
|
3670
|
+
, indentSize_( 3 )
|
3671
|
+
{
|
3672
|
+
}
|
3673
|
+
|
3674
|
+
|
3675
|
+
std::string
|
3676
|
+
StyledWriter::write( const Value &root )
|
3677
|
+
{
|
3678
|
+
document_ = "";
|
3679
|
+
addChildValues_ = false;
|
3680
|
+
indentString_ = "";
|
3681
|
+
writeCommentBeforeValue( root );
|
3682
|
+
writeValue( root );
|
3683
|
+
writeCommentAfterValueOnSameLine( root );
|
3684
|
+
document_ += "\n";
|
3685
|
+
return document_;
|
3686
|
+
}
|
3687
|
+
|
3688
|
+
|
3689
|
+
void
|
3690
|
+
StyledWriter::writeValue( const Value &value )
|
3691
|
+
{
|
3692
|
+
switch ( value.type() )
|
3693
|
+
{
|
3694
|
+
case nullValue:
|
3695
|
+
pushValue( "null" );
|
3696
|
+
break;
|
3697
|
+
case intValue:
|
3698
|
+
pushValue( valueToString( value.asLargestInt() ) );
|
3699
|
+
break;
|
3700
|
+
case uintValue:
|
3701
|
+
pushValue( valueToString( value.asLargestUInt() ) );
|
3702
|
+
break;
|
3703
|
+
case realValue:
|
3704
|
+
pushValue( valueToString( value.asDouble() ) );
|
3705
|
+
break;
|
3706
|
+
case stringValue:
|
3707
|
+
pushValue( valueToQuotedString( value.asCString() ) );
|
3708
|
+
break;
|
3709
|
+
case booleanValue:
|
3710
|
+
pushValue( valueToString( value.asBool() ) );
|
3711
|
+
break;
|
3712
|
+
case arrayValue:
|
3713
|
+
writeArrayValue( value);
|
3714
|
+
break;
|
3715
|
+
case objectValue:
|
3716
|
+
{
|
3717
|
+
Value::Members members( value.getMemberNames() );
|
3718
|
+
if ( members.empty() )
|
3719
|
+
pushValue( "{}" );
|
3720
|
+
else
|
3721
|
+
{
|
3722
|
+
writeWithIndent( "{" );
|
3723
|
+
indent();
|
3724
|
+
Value::Members::iterator it = members.begin();
|
3725
|
+
for (;;)
|
3726
|
+
{
|
3727
|
+
const std::string &name = *it;
|
3728
|
+
const Value &childValue = value[name];
|
3729
|
+
writeCommentBeforeValue( childValue );
|
3730
|
+
writeWithIndent( valueToQuotedString( name.c_str() ) );
|
3731
|
+
document_ += " : ";
|
3732
|
+
writeValue( childValue );
|
3733
|
+
if ( ++it == members.end() )
|
3734
|
+
{
|
3735
|
+
writeCommentAfterValueOnSameLine( childValue );
|
3736
|
+
break;
|
3737
|
+
}
|
3738
|
+
document_ += ",";
|
3739
|
+
writeCommentAfterValueOnSameLine( childValue );
|
3740
|
+
}
|
3741
|
+
unindent();
|
3742
|
+
writeWithIndent( "}" );
|
3743
|
+
}
|
3744
|
+
}
|
3745
|
+
break;
|
3746
|
+
}
|
3747
|
+
}
|
3748
|
+
|
3749
|
+
|
3750
|
+
void
|
3751
|
+
StyledWriter::writeArrayValue( const Value &value )
|
3752
|
+
{
|
3753
|
+
unsigned size = value.size();
|
3754
|
+
if ( size == 0 )
|
3755
|
+
pushValue( "[]" );
|
3756
|
+
else
|
3757
|
+
{
|
3758
|
+
bool isArrayMultiLine = isMultineArray( value );
|
3759
|
+
if ( isArrayMultiLine )
|
3760
|
+
{
|
3761
|
+
writeWithIndent( "[" );
|
3762
|
+
indent();
|
3763
|
+
bool hasChildValue = !childValues_.empty();
|
3764
|
+
unsigned index =0;
|
3765
|
+
for (;;)
|
3766
|
+
{
|
3767
|
+
const Value &childValue = value[index];
|
3768
|
+
writeCommentBeforeValue( childValue );
|
3769
|
+
if ( hasChildValue )
|
3770
|
+
writeWithIndent( childValues_[index] );
|
3771
|
+
else
|
3772
|
+
{
|
3773
|
+
writeIndent();
|
3774
|
+
writeValue( childValue );
|
3775
|
+
}
|
3776
|
+
if ( ++index == size )
|
3777
|
+
{
|
3778
|
+
writeCommentAfterValueOnSameLine( childValue );
|
3779
|
+
break;
|
3780
|
+
}
|
3781
|
+
document_ += ",";
|
3782
|
+
writeCommentAfterValueOnSameLine( childValue );
|
3783
|
+
}
|
3784
|
+
unindent();
|
3785
|
+
writeWithIndent( "]" );
|
3786
|
+
}
|
3787
|
+
else // output on a single line
|
3788
|
+
{
|
3789
|
+
assert( childValues_.size() == size );
|
3790
|
+
document_ += "[ ";
|
3791
|
+
for ( unsigned index =0; index < size; ++index )
|
3792
|
+
{
|
3793
|
+
if ( index > 0 )
|
3794
|
+
document_ += ", ";
|
3795
|
+
document_ += childValues_[index];
|
3796
|
+
}
|
3797
|
+
document_ += " ]";
|
3798
|
+
}
|
3799
|
+
}
|
3800
|
+
}
|
3801
|
+
|
3802
|
+
|
3803
|
+
bool
|
3804
|
+
StyledWriter::isMultineArray( const Value &value )
|
3805
|
+
{
|
3806
|
+
int size = value.size();
|
3807
|
+
bool isMultiLine = size*3 >= rightMargin_ ;
|
3808
|
+
childValues_.clear();
|
3809
|
+
for ( int index =0; index < size && !isMultiLine; ++index )
|
3810
|
+
{
|
3811
|
+
const Value &childValue = value[index];
|
3812
|
+
isMultiLine = isMultiLine ||
|
3813
|
+
( (childValue.isArray() || childValue.isObject()) &&
|
3814
|
+
childValue.size() > 0 );
|
3815
|
+
}
|
3816
|
+
if ( !isMultiLine ) // check if line length > max line length
|
3817
|
+
{
|
3818
|
+
childValues_.reserve( size );
|
3819
|
+
addChildValues_ = true;
|
3820
|
+
int lineLength = 4 + (size-1)*2; // '[ ' + ', '*n + ' ]'
|
3821
|
+
for ( int index =0; index < size && !isMultiLine; ++index )
|
3822
|
+
{
|
3823
|
+
writeValue( value[index] );
|
3824
|
+
lineLength += int( childValues_[index].length() );
|
3825
|
+
isMultiLine = isMultiLine && hasCommentForValue( value[index] );
|
3826
|
+
}
|
3827
|
+
addChildValues_ = false;
|
3828
|
+
isMultiLine = isMultiLine || lineLength >= rightMargin_;
|
3829
|
+
}
|
3830
|
+
return isMultiLine;
|
3831
|
+
}
|
3832
|
+
|
3833
|
+
|
3834
|
+
void
|
3835
|
+
StyledWriter::pushValue( const std::string &value )
|
3836
|
+
{
|
3837
|
+
if ( addChildValues_ )
|
3838
|
+
childValues_.push_back( value );
|
3839
|
+
else
|
3840
|
+
document_ += value;
|
3841
|
+
}
|
3842
|
+
|
3843
|
+
|
3844
|
+
void
|
3845
|
+
StyledWriter::writeIndent()
|
3846
|
+
{
|
3847
|
+
if ( !document_.empty() )
|
3848
|
+
{
|
3849
|
+
char last = document_[document_.length()-1];
|
3850
|
+
if ( last == ' ' ) // already indented
|
3851
|
+
return;
|
3852
|
+
if ( last != '\n' ) // Comments may add new-line
|
3853
|
+
document_ += '\n';
|
3854
|
+
}
|
3855
|
+
document_ += indentString_;
|
3856
|
+
}
|
3857
|
+
|
3858
|
+
|
3859
|
+
void
|
3860
|
+
StyledWriter::writeWithIndent( const std::string &value )
|
3861
|
+
{
|
3862
|
+
writeIndent();
|
3863
|
+
document_ += value;
|
3864
|
+
}
|
3865
|
+
|
3866
|
+
|
3867
|
+
void
|
3868
|
+
StyledWriter::indent()
|
3869
|
+
{
|
3870
|
+
indentString_ += std::string( indentSize_, ' ' );
|
3871
|
+
}
|
3872
|
+
|
3873
|
+
|
3874
|
+
void
|
3875
|
+
StyledWriter::unindent()
|
3876
|
+
{
|
3877
|
+
assert( int(indentString_.size()) >= indentSize_ );
|
3878
|
+
indentString_.resize( indentString_.size() - indentSize_ );
|
3879
|
+
}
|
3880
|
+
|
3881
|
+
|
3882
|
+
void
|
3883
|
+
StyledWriter::writeCommentBeforeValue( const Value &root )
|
3884
|
+
{
|
3885
|
+
if ( !root.hasComment( commentBefore ) )
|
3886
|
+
return;
|
3887
|
+
document_ += normalizeEOL( root.getComment( commentBefore ) );
|
3888
|
+
document_ += "\n";
|
3889
|
+
}
|
3890
|
+
|
3891
|
+
|
3892
|
+
void
|
3893
|
+
StyledWriter::writeCommentAfterValueOnSameLine( const Value &root )
|
3894
|
+
{
|
3895
|
+
if ( root.hasComment( commentAfterOnSameLine ) )
|
3896
|
+
document_ += " " + normalizeEOL( root.getComment( commentAfterOnSameLine ) );
|
3897
|
+
|
3898
|
+
if ( root.hasComment( commentAfter ) )
|
3899
|
+
{
|
3900
|
+
document_ += "\n";
|
3901
|
+
document_ += normalizeEOL( root.getComment( commentAfter ) );
|
3902
|
+
document_ += "\n";
|
3903
|
+
}
|
3904
|
+
}
|
3905
|
+
|
3906
|
+
|
3907
|
+
bool
|
3908
|
+
StyledWriter::hasCommentForValue( const Value &value )
|
3909
|
+
{
|
3910
|
+
return value.hasComment( commentBefore )
|
3911
|
+
|| value.hasComment( commentAfterOnSameLine )
|
3912
|
+
|| value.hasComment( commentAfter );
|
3913
|
+
}
|
3914
|
+
|
3915
|
+
|
3916
|
+
std::string
|
3917
|
+
StyledWriter::normalizeEOL( const std::string &text )
|
3918
|
+
{
|
3919
|
+
std::string normalized;
|
3920
|
+
normalized.reserve( text.length() );
|
3921
|
+
const char *begin = text.c_str();
|
3922
|
+
const char *end = begin + text.length();
|
3923
|
+
const char *current = begin;
|
3924
|
+
while ( current != end )
|
3925
|
+
{
|
3926
|
+
char c = *current++;
|
3927
|
+
if ( c == '\r' ) // mac or dos EOL
|
3928
|
+
{
|
3929
|
+
if ( *current == '\n' ) // convert dos EOL
|
3930
|
+
++current;
|
3931
|
+
normalized += '\n';
|
3932
|
+
}
|
3933
|
+
else // handle unix EOL & other char
|
3934
|
+
normalized += c;
|
3935
|
+
}
|
3936
|
+
return normalized;
|
3937
|
+
}
|
3938
|
+
|
3939
|
+
|
3940
|
+
// Class StyledStreamWriter
|
3941
|
+
// //////////////////////////////////////////////////////////////////
|
3942
|
+
|
3943
|
+
StyledStreamWriter::StyledStreamWriter( std::string indentation )
|
3944
|
+
: document_(NULL)
|
3945
|
+
, rightMargin_( 74 )
|
3946
|
+
, indentation_( indentation )
|
3947
|
+
{
|
3948
|
+
}
|
3949
|
+
|
3950
|
+
|
3951
|
+
void
|
3952
|
+
StyledStreamWriter::write( std::ostream &out, const Value &root )
|
3953
|
+
{
|
3954
|
+
document_ = &out;
|
3955
|
+
addChildValues_ = false;
|
3956
|
+
indentString_ = "";
|
3957
|
+
writeCommentBeforeValue( root );
|
3958
|
+
writeValue( root );
|
3959
|
+
writeCommentAfterValueOnSameLine( root );
|
3960
|
+
*document_ << "\n";
|
3961
|
+
document_ = NULL; // Forget the stream, for safety.
|
3962
|
+
}
|
3963
|
+
|
3964
|
+
|
3965
|
+
void
|
3966
|
+
StyledStreamWriter::writeValue( const Value &value )
|
3967
|
+
{
|
3968
|
+
switch ( value.type() )
|
3969
|
+
{
|
3970
|
+
case nullValue:
|
3971
|
+
pushValue( "null" );
|
3972
|
+
break;
|
3973
|
+
case intValue:
|
3974
|
+
pushValue( valueToString( value.asLargestInt() ) );
|
3975
|
+
break;
|
3976
|
+
case uintValue:
|
3977
|
+
pushValue( valueToString( value.asLargestUInt() ) );
|
3978
|
+
break;
|
3979
|
+
case realValue:
|
3980
|
+
pushValue( valueToString( value.asDouble() ) );
|
3981
|
+
break;
|
3982
|
+
case stringValue:
|
3983
|
+
pushValue( valueToQuotedString( value.asCString() ) );
|
3984
|
+
break;
|
3985
|
+
case booleanValue:
|
3986
|
+
pushValue( valueToString( value.asBool() ) );
|
3987
|
+
break;
|
3988
|
+
case arrayValue:
|
3989
|
+
writeArrayValue( value);
|
3990
|
+
break;
|
3991
|
+
case objectValue:
|
3992
|
+
{
|
3993
|
+
Value::Members members( value.getMemberNames() );
|
3994
|
+
if ( members.empty() )
|
3995
|
+
pushValue( "{}" );
|
3996
|
+
else
|
3997
|
+
{
|
3998
|
+
writeWithIndent( "{" );
|
3999
|
+
indent();
|
4000
|
+
Value::Members::iterator it = members.begin();
|
4001
|
+
for (;;)
|
4002
|
+
{
|
4003
|
+
const std::string &name = *it;
|
4004
|
+
const Value &childValue = value[name];
|
4005
|
+
writeCommentBeforeValue( childValue );
|
4006
|
+
writeWithIndent( valueToQuotedString( name.c_str() ) );
|
4007
|
+
*document_ << " : ";
|
4008
|
+
writeValue( childValue );
|
4009
|
+
if ( ++it == members.end() )
|
4010
|
+
{
|
4011
|
+
writeCommentAfterValueOnSameLine( childValue );
|
4012
|
+
break;
|
4013
|
+
}
|
4014
|
+
*document_ << ",";
|
4015
|
+
writeCommentAfterValueOnSameLine( childValue );
|
4016
|
+
}
|
4017
|
+
unindent();
|
4018
|
+
writeWithIndent( "}" );
|
4019
|
+
}
|
4020
|
+
}
|
4021
|
+
break;
|
4022
|
+
}
|
4023
|
+
}
|
4024
|
+
|
4025
|
+
|
4026
|
+
void
|
4027
|
+
StyledStreamWriter::writeArrayValue( const Value &value )
|
4028
|
+
{
|
4029
|
+
unsigned size = value.size();
|
4030
|
+
if ( size == 0 )
|
4031
|
+
pushValue( "[]" );
|
4032
|
+
else
|
4033
|
+
{
|
4034
|
+
bool isArrayMultiLine = isMultineArray( value );
|
4035
|
+
if ( isArrayMultiLine )
|
4036
|
+
{
|
4037
|
+
writeWithIndent( "[" );
|
4038
|
+
indent();
|
4039
|
+
bool hasChildValue = !childValues_.empty();
|
4040
|
+
unsigned index =0;
|
4041
|
+
for (;;)
|
4042
|
+
{
|
4043
|
+
const Value &childValue = value[index];
|
4044
|
+
writeCommentBeforeValue( childValue );
|
4045
|
+
if ( hasChildValue )
|
4046
|
+
writeWithIndent( childValues_[index] );
|
4047
|
+
else
|
4048
|
+
{
|
4049
|
+
writeIndent();
|
4050
|
+
writeValue( childValue );
|
4051
|
+
}
|
4052
|
+
if ( ++index == size )
|
4053
|
+
{
|
4054
|
+
writeCommentAfterValueOnSameLine( childValue );
|
4055
|
+
break;
|
4056
|
+
}
|
4057
|
+
*document_ << ",";
|
4058
|
+
writeCommentAfterValueOnSameLine( childValue );
|
4059
|
+
}
|
4060
|
+
unindent();
|
4061
|
+
writeWithIndent( "]" );
|
4062
|
+
}
|
4063
|
+
else // output on a single line
|
4064
|
+
{
|
4065
|
+
assert( childValues_.size() == size );
|
4066
|
+
*document_ << "[ ";
|
4067
|
+
for ( unsigned index =0; index < size; ++index )
|
4068
|
+
{
|
4069
|
+
if ( index > 0 )
|
4070
|
+
*document_ << ", ";
|
4071
|
+
*document_ << childValues_[index];
|
4072
|
+
}
|
4073
|
+
*document_ << " ]";
|
4074
|
+
}
|
4075
|
+
}
|
4076
|
+
}
|
4077
|
+
|
4078
|
+
|
4079
|
+
bool
|
4080
|
+
StyledStreamWriter::isMultineArray( const Value &value )
|
4081
|
+
{
|
4082
|
+
int size = value.size();
|
4083
|
+
bool isMultiLine = size*3 >= rightMargin_ ;
|
4084
|
+
childValues_.clear();
|
4085
|
+
for ( int index =0; index < size && !isMultiLine; ++index )
|
4086
|
+
{
|
4087
|
+
const Value &childValue = value[index];
|
4088
|
+
isMultiLine = isMultiLine ||
|
4089
|
+
( (childValue.isArray() || childValue.isObject()) &&
|
4090
|
+
childValue.size() > 0 );
|
4091
|
+
}
|
4092
|
+
if ( !isMultiLine ) // check if line length > max line length
|
4093
|
+
{
|
4094
|
+
childValues_.reserve( size );
|
4095
|
+
addChildValues_ = true;
|
4096
|
+
int lineLength = 4 + (size-1)*2; // '[ ' + ', '*n + ' ]'
|
4097
|
+
for ( int index =0; index < size && !isMultiLine; ++index )
|
4098
|
+
{
|
4099
|
+
writeValue( value[index] );
|
4100
|
+
lineLength += int( childValues_[index].length() );
|
4101
|
+
isMultiLine = isMultiLine && hasCommentForValue( value[index] );
|
4102
|
+
}
|
4103
|
+
addChildValues_ = false;
|
4104
|
+
isMultiLine = isMultiLine || lineLength >= rightMargin_;
|
4105
|
+
}
|
4106
|
+
return isMultiLine;
|
4107
|
+
}
|
4108
|
+
|
4109
|
+
|
4110
|
+
void
|
4111
|
+
StyledStreamWriter::pushValue( const std::string &value )
|
4112
|
+
{
|
4113
|
+
if ( addChildValues_ )
|
4114
|
+
childValues_.push_back( value );
|
4115
|
+
else
|
4116
|
+
*document_ << value;
|
4117
|
+
}
|
4118
|
+
|
4119
|
+
|
4120
|
+
void
|
4121
|
+
StyledStreamWriter::writeIndent()
|
4122
|
+
{
|
4123
|
+
/*
|
4124
|
+
Some comments in this method would have been nice. ;-)
|
4125
|
+
|
4126
|
+
if ( !document_.empty() )
|
4127
|
+
{
|
4128
|
+
char last = document_[document_.length()-1];
|
4129
|
+
if ( last == ' ' ) // already indented
|
4130
|
+
return;
|
4131
|
+
if ( last != '\n' ) // Comments may add new-line
|
4132
|
+
*document_ << '\n';
|
4133
|
+
}
|
4134
|
+
*/
|
4135
|
+
*document_ << '\n' << indentString_;
|
4136
|
+
}
|
4137
|
+
|
4138
|
+
|
4139
|
+
void
|
4140
|
+
StyledStreamWriter::writeWithIndent( const std::string &value )
|
4141
|
+
{
|
4142
|
+
writeIndent();
|
4143
|
+
*document_ << value;
|
4144
|
+
}
|
4145
|
+
|
4146
|
+
|
4147
|
+
void
|
4148
|
+
StyledStreamWriter::indent()
|
4149
|
+
{
|
4150
|
+
indentString_ += indentation_;
|
4151
|
+
}
|
4152
|
+
|
4153
|
+
|
4154
|
+
void
|
4155
|
+
StyledStreamWriter::unindent()
|
4156
|
+
{
|
4157
|
+
assert( indentString_.size() >= indentation_.size() );
|
4158
|
+
indentString_.resize( indentString_.size() - indentation_.size() );
|
4159
|
+
}
|
4160
|
+
|
4161
|
+
|
4162
|
+
void
|
4163
|
+
StyledStreamWriter::writeCommentBeforeValue( const Value &root )
|
4164
|
+
{
|
4165
|
+
if ( !root.hasComment( commentBefore ) )
|
4166
|
+
return;
|
4167
|
+
*document_ << normalizeEOL( root.getComment( commentBefore ) );
|
4168
|
+
*document_ << "\n";
|
4169
|
+
}
|
4170
|
+
|
4171
|
+
|
4172
|
+
void
|
4173
|
+
StyledStreamWriter::writeCommentAfterValueOnSameLine( const Value &root )
|
4174
|
+
{
|
4175
|
+
if ( root.hasComment( commentAfterOnSameLine ) )
|
4176
|
+
*document_ << " " + normalizeEOL( root.getComment( commentAfterOnSameLine ) );
|
4177
|
+
|
4178
|
+
if ( root.hasComment( commentAfter ) )
|
4179
|
+
{
|
4180
|
+
*document_ << "\n";
|
4181
|
+
*document_ << normalizeEOL( root.getComment( commentAfter ) );
|
4182
|
+
*document_ << "\n";
|
4183
|
+
}
|
4184
|
+
}
|
4185
|
+
|
4186
|
+
|
4187
|
+
bool
|
4188
|
+
StyledStreamWriter::hasCommentForValue( const Value &value )
|
4189
|
+
{
|
4190
|
+
return value.hasComment( commentBefore )
|
4191
|
+
|| value.hasComment( commentAfterOnSameLine )
|
4192
|
+
|| value.hasComment( commentAfter );
|
4193
|
+
}
|
4194
|
+
|
4195
|
+
|
4196
|
+
std::string
|
4197
|
+
StyledStreamWriter::normalizeEOL( const std::string &text )
|
4198
|
+
{
|
4199
|
+
std::string normalized;
|
4200
|
+
normalized.reserve( text.length() );
|
4201
|
+
const char *begin = text.c_str();
|
4202
|
+
const char *end = begin + text.length();
|
4203
|
+
const char *current = begin;
|
4204
|
+
while ( current != end )
|
4205
|
+
{
|
4206
|
+
char c = *current++;
|
4207
|
+
if ( c == '\r' ) // mac or dos EOL
|
4208
|
+
{
|
4209
|
+
if ( *current == '\n' ) // convert dos EOL
|
4210
|
+
++current;
|
4211
|
+
normalized += '\n';
|
4212
|
+
}
|
4213
|
+
else // handle unix EOL & other char
|
4214
|
+
normalized += c;
|
4215
|
+
}
|
4216
|
+
return normalized;
|
4217
|
+
}
|
4218
|
+
|
4219
|
+
|
4220
|
+
std::ostream& operator<<( std::ostream &sout, const Value &root )
|
4221
|
+
{
|
4222
|
+
Json::StyledStreamWriter writer;
|
4223
|
+
writer.write(sout, root);
|
4224
|
+
return sout;
|
4225
|
+
}
|
4226
|
+
|
4227
|
+
|
4228
|
+
} // namespace Json
|
4229
|
+
|
4230
|
+
// //////////////////////////////////////////////////////////////////////
|
4231
|
+
// End of content of file: src/lib_json/json_writer.cpp
|
4232
|
+
// //////////////////////////////////////////////////////////////////////
|
4233
|
+
|
4234
|
+
|
4235
|
+
|
4236
|
+
|
4237
|
+
|