passenger 5.1.4 → 5.1.5
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of passenger might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/.editorconfig +9 -0
- data/CHANGELOG +9 -0
- data/build/cxx_tests.rb +11 -1
- data/build/documentation.rb +0 -32
- data/build/support/cxx_dependency_map.rb +602 -2
- data/build/test_basics.rb +3 -3
- data/dev/boost-patches/0001-Patch-boost-thread-so-that-oxt-thread-can-use-it.patch +48 -0
- data/dev/boost-patches/0002-Make-boost-thread_interrupted-derive-from-oxt-tracab.patch +33 -0
- data/dev/boost-patches/0003-Disable-a-Clang-pragma-to-prevent-warnings-on-OS-X.patch +25 -0
- data/dev/ci/README.md +121 -0
- data/dev/ci/lib/functions.sh +129 -0
- data/dev/ci/lib/set-container-envvars.sh +46 -0
- data/dev/ci/lib/setup-container.sh +43 -0
- data/dev/ci/run-tests-natively +24 -0
- data/dev/ci/run-tests-with-docker +42 -0
- data/dev/ci/scripts/debug-console-wrapper.sh +27 -0
- data/dev/ci/scripts/docker-entrypoint-stage2.sh +17 -0
- data/dev/ci/scripts/docker-entrypoint.sh +17 -0
- data/dev/ci/scripts/inituidgid +17 -0
- data/dev/ci/scripts/run-tests-natively-stage2.sh +17 -0
- data/dev/ci/scripts/setup-host-natively.sh +11 -0
- data/dev/ci/setup-host +50 -0
- data/dev/ci/tests/apache2/run +6 -0
- data/dev/ci/tests/apache2/setup +4 -0
- data/dev/ci/tests/cxx/run +9 -0
- data/dev/ci/tests/cxx/setup +4 -0
- data/dev/ci/tests/nginx-dynamic/run +20 -0
- data/dev/ci/tests/nginx-dynamic/setup +4 -0
- data/dev/ci/tests/nginx/run +5 -0
- data/dev/ci/tests/nginx/setup +4 -0
- data/dev/ci/tests/nodejs/run +4 -0
- data/dev/ci/tests/nodejs/setup +4 -0
- data/dev/ci/tests/ruby/run +4 -0
- data/dev/ci/tests/ruby/setup +4 -0
- data/dev/ci/tests/source-packaging/run +4 -0
- data/dev/ci/tests/source-packaging/setup +4 -0
- data/dev/ci/tests/standalone/run +4 -0
- data/dev/ci/tests/standalone/setup +4 -0
- data/dev/copy_boost_headers +8 -2
- data/src/agent/Core/ApiServer.h +11 -5
- data/src/agent/Core/Controller.h +12 -46
- data/src/agent/Core/Controller/CheckoutSession.cpp +1 -1
- data/src/agent/Core/Controller/Config.h +369 -0
- data/src/agent/Core/Controller/ForwardResponse.cpp +4 -4
- data/src/agent/Core/Controller/Hooks.cpp +15 -3
- data/src/agent/Core/Controller/Implementation.cpp +1 -1
- data/src/agent/Core/Controller/InitRequest.cpp +28 -39
- data/src/agent/Core/Controller/InitializationAndShutdown.cpp +25 -60
- data/src/agent/Core/Controller/InternalUtils.cpp +0 -16
- data/src/agent/Core/Controller/Miscellaneous.cpp +0 -17
- data/src/agent/Core/Controller/Request.h +2 -0
- data/src/agent/Core/Controller/SendRequest.cpp +4 -4
- data/src/agent/Core/Controller/{StateInspectionAndConfiguration.cpp → StateInspection.cpp} +0 -22
- data/src/agent/Core/Controller/TurboCaching.h +11 -10
- data/src/agent/Core/CoreMain.cpp +16 -6
- data/src/agent/Core/ResponseCache.h +3 -3
- data/src/agent/Core/SpawningKit/SmartSpawner.h +9 -3
- data/src/agent/Core/SpawningKit/Spawner.h +7 -3
- data/src/agent/UstRouter/ApiServer.h +3 -2
- data/src/agent/UstRouter/Controller.h +66 -32
- data/src/agent/UstRouter/UstRouterMain.cpp +10 -2
- data/src/agent/Watchdog/ApiServer.h +3 -2
- data/src/agent/Watchdog/WatchdogMain.cpp +3 -1
- data/src/apache2_module/ConfigurationCommands.cpp +1 -1
- data/src/cxx_supportlib/ConfigKit/Common.h +125 -0
- data/src/cxx_supportlib/ConfigKit/ConfigKit.h +34 -0
- data/src/cxx_supportlib/ConfigKit/README.md +895 -0
- data/src/cxx_supportlib/ConfigKit/Schema.h +331 -0
- data/src/cxx_supportlib/ConfigKit/Store.h +385 -0
- data/src/cxx_supportlib/ConfigKit/TableTranslator.h +185 -0
- data/src/cxx_supportlib/ConfigKit/Utils.h +141 -0
- data/src/cxx_supportlib/ConfigKit/VariantMapUtils.h +81 -0
- data/src/cxx_supportlib/Constants.h +1 -1
- data/src/cxx_supportlib/Crypto.cpp +2 -2
- data/src/cxx_supportlib/Logging.h +0 -35
- data/src/cxx_supportlib/ServerKit/HttpServer.h +35 -16
- data/src/cxx_supportlib/ServerKit/Server.h +65 -25
- data/src/cxx_supportlib/oxt/macros.hpp +3 -0
- data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/replace.hpp +0 -2
- data/src/cxx_supportlib/vendor-modified/boost/array.hpp +53 -42
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/atomic_template.hpp +11 -5
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/bitwise_cast.hpp +13 -2
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_gcc_x86.hpp +23 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_msvc_x86.hpp +5 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/config.hpp +3 -2
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/interlocked.hpp +8 -1
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_emulated.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_alpha.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_arm.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_atomic.hpp +5 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_ppc.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_sparc.hpp +6 -4
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_sync.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_x86.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_x86_dcas.hpp +28 -17
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_linux_arm.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_msvc_arm.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_msvc_x86.hpp +9 -4
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/platform.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/bind/arg.hpp +10 -3
- data/src/cxx_supportlib/vendor-modified/boost/bind/bind.hpp +90 -18
- data/src/cxx_supportlib/vendor-modified/boost/cerrno.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/chrono/duration.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/auto_link.hpp +8 -3
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/borland.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/clang.hpp +35 -6
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/codegear.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/comeau.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/common_edg.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/compaq_cxx.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/cray.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/digitalmars.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/gcc.hpp +19 -4
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/gcc_xml.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/greenhills.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/hp_acc.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/intel.hpp +29 -7
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/kai.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/metrowerks.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/mpw.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/nvcc.hpp +16 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/pathscale.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/pgi.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/sgi_mipspro.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/sunpro_cc.hpp +10 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/vacpp.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/visualc.hpp +44 -16
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/xlcpp.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/platform/cygwin.hpp +1 -2
- data/src/cxx_supportlib/vendor-modified/boost/config/platform/linux.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/select_compiler_config.hpp +21 -21
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/dinkumware.hpp +42 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/libcomo.hpp +7 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/libcpp.hpp +40 -7
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/libstdcpp3.hpp +39 -6
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/modena.hpp +7 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/msl.hpp +7 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/roguewave.hpp +7 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/sgi.hpp +8 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/stlport.hpp +7 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/vacpp.hpp +7 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/suffix.hpp +33 -4
- data/src/cxx_supportlib/vendor-modified/boost/container/adaptive_pool.hpp +0 -2
- data/src/cxx_supportlib/vendor-modified/boost/container/allocator.hpp +0 -3
- data/src/cxx_supportlib/vendor-modified/boost/container/allocator_traits.hpp +34 -27
- data/src/cxx_supportlib/vendor-modified/boost/container/deque.hpp +62 -26
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/addressof.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/advanced_insert_int.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/compare_functors.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/config_begin.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/construct_in_place.hpp +39 -5
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/copy_move_algo.hpp +49 -32
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/dispatch_uses_allocator.hpp +175 -7
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/flat_tree.hpp +223 -98
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/is_sorted.hpp +57 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/iterators.hpp +88 -41
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/mpl.hpp +7 -8
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/mutex.hpp +4 -9
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/node_alloc_holder.hpp +45 -18
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/pair.hpp +205 -26
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/tree.hpp +290 -181
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/value_init.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/variadic_templates_tools.hpp +24 -19
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/workaround.hpp +38 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/flat_map.hpp +320 -46
- data/src/cxx_supportlib/vendor-modified/boost/container/flat_set.hpp +91 -18
- data/src/cxx_supportlib/vendor-modified/boost/container/list.hpp +23 -19
- data/src/cxx_supportlib/vendor-modified/boost/container/map.hpp +491 -120
- data/src/cxx_supportlib/vendor-modified/boost/container/new_allocator.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/container/node_allocator.hpp +0 -3
- data/src/cxx_supportlib/vendor-modified/boost/container/node_handle.hpp +399 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/deque.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/flat_map.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/flat_set.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/list.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/map.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/set.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/slist.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/small_vector.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/stable_vector.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/string.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/vector.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/set.hpp +101 -20
- data/src/cxx_supportlib/vendor-modified/boost/container/slist.hpp +19 -14
- data/src/cxx_supportlib/vendor-modified/boost/container/small_vector.hpp +117 -59
- data/src/cxx_supportlib/vendor-modified/boost/container/stable_vector.hpp +8 -6
- data/src/cxx_supportlib/vendor-modified/boost/container/static_vector.hpp +33 -28
- data/src/cxx_supportlib/vendor-modified/boost/container/string.hpp +414 -70
- data/src/cxx_supportlib/vendor-modified/boost/container/throw_exception.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/uses_allocator_fwd.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/container/vector.hpp +134 -117
- data/src/cxx_supportlib/vendor-modified/boost/core/addressof.hpp +202 -99
- data/src/cxx_supportlib/vendor-modified/boost/core/demangle.hpp +8 -10
- data/src/cxx_supportlib/vendor-modified/boost/core/lightweight_test.hpp +217 -1
- data/src/cxx_supportlib/vendor-modified/boost/core/scoped_enum.hpp +29 -27
- data/src/cxx_supportlib/vendor-modified/boost/current_function.hpp +5 -1
- data/src/cxx_supportlib/vendor-modified/boost/date_time/c_time.hpp +13 -13
- data/src/cxx_supportlib/vendor-modified/boost/date_time/constrained_value.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/date_time/date.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/date_time/date_duration.hpp +4 -3
- data/src/cxx_supportlib/vendor-modified/boost/date_time/date_duration_types.hpp +6 -5
- data/src/cxx_supportlib/vendor-modified/boost/date_time/date_facet.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/date_time/date_names_put.hpp +8 -7
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_calendar.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_date.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_day.hpp +4 -3
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_day_of_year.hpp +3 -2
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_duration.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_duration_types.hpp +4 -3
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_facet.hpp +27 -7
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_month.hpp +5 -5
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_serialize.hpp +5 -0
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_weekday.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_year.hpp +4 -5
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian_calendar.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/date_time/local_time/local_date_time.hpp +5 -4
- data/src/cxx_supportlib/vendor-modified/boost/date_time/local_time/posix_time_zone.hpp +4 -3
- data/src/cxx_supportlib/vendor-modified/boost/date_time/period.hpp +3 -2
- data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/date_duration_operators.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/posix_time_config.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/posix_time_duration.hpp +5 -4
- data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/ptime.hpp +6 -5
- data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/time_parsers.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/date_time/time_duration.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/date_time/time_facet.hpp +5 -4
- data/src/cxx_supportlib/vendor-modified/boost/date_time/time_zone_base.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/date_time/year_month_day.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/detail/iterator.hpp +13 -0
- data/src/cxx_supportlib/vendor-modified/boost/detail/lcast_precision.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/detail/workaround.hpp +5 -0
- data/src/cxx_supportlib/vendor-modified/boost/exception/detail/error_info_impl.hpp +11 -0
- data/src/cxx_supportlib/vendor-modified/boost/exception/detail/shared_ptr.hpp +17 -0
- data/src/cxx_supportlib/vendor-modified/boost/exception/exception.hpp +25 -3
- data/src/cxx_supportlib/vendor-modified/boost/exception/get_error_info.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/exception/info.hpp +114 -1
- data/src/cxx_supportlib/vendor-modified/boost/function/function_base.hpp +116 -142
- data/src/cxx_supportlib/vendor-modified/boost/function/function_template.hpp +57 -69
- data/src/cxx_supportlib/vendor-modified/boost/functional/hash/detail/hash_float.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/functional/hash/extensions.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/functional/hash/hash.hpp +27 -13
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/any_hook.hpp +4 -2
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/avl_set.hpp +99 -12
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/avl_set_hook.hpp +4 -2
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/avltree.hpp +35 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/avltree_algorithms.hpp +37 -6
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/bs_set.hpp +95 -8
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/bs_set_hook.hpp +4 -2
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/bstree.hpp +209 -72
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/bstree_algorithms.hpp +86 -20
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/circular_list_algorithms.hpp +11 -11
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/circular_slist_algorithms.hpp +6 -6
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/algo_type.hpp +4 -1
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/any_node_and_algorithms.hpp +58 -45
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/avltree_node.hpp +27 -26
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/bstree_algorithms_base.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/common_slist_algorithms.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/config_begin.hpp +8 -3
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/default_header_holder.hpp +4 -3
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/ebo_functor_holder.hpp +27 -26
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/equal_to_value.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/exception_disposer.hpp +4 -2
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/generic_hook.hpp +9 -7
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/has_member_function_callable_with.hpp +83 -57
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/hashtable_node.hpp +30 -30
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/hook_traits.hpp +9 -8
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/iiterator.hpp +8 -7
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/iterator.hpp +16 -15
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/key_nodeptr_comp.hpp +70 -44
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/list_iterator.hpp +22 -21
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/list_node.hpp +7 -6
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/parent_from_member.hpp +5 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/rbtree_node.hpp +29 -28
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/reverse_iterator.hpp +33 -12
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/size_holder.hpp +19 -12
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/slist_iterator.hpp +21 -20
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/slist_node.hpp +4 -3
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/to_raw_pointer.hpp +3 -2
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/transform_iterator.hpp +23 -22
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/tree_iterator.hpp +23 -22
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/tree_node.hpp +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/tree_value_compare.hpp +103 -29
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/workaround.hpp +15 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/hashtable.hpp +295 -211
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/linear_slist_algorithms.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/list.hpp +20 -7
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/list_hook.hpp +4 -2
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/member_value_traits.hpp +5 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/options.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/parent_from_member.hpp +3 -2
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/pointer_plus_bits.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/pointer_traits.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/priority_compare.hpp +22 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/rbtree.hpp +36 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/rbtree_algorithms.hpp +43 -13
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/set.hpp +95 -8
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/set_hook.hpp +4 -2
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/sg_set.hpp +96 -12
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/sgtree.hpp +102 -5
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/sgtree_algorithms.hpp +48 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/slist.hpp +20 -11
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/slist_hook.hpp +9 -2
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/splay_set.hpp +95 -8
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/splaytree.hpp +36 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/splaytree_algorithms.hpp +27 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/treap.hpp +167 -23
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/treap_algorithms.hpp +28 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/treap_set.hpp +100 -46
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/trivial_value_traits.hpp +5 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/unordered_set.hpp +37 -27
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/unordered_set_hook.hpp +30 -14
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/converter_lexical_streams.hpp +35 -36
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/converter_numeric.hpp +6 -28
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/try_lexical_convert.hpp +20 -5
- data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/posix_api.cpp +4 -2
- data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/regex.cpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/libs/thread/src/pthread/once.cpp +5 -0
- data/src/cxx_supportlib/vendor-modified/boost/libs/thread/src/pthread/thread.cpp +11 -7
- data/src/cxx_supportlib/vendor-modified/boost/math/policies/policy.hpp +1 -3
- data/src/cxx_supportlib/vendor-modified/boost/math/special_functions/fpclassify.hpp +5 -1
- data/src/cxx_supportlib/vendor-modified/boost/math/special_functions/math_fwd.hpp +11 -0
- data/src/cxx_supportlib/vendor-modified/boost/math/tools/config.hpp +10 -2
- data/src/cxx_supportlib/vendor-modified/boost/move/adl_move_swap.hpp +40 -7
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/adaptive_merge.hpp +67 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/adaptive_sort.hpp +63 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/adaptive_sort_merge.hpp +2437 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/basic_op.hpp +121 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/insertion_sort.hpp +127 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/merge.hpp +637 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/merge_sort.hpp +139 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/move.hpp +155 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/algorithm.hpp +1 -116
- data/src/cxx_supportlib/vendor-modified/boost/move/core.hpp +14 -13
- data/src/cxx_supportlib/vendor-modified/boost/move/default_delete.hpp +17 -1
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/config_begin.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/destruct_n.hpp +67 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/fwd_macros.hpp +227 -32
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/iterator_traits.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/meta_utils.hpp +30 -9
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/meta_utils_core.hpp +12 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/move_helpers.hpp +84 -80
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/placement_new.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/reverse_iterator.hpp +171 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/type_traits.hpp +14 -20
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/unique_ptr_meta_utils.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/workaround.hpp +14 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/iterator.hpp +32 -33
- data/src/cxx_supportlib/vendor-modified/boost/move/make_unique.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/move/unique_ptr.hpp +49 -49
- data/src/cxx_supportlib/vendor-modified/boost/move/utility.hpp +8 -7
- data/src/cxx_supportlib/vendor-modified/boost/move/utility_core.hpp +17 -16
- data/src/cxx_supportlib/vendor-modified/boost/mpl/print.hpp +3 -0
- data/src/cxx_supportlib/vendor-modified/boost/none.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/none_t.hpp +2 -3
- data/src/cxx_supportlib/vendor-modified/boost/operators.hpp +197 -255
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/old_optional_implementation.hpp +1059 -0
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_aligned_storage.hpp +75 -0
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_config.hpp +116 -0
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_factory_support.hpp +36 -0
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_reference_spec.hpp +253 -0
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_relops.hpp +196 -0
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_swap.hpp +117 -0
- data/src/cxx_supportlib/vendor-modified/boost/optional/optional.hpp +372 -554
- data/src/cxx_supportlib/vendor-modified/boost/optional/optional_fwd.hpp +12 -1
- data/src/cxx_supportlib/vendor-modified/boost/pool/detail/mutex.hpp +15 -7
- data/src/cxx_supportlib/vendor-modified/boost/pool/pool_alloc.hpp +24 -0
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/intel.h +9 -2
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/visualc.h +15 -1
- data/src/cxx_supportlib/vendor-modified/boost/predef/hardware/simd.h +16 -4
- data/src/cxx_supportlib/vendor-modified/boost/predef/hardware/simd/x86.h +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/predef/hardware/simd/x86_amd.h +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/predef/hardware/simd/x86_amd/versions.h +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/cygwin.h +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/predef/version.h +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/predef/version_number.h +20 -1
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/cat.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/config/config.hpp +6 -6
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/detail/binary_transform.hpp +5 -6
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/detail/to_list_msvc.hpp +55 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/to_list.hpp +12 -0
- data/src/cxx_supportlib/vendor-modified/boost/range/const_iterator.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/range/size_type.hpp +0 -5
- data/src/cxx_supportlib/vendor-modified/boost/regex/concepts.hpp +16 -16
- data/src/cxx_supportlib/vendor-modified/boost/regex/config.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/regex/pending/unicode_iterator.hpp +3 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/basic_regex_creator.hpp +102 -87
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/basic_regex_parser.hpp +45 -21
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/cpp_regex_traits.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/fileiter.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/instances.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/match_flags.hpp +14 -2
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/mem_block_cache.hpp +46 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/perl_matcher.hpp +5 -2
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/perl_matcher_common.hpp +5 -14
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/perl_matcher_non_recursive.hpp +116 -13
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/perl_matcher_recursive.hpp +34 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/regex_format.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/regex_traits.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/regex_traits_defaults.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/regex_workaround.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/w32_regex_traits.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/allocate_shared_array.hpp +1004 -159
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/bad_weak_ptr.hpp +9 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/atomic_count.hpp +3 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/shared_count.hpp +4 -58
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base.hpp +5 -2
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_clang.hpp +9 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_impl.hpp +0 -8
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_has_sync.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_noexcept.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/spinlock.hpp +3 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/enable_shared_from_this.hpp +5 -4
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/intrusive_ptr.hpp +28 -3
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/intrusive_ref_counter.hpp +187 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/make_shared_array.hpp +52 -144
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/make_shared_object.hpp +120 -450
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/scoped_array.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/scoped_ptr.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/shared_array.hpp +7 -6
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/shared_ptr.hpp +70 -8
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/weak_ptr.hpp +6 -5
- data/src/cxx_supportlib/vendor-modified/boost/system/error_code.hpp +9 -8
- data/src/cxx_supportlib/vendor-modified/boost/system/system_error.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/thread/barrier.hpp +5 -4
- data/src/cxx_supportlib/vendor-modified/boost/thread/completion_latch.hpp +0 -1
- data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/queue_views.hpp +0 -11
- data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/sync_timed_queue.hpp +6 -4
- data/src/cxx_supportlib/vendor-modified/boost/thread/detail/config.hpp +11 -2
- data/src/cxx_supportlib/vendor-modified/boost/thread/detail/thread.hpp +11 -4
- data/src/cxx_supportlib/vendor-modified/boost/thread/exceptions.hpp +8 -8
- data/src/cxx_supportlib/vendor-modified/boost/thread/executors/executor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/thread/executors/generic_executor_ref.hpp +5 -5
- data/src/cxx_supportlib/vendor-modified/boost/thread/executors/loop_executor.hpp +22 -18
- data/src/cxx_supportlib/vendor-modified/boost/thread/future.hpp +163 -55
- data/src/cxx_supportlib/vendor-modified/boost/thread/futures/launch.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/futures/wait_for_all.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/thread/lock_types.hpp +9 -9
- data/src/cxx_supportlib/vendor-modified/boost/thread/locks.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/condition_variable.hpp +6 -7
- data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/condition_variable_fwd.hpp +17 -2
- data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/shared_mutex.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/thread_data.hpp +5 -5
- data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/timespec.hpp +29 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/scoped_thread.hpp +23 -18
- data/src/cxx_supportlib/vendor-modified/boost/thread/synchronized_value.hpp +6 -6
- data/src/cxx_supportlib/vendor-modified/boost/thread/thread_functors.hpp +19 -4
- data/src/cxx_supportlib/vendor-modified/boost/thread/thread_guard.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/thread/user_scheduler.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_index.hpp +265 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_index/stl_type_index.hpp +272 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_index/type_index_facade.hpp +300 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/add_reference.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/aligned_storage.hpp +6 -6
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/common_type.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/common_arithmetic_type.hpp +9 -3
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/mp_defer.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/extent.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_nothrow_assign.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_nothrow_constructor.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_nothrow_destructor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_trivial_assign.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_trivial_copy.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_trivial_destructor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_trivial_move_assign.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_trivial_move_constructor.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_abstract.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_array.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_assignable.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_const.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_default_constructible.hpp +21 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_destructible.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_nothrow_move_assignable.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_nothrow_move_constructible.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_pod.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_rvalue_reference.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_virtual_base_of.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_volatile.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/make_void.hpp +52 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/rank.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/remove_all_extents.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/remove_const.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/remove_cv.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/remove_extent.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/remove_pointer.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/remove_volatile.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/type_with_alignment.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/fwd.hpp +40 -6
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/implementation.hpp +4986 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/map.hpp +107 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/set.hpp +105 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_map.hpp +1814 -1255
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_map_fwd.hpp +41 -45
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_set.hpp +1498 -1161
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_set_fwd.hpp +40 -44
- data/src/cxx_supportlib/vendor-modified/boost/utility.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/utility/base_from_member.hpp +7 -6
- data/src/cxx_supportlib/vendor-modified/boost/utility/compare_pointees.hpp +10 -2
- data/src/cxx_supportlib/vendor-modified/boost/utility/string_ref.hpp +39 -22
- data/src/cxx_supportlib/vendor-modified/boost/utility/string_view.hpp +690 -0
- data/src/cxx_supportlib/vendor-modified/boost/utility/string_view_fwd.hpp +39 -0
- data/src/cxx_supportlib/vendor-modified/boost/version.hpp +2 -2
- data/src/helper-scripts/crash-watch.rb +3 -0
- data/src/ruby_supportlib/phusion_passenger.rb +1 -1
- data/src/ruby_supportlib/phusion_passenger/apache2/config_options.rb +1 -0
- data/src/ruby_supportlib/phusion_passenger/packaging.rb +2 -12
- metadata +77 -38
- data/dev/ci/inituidgid +0 -24
- data/dev/ci/run_jenkins.sh +0 -70
- data/dev/ci/run_travis.sh +0 -314
- data/doc/Design and Architecture.html +0 -2421
- data/doc/Design and Architecture.txt +0 -511
- data/doc/Security of user switching support.html +0 -1833
- data/doc/Users guide Apache.html +0 -3101
- data/doc/Users guide Apache.idmap.txt +0 -451
- data/doc/Users guide Apache.txt +0 -534
- data/doc/Users guide Nginx.html +0 -3026
- data/doc/Users guide Nginx.idmap.txt +0 -431
- data/doc/Users guide Nginx.txt +0 -451
- data/doc/Users guide Standalone.html +0 -2092
- data/doc/Users guide Standalone.idmap.txt +0 -137
- data/doc/Users guide Standalone.txt +0 -81
- data/doc/Users guide.html +0 -1606
- data/doc/Users guide.txt +0 -8
- data/src/cxx_supportlib/vendor-modified/boost/align/align.hpp +0 -20
- data/src/cxx_supportlib/vendor-modified/boost/align/detail/address.hpp +0 -29
- data/src/cxx_supportlib/vendor-modified/boost/align/detail/align.hpp +0 -40
- data/src/cxx_supportlib/vendor-modified/boost/align/detail/align_cxx11.hpp +0 -22
- data/src/cxx_supportlib/vendor-modified/boost/align/detail/is_alignment.hpp +0 -29
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/hash_table.hpp +0 -383
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/array_allocator.hpp +0 -318
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/array_count_impl.hpp +0 -67
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/array_traits.hpp +0 -60
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/array_utility.hpp +0 -214
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_if_array.hpp +0 -34
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/allocate.hpp +0 -1128
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/buckets.hpp +0 -928
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/equivalent.hpp +0 -686
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/extract_key.hpp +0 -188
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/table.hpp +0 -873
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/unique.hpp +0 -628
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/util.hpp +0 -266
@@ -1,162 +1,265 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
// Copyright (C) 2002, 2008, 2013 Peter Dimov
|
5
|
-
//
|
6
|
-
// Distributed under the Boost Software License, Version 1.0. (See
|
7
|
-
// accompanying file LICENSE_1_0.txt or copy at
|
8
|
-
// http://www.boost.org/LICENSE_1_0.txt)
|
1
|
+
/*
|
2
|
+
Copyright (C) 2002 Brad King (brad.king@kitware.com)
|
3
|
+
Douglas Gregor (gregod@cs.rpi.edu)
|
9
4
|
|
10
|
-
|
5
|
+
Copyright (C) 2002, 2008, 2013 Peter Dimov
|
6
|
+
|
7
|
+
Copyright (C) 2017 Glen Joseph Fernandes (glenjofe@gmail.com)
|
8
|
+
|
9
|
+
Distributed under the Boost Software License, Version 1.0.
|
10
|
+
(See accompanying file LICENSE_1_0.txt or copy at
|
11
|
+
http://www.boost.org/LICENSE_1_0.txt)
|
12
|
+
*/
|
11
13
|
|
12
14
|
#ifndef BOOST_CORE_ADDRESSOF_HPP
|
13
15
|
#define BOOST_CORE_ADDRESSOF_HPP
|
14
16
|
|
15
|
-
#
|
16
|
-
# include <boost/detail/workaround.hpp>
|
17
|
-
# include <cstddef>
|
17
|
+
#include <boost/config.hpp>
|
18
18
|
|
19
|
-
|
20
|
-
|
19
|
+
#if defined(BOOST_MSVC_FULL_VER) && BOOST_MSVC_FULL_VER >= 190024215
|
20
|
+
#define BOOST_CORE_HAS_BUILTIN_ADDRESSOF
|
21
|
+
#elif defined(BOOST_GCC) && BOOST_GCC >= 70000
|
22
|
+
#define BOOST_CORE_HAS_BUILTIN_ADDRESSOF
|
23
|
+
#elif defined(__has_builtin)
|
24
|
+
#if __has_builtin(__builtin_addressof)
|
25
|
+
#define BOOST_CORE_HAS_BUILTIN_ADDRESSOF
|
26
|
+
#endif
|
27
|
+
#endif
|
21
28
|
|
22
|
-
|
23
|
-
|
29
|
+
#if defined(BOOST_CORE_HAS_BUILTIN_ADDRESSOF)
|
30
|
+
#if defined(BOOST_NO_CXX11_CONSTEXPR)
|
31
|
+
#define BOOST_CORE_NO_CONSTEXPR_ADDRESSOF
|
32
|
+
#endif
|
33
|
+
|
34
|
+
namespace boost {
|
24
35
|
|
25
|
-
template<class T>
|
36
|
+
template<class T>
|
37
|
+
BOOST_CONSTEXPR inline T*
|
38
|
+
addressof(T& o) BOOST_NOEXCEPT
|
26
39
|
{
|
27
|
-
|
40
|
+
return __builtin_addressof(o);
|
41
|
+
}
|
28
42
|
|
29
|
-
|
30
|
-
|
43
|
+
} /* boost */
|
44
|
+
#else
|
45
|
+
#include <boost/detail/workaround.hpp>
|
46
|
+
#include <cstddef>
|
31
47
|
|
48
|
+
namespace boost {
|
49
|
+
namespace detail {
|
50
|
+
|
51
|
+
template<class T>
|
52
|
+
class addressof_ref {
|
53
|
+
public:
|
54
|
+
BOOST_FORCEINLINE addressof_ref(T& o) BOOST_NOEXCEPT
|
55
|
+
: o_(o) { }
|
56
|
+
BOOST_FORCEINLINE operator T&() const BOOST_NOEXCEPT {
|
57
|
+
return o_;
|
58
|
+
}
|
32
59
|
private:
|
33
|
-
|
60
|
+
addressof_ref& operator=(const addressof_ref&);
|
61
|
+
T& o_;
|
34
62
|
};
|
35
63
|
|
36
|
-
template<class T>
|
37
|
-
{
|
38
|
-
static BOOST_FORCEINLINE T
|
39
|
-
|
40
|
-
|
41
|
-
&const_cast<char&>(reinterpret_cast<const volatile char &>(v)));
|
64
|
+
template<class T>
|
65
|
+
struct address_of {
|
66
|
+
static BOOST_FORCEINLINE T* get(T& o, long) BOOST_NOEXCEPT {
|
67
|
+
return reinterpret_cast<T*>(&
|
68
|
+
const_cast<char&>(reinterpret_cast<const volatile char&>(o)));
|
42
69
|
}
|
43
|
-
|
44
|
-
|
45
|
-
{
|
46
|
-
return v;
|
70
|
+
static BOOST_FORCEINLINE T* get(T* p, int) BOOST_NOEXCEPT {
|
71
|
+
return p;
|
47
72
|
}
|
48
73
|
};
|
49
74
|
|
50
|
-
#if !defined(
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
75
|
+
#if !defined(BOOST_NO_CXX11_NULLPTR)
|
76
|
+
#if !defined(BOOST_NO_CXX11_DECLTYPE) && \
|
77
|
+
(defined(__INTEL_COMPILER) || \
|
78
|
+
(defined(__clang__) && !defined(_LIBCPP_VERSION)))
|
79
|
+
typedef decltype(nullptr) addressof_null_t;
|
56
80
|
#else
|
57
|
-
|
58
|
-
typedef std::nullptr_t addr_nullptr_t;
|
59
|
-
|
81
|
+
typedef std::nullptr_t addressof_null_t;
|
60
82
|
#endif
|
61
83
|
|
62
|
-
template<>
|
63
|
-
{
|
64
|
-
typedef
|
65
|
-
|
66
|
-
|
67
|
-
{
|
68
|
-
return &v;
|
84
|
+
template<>
|
85
|
+
struct address_of<addressof_null_t> {
|
86
|
+
typedef addressof_null_t type;
|
87
|
+
static BOOST_FORCEINLINE type* get(type& o, int) BOOST_NOEXCEPT {
|
88
|
+
return &o;
|
69
89
|
}
|
70
90
|
};
|
71
91
|
|
72
|
-
template<>
|
73
|
-
{
|
74
|
-
typedef
|
75
|
-
|
76
|
-
|
77
|
-
{
|
78
|
-
return &v;
|
92
|
+
template<>
|
93
|
+
struct address_of<const addressof_null_t> {
|
94
|
+
typedef const addressof_null_t type;
|
95
|
+
static BOOST_FORCEINLINE type* get(type& o, int) BOOST_NOEXCEPT {
|
96
|
+
return &o;
|
79
97
|
}
|
80
98
|
};
|
81
99
|
|
82
|
-
template<>
|
83
|
-
{
|
84
|
-
typedef
|
100
|
+
template<>
|
101
|
+
struct address_of<volatile addressof_null_t> {
|
102
|
+
typedef volatile addressof_null_t type;
|
103
|
+
static BOOST_FORCEINLINE type* get(type& o, int) BOOST_NOEXCEPT {
|
104
|
+
return &o;
|
105
|
+
}
|
106
|
+
};
|
85
107
|
|
86
|
-
|
87
|
-
|
88
|
-
|
108
|
+
template<>
|
109
|
+
struct address_of<const volatile addressof_null_t> {
|
110
|
+
typedef const volatile addressof_null_t type;
|
111
|
+
static BOOST_FORCEINLINE type* get(type& o, int) BOOST_NOEXCEPT {
|
112
|
+
return &o;
|
89
113
|
}
|
90
114
|
};
|
115
|
+
#endif
|
116
|
+
|
117
|
+
} /* detail */
|
91
118
|
|
92
|
-
|
119
|
+
#if defined(BOOST_NO_CXX11_SFINAE_EXPR) || \
|
120
|
+
defined(BOOST_NO_CXX11_RVALUE_REFERENCES) || \
|
121
|
+
defined(BOOST_NO_CXX11_CONSTEXPR) || \
|
122
|
+
defined(BOOST_NO_CXX11_DECLTYPE)
|
123
|
+
#define BOOST_CORE_NO_CONSTEXPR_ADDRESSOF
|
124
|
+
|
125
|
+
template<class T>
|
126
|
+
BOOST_FORCEINLINE T*
|
127
|
+
addressof(T& o) BOOST_NOEXCEPT
|
93
128
|
{
|
94
|
-
|
129
|
+
#if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x610)) || \
|
130
|
+
BOOST_WORKAROUND(__SUNPRO_CC, <= 0x5120)
|
131
|
+
return detail::address_of<T>::get(o, 0);
|
132
|
+
#else
|
133
|
+
return detail::address_of<T>::get(detail::addressof_ref<T>(o), 0);
|
134
|
+
#endif
|
135
|
+
}
|
95
136
|
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
137
|
+
#if BOOST_WORKAROUND(__SUNPRO_CC, BOOST_TESTED_AT(0x590))
|
138
|
+
namespace detail {
|
139
|
+
|
140
|
+
template<class T>
|
141
|
+
struct addressof_result {
|
142
|
+
typedef T* type;
|
100
143
|
};
|
101
144
|
|
145
|
+
} /* detail */
|
146
|
+
|
147
|
+
template<class T, std::size_t N>
|
148
|
+
BOOST_FORCEINLINE typename detail::addressof_result<T[N]>::type
|
149
|
+
addressof(T (&o)[N]) BOOST_NOEXCEPT
|
150
|
+
{
|
151
|
+
return &o;
|
152
|
+
}
|
102
153
|
#endif
|
103
154
|
|
104
|
-
|
155
|
+
#if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
|
156
|
+
template<class T, std::size_t N>
|
157
|
+
BOOST_FORCEINLINE
|
158
|
+
T (*addressof(T (&o)[N]) BOOST_NOEXCEPT)[N]
|
159
|
+
{
|
160
|
+
return reinterpret_cast<T(*)[N]>(&o);
|
161
|
+
}
|
105
162
|
|
106
|
-
template<class T>
|
163
|
+
template<class T, std::size_t N>
|
107
164
|
BOOST_FORCEINLINE
|
108
|
-
T *
|
165
|
+
const T (*addressof(const T (&o)[N]) BOOST_NOEXCEPT)[N]
|
109
166
|
{
|
110
|
-
|
167
|
+
return reinterpret_cast<const T(*)[N]>(&o);
|
168
|
+
}
|
169
|
+
#endif
|
170
|
+
#else
|
171
|
+
namespace detail {
|
111
172
|
|
112
|
-
|
173
|
+
template<class T>
|
174
|
+
T&& addressof_declval() BOOST_NOEXCEPT;
|
113
175
|
|
114
|
-
|
176
|
+
template<class>
|
177
|
+
struct addressof_void {
|
178
|
+
typedef void type;
|
179
|
+
};
|
115
180
|
|
116
|
-
|
181
|
+
template<class T, class E = void>
|
182
|
+
struct addressof_member_operator {
|
183
|
+
static constexpr bool value = false;
|
184
|
+
};
|
185
|
+
|
186
|
+
template<class T>
|
187
|
+
struct addressof_member_operator<T, typename
|
188
|
+
addressof_void<decltype(addressof_declval<T&>().operator&())>::type> {
|
189
|
+
static constexpr bool value = true;
|
190
|
+
};
|
191
|
+
|
192
|
+
#if BOOST_WORKAROUND(BOOST_INTEL, < 1600)
|
193
|
+
struct addressof_addressable { };
|
117
194
|
|
195
|
+
addressof_addressable*
|
196
|
+
operator&(addressof_addressable&) BOOST_NOEXCEPT;
|
118
197
|
#endif
|
119
|
-
}
|
120
198
|
|
121
|
-
|
199
|
+
template<class T, class E = void>
|
200
|
+
struct addressof_non_member_operator {
|
201
|
+
static constexpr bool value = false;
|
202
|
+
};
|
122
203
|
|
123
|
-
|
124
|
-
|
204
|
+
template<class T>
|
205
|
+
struct addressof_non_member_operator<T, typename
|
206
|
+
addressof_void<decltype(operator&(addressof_declval<T&>()))>::type> {
|
207
|
+
static constexpr bool value = true;
|
208
|
+
};
|
125
209
|
|
126
|
-
template<class T
|
127
|
-
{
|
128
|
-
|
210
|
+
template<class T, class E = void>
|
211
|
+
struct addressof_expression {
|
212
|
+
static constexpr bool value = false;
|
213
|
+
};
|
214
|
+
|
215
|
+
template<class T>
|
216
|
+
struct addressof_expression<T,
|
217
|
+
typename addressof_void<decltype(&addressof_declval<T&>())>::type> {
|
218
|
+
static constexpr bool value = true;
|
219
|
+
};
|
220
|
+
|
221
|
+
template<class T>
|
222
|
+
struct addressof_is_constexpr {
|
223
|
+
static constexpr bool value = addressof_expression<T>::value &&
|
224
|
+
!addressof_member_operator<T>::value &&
|
225
|
+
!addressof_non_member_operator<T>::value;
|
129
226
|
};
|
130
227
|
|
131
|
-
|
228
|
+
template<bool E, class T>
|
229
|
+
struct addressof_if { };
|
230
|
+
|
231
|
+
template<class T>
|
232
|
+
struct addressof_if<true, T> {
|
233
|
+
typedef T* type;
|
234
|
+
};
|
132
235
|
|
133
|
-
template<
|
236
|
+
template<class T>
|
134
237
|
BOOST_FORCEINLINE
|
135
|
-
typename
|
238
|
+
typename addressof_if<!addressof_is_constexpr<T>::value, T>::type
|
239
|
+
addressof(T& o) BOOST_NOEXCEPT
|
136
240
|
{
|
137
|
-
return
|
241
|
+
return address_of<T>::get(addressof_ref<T>(o), 0);
|
138
242
|
}
|
139
243
|
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
#if defined( __BORLANDC__ ) && BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
|
145
|
-
template<typename T,std::size_t N>
|
146
|
-
BOOST_FORCEINLINE
|
147
|
-
T (*addressof(T (&t)[N]))[N]
|
244
|
+
template<class T>
|
245
|
+
constexpr BOOST_FORCEINLINE
|
246
|
+
typename addressof_if<addressof_is_constexpr<T>::value, T>::type
|
247
|
+
addressof(T& o) BOOST_NOEXCEPT
|
148
248
|
{
|
149
|
-
|
249
|
+
return &o;
|
150
250
|
}
|
151
251
|
|
152
|
-
|
153
|
-
|
154
|
-
|
252
|
+
} /* detail */
|
253
|
+
|
254
|
+
template<class T>
|
255
|
+
constexpr BOOST_FORCEINLINE T*
|
256
|
+
addressof(T& o) BOOST_NOEXCEPT
|
155
257
|
{
|
156
|
-
|
258
|
+
return detail::addressof(o);
|
157
259
|
}
|
158
260
|
#endif
|
159
261
|
|
160
|
-
}
|
262
|
+
} /* boost */
|
263
|
+
#endif
|
161
264
|
|
162
|
-
#endif
|
265
|
+
#endif
|
@@ -17,7 +17,10 @@
|
|
17
17
|
# pragma once
|
18
18
|
#endif
|
19
19
|
|
20
|
-
|
20
|
+
// __has_include is currently supported by GCC and Clang. However GCC 4.9 may have issues and
|
21
|
+
// returns 1 for 'defined( __has_include )', while '__has_include' is actually not supported:
|
22
|
+
// https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63662
|
23
|
+
#if defined( __has_include ) && (!defined( BOOST_GCC ) || (__GNUC__ + 0) >= 5)
|
21
24
|
# if __has_include(<cxxabi.h>)
|
22
25
|
# define BOOST_CORE_HAS_CXXABI_H
|
23
26
|
# endif
|
@@ -90,15 +93,10 @@ inline void demangle_free( char const * name ) BOOST_NOEXCEPT
|
|
90
93
|
inline std::string demangle( char const * name )
|
91
94
|
{
|
92
95
|
scoped_demangled_name demangled_name( name );
|
93
|
-
char const *
|
94
|
-
if( p )
|
95
|
-
|
96
|
-
|
97
|
-
}
|
98
|
-
else
|
99
|
-
{
|
100
|
-
return name;
|
101
|
-
}
|
96
|
+
char const * p = demangled_name.get();
|
97
|
+
if( !p )
|
98
|
+
p = name;
|
99
|
+
return p;
|
102
100
|
}
|
103
101
|
|
104
102
|
#else
|
@@ -19,10 +19,12 @@
|
|
19
19
|
// http://www.boost.org/LICENSE_1_0.txt
|
20
20
|
//
|
21
21
|
|
22
|
+
#include <iterator>
|
22
23
|
#include <boost/assert.hpp>
|
23
24
|
#include <boost/current_function.hpp>
|
24
25
|
#include <boost/core/no_exceptions_support.hpp>
|
25
26
|
#include <iostream>
|
27
|
+
#include <cstring>
|
26
28
|
|
27
29
|
// IDE's like Visual Studio perform better if output goes to std::cout or
|
28
30
|
// some other stream, so allow user to configure output stream:
|
@@ -85,6 +87,32 @@ inline void throw_failed_impl(char const * excep, char const * file, int line, c
|
|
85
87
|
++test_errors();
|
86
88
|
}
|
87
89
|
|
90
|
+
// In the comparisons below, it is possible that T and U are signed and unsigned integer types, which generates warnings in some compilers.
|
91
|
+
// A cleaner fix would require common_type trait or some meta-programming, which would introduce a dependency on Boost.TypeTraits. To avoid
|
92
|
+
// the dependency we just disable the warnings.
|
93
|
+
#if defined(_MSC_VER)
|
94
|
+
# pragma warning(push)
|
95
|
+
# pragma warning(disable: 4389)
|
96
|
+
#elif defined(__clang__) && defined(__has_warning)
|
97
|
+
# if __has_warning("-Wsign-compare")
|
98
|
+
# pragma clang diagnostic push
|
99
|
+
# pragma clang diagnostic ignored "-Wsign-compare"
|
100
|
+
# endif
|
101
|
+
#elif defined(__GNUC__) && !(defined(__INTEL_COMPILER) || defined(__ICL) || defined(__ICC) || defined(__ECC)) && (__GNUC__ * 100 + __GNUC_MINOR__) >= 406
|
102
|
+
# pragma GCC diagnostic push
|
103
|
+
# pragma GCC diagnostic ignored "-Wsign-compare"
|
104
|
+
#endif
|
105
|
+
|
106
|
+
// specialize test output for char pointers to avoid printing as cstring
|
107
|
+
template <class T> inline const T& test_output_impl(const T& v) { return v; }
|
108
|
+
inline const void* test_output_impl(const char* v) { return v; }
|
109
|
+
inline const void* test_output_impl(const unsigned char* v) { return v; }
|
110
|
+
inline const void* test_output_impl(const signed char* v) { return v; }
|
111
|
+
inline const void* test_output_impl(char* v) { return v; }
|
112
|
+
inline const void* test_output_impl(unsigned char* v) { return v; }
|
113
|
+
inline const void* test_output_impl(signed char* v) { return v; }
|
114
|
+
template<class T> inline const void* test_output_impl(T volatile* v) { return const_cast<T*>(v); }
|
115
|
+
|
88
116
|
template<class T, class U> inline void test_eq_impl( char const * expr1, char const * expr2,
|
89
117
|
char const * file, int line, char const * function, T const & t, U const & u )
|
90
118
|
{
|
@@ -97,7 +125,7 @@ template<class T, class U> inline void test_eq_impl( char const * expr1, char co
|
|
97
125
|
BOOST_LIGHTWEIGHT_TEST_OSTREAM
|
98
126
|
<< file << "(" << line << "): test '" << expr1 << " == " << expr2
|
99
127
|
<< "' failed in function '" << function << "': "
|
100
|
-
<< "'" << t << "' != '" << u << "'" << std::endl;
|
128
|
+
<< "'" << test_output_impl(t) << "' != '" << test_output_impl(u) << "'" << std::endl;
|
101
129
|
++test_errors();
|
102
130
|
}
|
103
131
|
}
|
@@ -114,11 +142,192 @@ template<class T, class U> inline void test_ne_impl( char const * expr1, char co
|
|
114
142
|
BOOST_LIGHTWEIGHT_TEST_OSTREAM
|
115
143
|
<< file << "(" << line << "): test '" << expr1 << " != " << expr2
|
116
144
|
<< "' failed in function '" << function << "': "
|
145
|
+
<< "'" << test_output_impl(t) << "' == '" << test_output_impl(u) << "'" << std::endl;
|
146
|
+
++test_errors();
|
147
|
+
}
|
148
|
+
}
|
149
|
+
|
150
|
+
inline void test_cstr_eq_impl( char const * expr1, char const * expr2,
|
151
|
+
char const * file, int line, char const * function, char const * const t, char const * const u )
|
152
|
+
{
|
153
|
+
if( std::strcmp(t, u) == 0 )
|
154
|
+
{
|
155
|
+
report_errors_remind();
|
156
|
+
}
|
157
|
+
else
|
158
|
+
{
|
159
|
+
BOOST_LIGHTWEIGHT_TEST_OSTREAM
|
160
|
+
<< file << "(" << line << "): test '" << expr1 << " == " << expr2
|
161
|
+
<< "' failed in function '" << function << "': "
|
162
|
+
<< "'" << t << "' != '" << u << "'" << std::endl;
|
163
|
+
++test_errors();
|
164
|
+
}
|
165
|
+
}
|
166
|
+
|
167
|
+
inline void test_cstr_ne_impl( char const * expr1, char const * expr2,
|
168
|
+
char const * file, int line, char const * function, char const * const t, char const * const u )
|
169
|
+
{
|
170
|
+
if( std::strcmp(t, u) != 0 )
|
171
|
+
{
|
172
|
+
report_errors_remind();
|
173
|
+
}
|
174
|
+
else
|
175
|
+
{
|
176
|
+
BOOST_LIGHTWEIGHT_TEST_OSTREAM
|
177
|
+
<< file << "(" << line << "): test '" << expr1 << " == " << expr2
|
178
|
+
<< "' failed in function '" << function << "': "
|
117
179
|
<< "'" << t << "' == '" << u << "'" << std::endl;
|
118
180
|
++test_errors();
|
119
181
|
}
|
120
182
|
}
|
121
183
|
|
184
|
+
template<class FormattedOutputFunction, class InputIterator1, class InputIterator2>
|
185
|
+
void test_all_eq_impl(FormattedOutputFunction& output,
|
186
|
+
char const * file, int line, char const * function,
|
187
|
+
InputIterator1 first_begin, InputIterator1 first_end,
|
188
|
+
InputIterator2 second_begin, InputIterator2 second_end)
|
189
|
+
{
|
190
|
+
InputIterator1 first_it = first_begin;
|
191
|
+
InputIterator2 second_it = second_begin;
|
192
|
+
typename std::iterator_traits<InputIterator1>::difference_type first_index = 0;
|
193
|
+
typename std::iterator_traits<InputIterator2>::difference_type second_index = 0;
|
194
|
+
std::size_t error_count = 0;
|
195
|
+
const std::size_t max_count = 8;
|
196
|
+
do
|
197
|
+
{
|
198
|
+
while ((first_it != first_end) && (second_it != second_end) && (*first_it == *second_it))
|
199
|
+
{
|
200
|
+
++first_it;
|
201
|
+
++second_it;
|
202
|
+
++first_index;
|
203
|
+
++second_index;
|
204
|
+
}
|
205
|
+
if ((first_it == first_end) || (second_it == second_end))
|
206
|
+
{
|
207
|
+
break; // do-while
|
208
|
+
}
|
209
|
+
if (error_count == 0)
|
210
|
+
{
|
211
|
+
output << file << "(" << line << "): Container contents differ in function '" << function << "':";
|
212
|
+
}
|
213
|
+
else if (error_count >= max_count)
|
214
|
+
{
|
215
|
+
output << " ...";
|
216
|
+
break;
|
217
|
+
}
|
218
|
+
output << " [" << first_index << "] '" << test_output_impl(*first_it) << "' != '" << test_output_impl(*second_it) << "'";
|
219
|
+
++first_it;
|
220
|
+
++second_it;
|
221
|
+
++first_index;
|
222
|
+
++second_index;
|
223
|
+
++error_count;
|
224
|
+
} while (first_it != first_end);
|
225
|
+
|
226
|
+
first_index += std::distance(first_it, first_end);
|
227
|
+
second_index += std::distance(second_it, second_end);
|
228
|
+
if (first_index != second_index)
|
229
|
+
{
|
230
|
+
if (error_count == 0)
|
231
|
+
{
|
232
|
+
output << file << "(" << line << "): Container sizes differ in function '" << function << "': size(" << first_index << ") != size(" << second_index << ")";
|
233
|
+
}
|
234
|
+
else
|
235
|
+
{
|
236
|
+
output << " [*] size(" << first_index << ") != size(" << second_index << ")";
|
237
|
+
}
|
238
|
+
++error_count;
|
239
|
+
}
|
240
|
+
|
241
|
+
if (error_count == 0)
|
242
|
+
{
|
243
|
+
boost::detail::report_errors_remind();
|
244
|
+
}
|
245
|
+
else
|
246
|
+
{
|
247
|
+
output << std::endl;
|
248
|
+
++boost::detail::test_errors();
|
249
|
+
}
|
250
|
+
}
|
251
|
+
|
252
|
+
template<class FormattedOutputFunction, class InputIterator1, class InputIterator2, typename BinaryPredicate>
|
253
|
+
void test_all_with_impl(FormattedOutputFunction& output,
|
254
|
+
char const * file, int line, char const * function,
|
255
|
+
InputIterator1 first_begin, InputIterator1 first_end,
|
256
|
+
InputIterator2 second_begin, InputIterator2 second_end,
|
257
|
+
BinaryPredicate predicate)
|
258
|
+
{
|
259
|
+
InputIterator1 first_it = first_begin;
|
260
|
+
InputIterator2 second_it = second_begin;
|
261
|
+
typename std::iterator_traits<InputIterator1>::difference_type first_index = 0;
|
262
|
+
typename std::iterator_traits<InputIterator2>::difference_type second_index = 0;
|
263
|
+
std::size_t error_count = 0;
|
264
|
+
const std::size_t max_count = 8;
|
265
|
+
do
|
266
|
+
{
|
267
|
+
while ((first_it != first_end) && (second_it != second_end) && predicate(*first_it, *second_it))
|
268
|
+
{
|
269
|
+
++first_it;
|
270
|
+
++second_it;
|
271
|
+
++first_index;
|
272
|
+
++second_index;
|
273
|
+
}
|
274
|
+
if ((first_it == first_end) || (second_it == second_end))
|
275
|
+
{
|
276
|
+
break; // do-while
|
277
|
+
}
|
278
|
+
if (error_count == 0)
|
279
|
+
{
|
280
|
+
output << file << "(" << line << "): Container contents differ in function '" << function << "':";
|
281
|
+
}
|
282
|
+
else if (error_count >= max_count)
|
283
|
+
{
|
284
|
+
output << " ...";
|
285
|
+
break;
|
286
|
+
}
|
287
|
+
output << " [" << first_index << "]";
|
288
|
+
++first_it;
|
289
|
+
++second_it;
|
290
|
+
++first_index;
|
291
|
+
++second_index;
|
292
|
+
++error_count;
|
293
|
+
} while (first_it != first_end);
|
294
|
+
|
295
|
+
first_index += std::distance(first_it, first_end);
|
296
|
+
second_index += std::distance(second_it, second_end);
|
297
|
+
if (first_index != second_index)
|
298
|
+
{
|
299
|
+
if (error_count == 0)
|
300
|
+
{
|
301
|
+
output << file << "(" << line << "): Container sizes differ in function '" << function << "': size(" << first_index << ") != size(" << second_index << ")";
|
302
|
+
}
|
303
|
+
else
|
304
|
+
{
|
305
|
+
output << " [*] size(" << first_index << ") != size(" << second_index << ")";
|
306
|
+
}
|
307
|
+
++error_count;
|
308
|
+
}
|
309
|
+
|
310
|
+
if (error_count == 0)
|
311
|
+
{
|
312
|
+
report_errors_remind();
|
313
|
+
}
|
314
|
+
else
|
315
|
+
{
|
316
|
+
output << std::endl;
|
317
|
+
++test_errors();
|
318
|
+
}
|
319
|
+
}
|
320
|
+
|
321
|
+
#if defined(_MSC_VER)
|
322
|
+
# pragma warning(pop)
|
323
|
+
#elif defined(__clang__) && defined(__has_warning)
|
324
|
+
# if __has_warning("-Wsign-compare")
|
325
|
+
# pragma clang diagnostic pop
|
326
|
+
# endif
|
327
|
+
#elif defined(__GNUC__) && !(defined(__INTEL_COMPILER) || defined(__ICL) || defined(__ICC) || defined(__ECC)) && (__GNUC__ * 100 + __GNUC_MINOR__) >= 406
|
328
|
+
# pragma GCC diagnostic pop
|
329
|
+
#endif
|
330
|
+
|
122
331
|
} // namespace detail
|
123
332
|
|
124
333
|
inline int report_errors()
|
@@ -144,12 +353,19 @@ inline int report_errors()
|
|
144
353
|
} // namespace boost
|
145
354
|
|
146
355
|
#define BOOST_TEST(expr) ((expr)? (void)0: ::boost::detail::test_failed_impl(#expr, __FILE__, __LINE__, BOOST_CURRENT_FUNCTION))
|
356
|
+
#define BOOST_TEST_NOT(expr) BOOST_TEST(!(expr))
|
147
357
|
|
148
358
|
#define BOOST_ERROR(msg) ( ::boost::detail::error_impl(msg, __FILE__, __LINE__, BOOST_CURRENT_FUNCTION) )
|
149
359
|
|
150
360
|
#define BOOST_TEST_EQ(expr1,expr2) ( ::boost::detail::test_eq_impl(#expr1, #expr2, __FILE__, __LINE__, BOOST_CURRENT_FUNCTION, expr1, expr2) )
|
151
361
|
#define BOOST_TEST_NE(expr1,expr2) ( ::boost::detail::test_ne_impl(#expr1, #expr2, __FILE__, __LINE__, BOOST_CURRENT_FUNCTION, expr1, expr2) )
|
152
362
|
|
363
|
+
#define BOOST_TEST_CSTR_EQ(expr1,expr2) ( ::boost::detail::test_cstr_eq_impl(#expr1, #expr2, __FILE__, __LINE__, BOOST_CURRENT_FUNCTION, expr1, expr2) )
|
364
|
+
#define BOOST_TEST_CSTR_NE(expr1,expr2) ( ::boost::detail::test_cstr_ne_impl(#expr1, #expr2, __FILE__, __LINE__, BOOST_CURRENT_FUNCTION, expr1, expr2) )
|
365
|
+
|
366
|
+
#define BOOST_TEST_ALL_EQ(begin1, end1, begin2, end2) ( ::boost::detail::test_all_eq_impl(BOOST_LIGHTWEIGHT_TEST_OSTREAM, __FILE__, __LINE__, BOOST_CURRENT_FUNCTION, begin1, end1, begin2, end2) )
|
367
|
+
#define BOOST_TEST_ALL_WITH(begin1, end1, begin2, end2, predicate) ( ::boost::detail::test_all_with_impl(BOOST_LIGHTWEIGHT_TEST_OSTREAM, __FILE__, __LINE__, BOOST_CURRENT_FUNCTION, begin1, end1, begin2, end2, predicate) )
|
368
|
+
|
153
369
|
#ifndef BOOST_NO_EXCEPTIONS
|
154
370
|
#define BOOST_TEST_THROWS( EXPR, EXCEP ) \
|
155
371
|
try { \
|