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,628 +0,0 @@
|
|
1
|
-
|
2
|
-
// Copyright (C) 2003-2004 Jeremy B. Maitin-Shepard.
|
3
|
-
// Copyright (C) 2005-2011 Daniel James
|
4
|
-
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
5
|
-
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
6
|
-
|
7
|
-
#ifndef BOOST_UNORDERED_DETAIL_UNIQUE_HPP_INCLUDED
|
8
|
-
#define BOOST_UNORDERED_DETAIL_UNIQUE_HPP_INCLUDED
|
9
|
-
|
10
|
-
#include <boost/config.hpp>
|
11
|
-
#if defined(BOOST_HAS_PRAGMA_ONCE)
|
12
|
-
#pragma once
|
13
|
-
#endif
|
14
|
-
|
15
|
-
#include <boost/unordered/detail/table.hpp>
|
16
|
-
#include <boost/unordered/detail/extract_key.hpp>
|
17
|
-
#include <boost/throw_exception.hpp>
|
18
|
-
#include <stdexcept>
|
19
|
-
|
20
|
-
namespace boost { namespace unordered { namespace detail {
|
21
|
-
|
22
|
-
template <typename A, typename T> struct unique_node;
|
23
|
-
template <typename T> struct ptr_node;
|
24
|
-
template <typename Types> struct table_impl;
|
25
|
-
|
26
|
-
template <typename A, typename T>
|
27
|
-
struct unique_node :
|
28
|
-
boost::unordered::detail::value_base<T>
|
29
|
-
{
|
30
|
-
typedef typename ::boost::unordered::detail::rebind_wrap<
|
31
|
-
A, unique_node<A, T> >::type allocator;
|
32
|
-
typedef typename ::boost::unordered::detail::
|
33
|
-
allocator_traits<allocator>::pointer node_pointer;
|
34
|
-
typedef node_pointer link_pointer;
|
35
|
-
|
36
|
-
link_pointer next_;
|
37
|
-
std::size_t hash_;
|
38
|
-
|
39
|
-
unique_node() :
|
40
|
-
next_(),
|
41
|
-
hash_(0)
|
42
|
-
{}
|
43
|
-
|
44
|
-
void init(node_pointer)
|
45
|
-
{
|
46
|
-
}
|
47
|
-
|
48
|
-
private:
|
49
|
-
unique_node& operator=(unique_node const&);
|
50
|
-
};
|
51
|
-
|
52
|
-
template <typename T>
|
53
|
-
struct ptr_node :
|
54
|
-
boost::unordered::detail::ptr_bucket
|
55
|
-
{
|
56
|
-
typedef T value_type;
|
57
|
-
typedef boost::unordered::detail::ptr_bucket bucket_base;
|
58
|
-
typedef ptr_node<T>* node_pointer;
|
59
|
-
typedef ptr_bucket* link_pointer;
|
60
|
-
|
61
|
-
std::size_t hash_;
|
62
|
-
boost::unordered::detail::value_base<T> value_base_;
|
63
|
-
|
64
|
-
ptr_node() :
|
65
|
-
bucket_base(),
|
66
|
-
hash_(0)
|
67
|
-
{}
|
68
|
-
|
69
|
-
void init(node_pointer)
|
70
|
-
{
|
71
|
-
}
|
72
|
-
|
73
|
-
void* address() { return value_base_.address(); }
|
74
|
-
value_type& value() { return value_base_.value(); }
|
75
|
-
value_type* value_ptr() { return value_base_.value_ptr(); }
|
76
|
-
|
77
|
-
private:
|
78
|
-
ptr_node& operator=(ptr_node const&);
|
79
|
-
};
|
80
|
-
|
81
|
-
// If the allocator uses raw pointers use ptr_node
|
82
|
-
// Otherwise use node.
|
83
|
-
|
84
|
-
template <typename A, typename T, typename NodePtr, typename BucketPtr>
|
85
|
-
struct pick_node2
|
86
|
-
{
|
87
|
-
typedef boost::unordered::detail::unique_node<A, T> node;
|
88
|
-
|
89
|
-
typedef typename boost::unordered::detail::allocator_traits<
|
90
|
-
typename boost::unordered::detail::rebind_wrap<A, node>::type
|
91
|
-
>::pointer node_pointer;
|
92
|
-
|
93
|
-
typedef boost::unordered::detail::bucket<node_pointer> bucket;
|
94
|
-
typedef node_pointer link_pointer;
|
95
|
-
};
|
96
|
-
|
97
|
-
template <typename A, typename T>
|
98
|
-
struct pick_node2<A, T,
|
99
|
-
boost::unordered::detail::ptr_node<T>*,
|
100
|
-
boost::unordered::detail::ptr_bucket*>
|
101
|
-
{
|
102
|
-
typedef boost::unordered::detail::ptr_node<T> node;
|
103
|
-
typedef boost::unordered::detail::ptr_bucket bucket;
|
104
|
-
typedef bucket* link_pointer;
|
105
|
-
};
|
106
|
-
|
107
|
-
template <typename A, typename T>
|
108
|
-
struct pick_node
|
109
|
-
{
|
110
|
-
typedef boost::unordered::detail::allocator_traits<
|
111
|
-
typename boost::unordered::detail::rebind_wrap<A,
|
112
|
-
boost::unordered::detail::ptr_node<T> >::type
|
113
|
-
> tentative_node_traits;
|
114
|
-
|
115
|
-
typedef boost::unordered::detail::allocator_traits<
|
116
|
-
typename boost::unordered::detail::rebind_wrap<A,
|
117
|
-
boost::unordered::detail::ptr_bucket >::type
|
118
|
-
> tentative_bucket_traits;
|
119
|
-
|
120
|
-
typedef pick_node2<A, T,
|
121
|
-
typename tentative_node_traits::pointer,
|
122
|
-
typename tentative_bucket_traits::pointer> pick;
|
123
|
-
|
124
|
-
typedef typename pick::node node;
|
125
|
-
typedef typename pick::bucket bucket;
|
126
|
-
typedef typename pick::link_pointer link_pointer;
|
127
|
-
};
|
128
|
-
|
129
|
-
template <typename A, typename T, typename H, typename P>
|
130
|
-
struct set
|
131
|
-
{
|
132
|
-
typedef boost::unordered::detail::set<A, T, H, P> types;
|
133
|
-
|
134
|
-
typedef A allocator;
|
135
|
-
typedef T value_type;
|
136
|
-
typedef H hasher;
|
137
|
-
typedef P key_equal;
|
138
|
-
typedef T key_type;
|
139
|
-
|
140
|
-
typedef boost::unordered::detail::allocator_traits<allocator> traits;
|
141
|
-
typedef boost::unordered::detail::pick_node<allocator, value_type> pick;
|
142
|
-
typedef typename pick::node node;
|
143
|
-
typedef typename pick::bucket bucket;
|
144
|
-
typedef typename pick::link_pointer link_pointer;
|
145
|
-
|
146
|
-
typedef boost::unordered::detail::table_impl<types> table;
|
147
|
-
typedef boost::unordered::detail::set_extractor<value_type> extractor;
|
148
|
-
|
149
|
-
typedef typename boost::unordered::detail::pick_policy<T>::type policy;
|
150
|
-
};
|
151
|
-
|
152
|
-
template <typename A, typename K, typename M, typename H, typename P>
|
153
|
-
struct map
|
154
|
-
{
|
155
|
-
typedef boost::unordered::detail::map<A, K, M, H, P> types;
|
156
|
-
|
157
|
-
typedef A allocator;
|
158
|
-
typedef std::pair<K const, M> value_type;
|
159
|
-
typedef H hasher;
|
160
|
-
typedef P key_equal;
|
161
|
-
typedef K key_type;
|
162
|
-
|
163
|
-
typedef boost::unordered::detail::allocator_traits<allocator>
|
164
|
-
traits;
|
165
|
-
typedef boost::unordered::detail::pick_node<allocator, value_type> pick;
|
166
|
-
typedef typename pick::node node;
|
167
|
-
typedef typename pick::bucket bucket;
|
168
|
-
typedef typename pick::link_pointer link_pointer;
|
169
|
-
|
170
|
-
typedef boost::unordered::detail::table_impl<types> table;
|
171
|
-
typedef boost::unordered::detail::map_extractor<key_type, value_type>
|
172
|
-
extractor;
|
173
|
-
|
174
|
-
typedef typename boost::unordered::detail::pick_policy<K>::type policy;
|
175
|
-
};
|
176
|
-
|
177
|
-
template <typename Types>
|
178
|
-
struct table_impl : boost::unordered::detail::table<Types>
|
179
|
-
{
|
180
|
-
typedef boost::unordered::detail::table<Types> table;
|
181
|
-
typedef typename table::value_type value_type;
|
182
|
-
typedef typename table::bucket bucket;
|
183
|
-
typedef typename table::policy policy;
|
184
|
-
typedef typename table::node_pointer node_pointer;
|
185
|
-
typedef typename table::node_allocator node_allocator;
|
186
|
-
typedef typename table::node_allocator_traits node_allocator_traits;
|
187
|
-
typedef typename table::bucket_pointer bucket_pointer;
|
188
|
-
typedef typename table::link_pointer link_pointer;
|
189
|
-
typedef typename table::hasher hasher;
|
190
|
-
typedef typename table::key_equal key_equal;
|
191
|
-
typedef typename table::key_type key_type;
|
192
|
-
typedef typename table::node_constructor node_constructor;
|
193
|
-
typedef typename table::extractor extractor;
|
194
|
-
typedef typename table::iterator iterator;
|
195
|
-
typedef typename table::c_iterator c_iterator;
|
196
|
-
|
197
|
-
typedef std::pair<iterator, bool> emplace_return;
|
198
|
-
|
199
|
-
// Constructors
|
200
|
-
|
201
|
-
table_impl(std::size_t n,
|
202
|
-
hasher const& hf,
|
203
|
-
key_equal const& eq,
|
204
|
-
node_allocator const& a)
|
205
|
-
: table(n, hf, eq, a)
|
206
|
-
{}
|
207
|
-
|
208
|
-
table_impl(table_impl const& x)
|
209
|
-
: table(x, node_allocator_traits::
|
210
|
-
select_on_container_copy_construction(x.node_alloc()))
|
211
|
-
{
|
212
|
-
this->init(x);
|
213
|
-
}
|
214
|
-
|
215
|
-
table_impl(table_impl const& x,
|
216
|
-
node_allocator const& a)
|
217
|
-
: table(x, a)
|
218
|
-
{
|
219
|
-
this->init(x);
|
220
|
-
}
|
221
|
-
|
222
|
-
table_impl(table_impl& x,
|
223
|
-
boost::unordered::detail::move_tag m)
|
224
|
-
: table(x, m)
|
225
|
-
{}
|
226
|
-
|
227
|
-
table_impl(table_impl& x,
|
228
|
-
node_allocator const& a,
|
229
|
-
boost::unordered::detail::move_tag m)
|
230
|
-
: table(x, a, m)
|
231
|
-
{
|
232
|
-
this->move_init(x);
|
233
|
-
}
|
234
|
-
|
235
|
-
// Accessors
|
236
|
-
|
237
|
-
template <class Key, class Pred>
|
238
|
-
iterator find_node_impl(
|
239
|
-
std::size_t key_hash,
|
240
|
-
Key const& k,
|
241
|
-
Pred const& eq) const
|
242
|
-
{
|
243
|
-
std::size_t bucket_index = this->hash_to_bucket(key_hash);
|
244
|
-
iterator n = this->begin(bucket_index);
|
245
|
-
|
246
|
-
for (;;)
|
247
|
-
{
|
248
|
-
if (!n.node_) return n;
|
249
|
-
|
250
|
-
std::size_t node_hash = n.node_->hash_;
|
251
|
-
if (key_hash == node_hash)
|
252
|
-
{
|
253
|
-
if (eq(k, this->get_key(*n)))
|
254
|
-
return n;
|
255
|
-
}
|
256
|
-
else
|
257
|
-
{
|
258
|
-
if (this->hash_to_bucket(node_hash) != bucket_index)
|
259
|
-
return iterator();
|
260
|
-
}
|
261
|
-
|
262
|
-
++n;
|
263
|
-
}
|
264
|
-
}
|
265
|
-
|
266
|
-
std::size_t count(key_type const& k) const
|
267
|
-
{
|
268
|
-
return this->find_node(k).node_ ? 1 : 0;
|
269
|
-
}
|
270
|
-
|
271
|
-
value_type& at(key_type const& k) const
|
272
|
-
{
|
273
|
-
if (this->size_) {
|
274
|
-
iterator it = this->find_node(k);
|
275
|
-
if (it.node_) return *it;
|
276
|
-
}
|
277
|
-
|
278
|
-
boost::throw_exception(
|
279
|
-
std::out_of_range("Unable to find key in unordered_map."));
|
280
|
-
}
|
281
|
-
|
282
|
-
std::pair<iterator, iterator>
|
283
|
-
equal_range(key_type const& k) const
|
284
|
-
{
|
285
|
-
iterator n = this->find_node(k);
|
286
|
-
iterator n2 = n;
|
287
|
-
if (n2.node_) ++n2;
|
288
|
-
return std::make_pair(n, n2);
|
289
|
-
}
|
290
|
-
|
291
|
-
// equals
|
292
|
-
|
293
|
-
bool equals(table_impl const& other) const
|
294
|
-
{
|
295
|
-
if(this->size_ != other.size_) return false;
|
296
|
-
|
297
|
-
for(iterator n1 = this->begin(); n1.node_; ++n1)
|
298
|
-
{
|
299
|
-
iterator n2 = other.find_matching_node(n1);
|
300
|
-
|
301
|
-
if (!n2.node_ || *n1 != *n2)
|
302
|
-
return false;
|
303
|
-
}
|
304
|
-
|
305
|
-
return true;
|
306
|
-
}
|
307
|
-
|
308
|
-
// Emplace/Insert
|
309
|
-
|
310
|
-
inline iterator add_node(
|
311
|
-
node_constructor& a,
|
312
|
-
std::size_t key_hash)
|
313
|
-
{
|
314
|
-
node_pointer n = a.release();
|
315
|
-
n->hash_ = key_hash;
|
316
|
-
|
317
|
-
bucket_pointer b = this->get_bucket(this->hash_to_bucket(key_hash));
|
318
|
-
|
319
|
-
if (!b->next_)
|
320
|
-
{
|
321
|
-
link_pointer start_node = this->get_previous_start();
|
322
|
-
|
323
|
-
if (start_node->next_) {
|
324
|
-
this->get_bucket(this->hash_to_bucket(
|
325
|
-
static_cast<node_pointer>(start_node->next_)->hash_)
|
326
|
-
)->next_ = n;
|
327
|
-
}
|
328
|
-
|
329
|
-
b->next_ = start_node;
|
330
|
-
n->next_ = start_node->next_;
|
331
|
-
start_node->next_ = n;
|
332
|
-
}
|
333
|
-
else
|
334
|
-
{
|
335
|
-
n->next_ = b->next_->next_;
|
336
|
-
b->next_->next_ = n;
|
337
|
-
}
|
338
|
-
|
339
|
-
++this->size_;
|
340
|
-
return iterator(n);
|
341
|
-
}
|
342
|
-
|
343
|
-
value_type& operator[](key_type const& k)
|
344
|
-
{
|
345
|
-
std::size_t key_hash = this->hash(k);
|
346
|
-
iterator pos = this->find_node(key_hash, k);
|
347
|
-
|
348
|
-
if (pos.node_) return *pos;
|
349
|
-
|
350
|
-
// Create the node before rehashing in case it throws an
|
351
|
-
// exception (need strong safety in such a case).
|
352
|
-
node_constructor a(this->node_alloc());
|
353
|
-
a.construct_with_value(BOOST_UNORDERED_EMPLACE_ARGS3(
|
354
|
-
boost::unordered::piecewise_construct,
|
355
|
-
boost::make_tuple(k),
|
356
|
-
boost::make_tuple()));
|
357
|
-
|
358
|
-
this->reserve_for_insert(this->size_ + 1);
|
359
|
-
return *add_node(a, key_hash);
|
360
|
-
}
|
361
|
-
|
362
|
-
#if defined(BOOST_NO_CXX11_RVALUE_REFERENCES)
|
363
|
-
# if defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES)
|
364
|
-
emplace_return emplace(boost::unordered::detail::emplace_args1<
|
365
|
-
boost::unordered::detail::please_ignore_this_overload> const&)
|
366
|
-
{
|
367
|
-
BOOST_ASSERT(false);
|
368
|
-
return emplace_return(this->begin(), false);
|
369
|
-
}
|
370
|
-
# else
|
371
|
-
emplace_return emplace(
|
372
|
-
boost::unordered::detail::please_ignore_this_overload const&)
|
373
|
-
{
|
374
|
-
BOOST_ASSERT(false);
|
375
|
-
return emplace_return(this->begin(), false);
|
376
|
-
}
|
377
|
-
# endif
|
378
|
-
#endif
|
379
|
-
|
380
|
-
template <BOOST_UNORDERED_EMPLACE_TEMPLATE>
|
381
|
-
emplace_return emplace(BOOST_UNORDERED_EMPLACE_ARGS)
|
382
|
-
{
|
383
|
-
#if !defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES)
|
384
|
-
return emplace_impl(
|
385
|
-
extractor::extract(BOOST_UNORDERED_EMPLACE_FORWARD),
|
386
|
-
BOOST_UNORDERED_EMPLACE_FORWARD);
|
387
|
-
#else
|
388
|
-
return emplace_impl(
|
389
|
-
extractor::extract(args.a0, args.a1),
|
390
|
-
BOOST_UNORDERED_EMPLACE_FORWARD);
|
391
|
-
#endif
|
392
|
-
}
|
393
|
-
|
394
|
-
#if defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES)
|
395
|
-
template <typename A0>
|
396
|
-
emplace_return emplace(
|
397
|
-
boost::unordered::detail::emplace_args1<A0> const& args)
|
398
|
-
{
|
399
|
-
return emplace_impl(extractor::extract(args.a0), args);
|
400
|
-
}
|
401
|
-
#endif
|
402
|
-
|
403
|
-
template <BOOST_UNORDERED_EMPLACE_TEMPLATE>
|
404
|
-
emplace_return emplace_impl(key_type const& k,
|
405
|
-
BOOST_UNORDERED_EMPLACE_ARGS)
|
406
|
-
{
|
407
|
-
std::size_t key_hash = this->hash(k);
|
408
|
-
iterator pos = this->find_node(key_hash, k);
|
409
|
-
|
410
|
-
if (pos.node_) return emplace_return(pos, false);
|
411
|
-
|
412
|
-
// Create the node before rehashing in case it throws an
|
413
|
-
// exception (need strong safety in such a case).
|
414
|
-
node_constructor a(this->node_alloc());
|
415
|
-
a.construct_with_value(BOOST_UNORDERED_EMPLACE_FORWARD);
|
416
|
-
|
417
|
-
// reserve has basic exception safety if the hash function
|
418
|
-
// throws, strong otherwise.
|
419
|
-
this->reserve_for_insert(this->size_ + 1);
|
420
|
-
return emplace_return(this->add_node(a, key_hash), true);
|
421
|
-
}
|
422
|
-
|
423
|
-
emplace_return emplace_impl_with_node(node_constructor& a)
|
424
|
-
{
|
425
|
-
key_type const& k = this->get_key(a.value());
|
426
|
-
std::size_t key_hash = this->hash(k);
|
427
|
-
iterator pos = this->find_node(key_hash, k);
|
428
|
-
|
429
|
-
if (pos.node_) return emplace_return(pos, false);
|
430
|
-
|
431
|
-
// reserve has basic exception safety if the hash function
|
432
|
-
// throws, strong otherwise.
|
433
|
-
this->reserve_for_insert(this->size_ + 1);
|
434
|
-
return emplace_return(this->add_node(a, key_hash), true);
|
435
|
-
}
|
436
|
-
|
437
|
-
template <BOOST_UNORDERED_EMPLACE_TEMPLATE>
|
438
|
-
emplace_return emplace_impl(no_key, BOOST_UNORDERED_EMPLACE_ARGS)
|
439
|
-
{
|
440
|
-
// Don't have a key, so construct the node first in order
|
441
|
-
// to be able to lookup the position.
|
442
|
-
node_constructor a(this->node_alloc());
|
443
|
-
a.construct_with_value(BOOST_UNORDERED_EMPLACE_FORWARD);
|
444
|
-
return emplace_impl_with_node(a);
|
445
|
-
}
|
446
|
-
|
447
|
-
////////////////////////////////////////////////////////////////////////
|
448
|
-
// Insert range methods
|
449
|
-
//
|
450
|
-
// if hash function throws, or inserting > 1 element, basic exception
|
451
|
-
// safety strong otherwise
|
452
|
-
|
453
|
-
template <class InputIt>
|
454
|
-
void insert_range(InputIt i, InputIt j)
|
455
|
-
{
|
456
|
-
if(i != j)
|
457
|
-
return insert_range_impl(extractor::extract(*i), i, j);
|
458
|
-
}
|
459
|
-
|
460
|
-
template <class InputIt>
|
461
|
-
void insert_range_impl(key_type const& k, InputIt i, InputIt j)
|
462
|
-
{
|
463
|
-
node_constructor a(this->node_alloc());
|
464
|
-
|
465
|
-
insert_range_impl2(a, k, i, j);
|
466
|
-
|
467
|
-
while(++i != j) {
|
468
|
-
// Note: can't use get_key as '*i' might not be value_type - it
|
469
|
-
// could be a pair with first_types as key_type without const or
|
470
|
-
// a different second_type.
|
471
|
-
//
|
472
|
-
// TODO: Might be worth storing the value_type instead of the
|
473
|
-
// key here. Could be more efficient if '*i' is expensive. Could
|
474
|
-
// be less efficient if copying the full value_type is
|
475
|
-
// expensive.
|
476
|
-
insert_range_impl2(a, extractor::extract(*i), i, j);
|
477
|
-
}
|
478
|
-
}
|
479
|
-
|
480
|
-
template <class InputIt>
|
481
|
-
void insert_range_impl2(node_constructor& a, key_type const& k,
|
482
|
-
InputIt i, InputIt j)
|
483
|
-
{
|
484
|
-
// No side effects in this initial code
|
485
|
-
std::size_t key_hash = this->hash(k);
|
486
|
-
iterator pos = this->find_node(key_hash, k);
|
487
|
-
|
488
|
-
if (!pos.node_) {
|
489
|
-
a.construct_with_value2(*i);
|
490
|
-
if(this->size_ + 1 > this->max_load_)
|
491
|
-
this->reserve_for_insert(this->size_ +
|
492
|
-
boost::unordered::detail::insert_size(i, j));
|
493
|
-
|
494
|
-
// Nothing after this point can throw.
|
495
|
-
this->add_node(a, key_hash);
|
496
|
-
}
|
497
|
-
}
|
498
|
-
|
499
|
-
template <class InputIt>
|
500
|
-
void insert_range_impl(no_key, InputIt i, InputIt j)
|
501
|
-
{
|
502
|
-
node_constructor a(this->node_alloc());
|
503
|
-
|
504
|
-
do {
|
505
|
-
a.construct_with_value2(*i);
|
506
|
-
emplace_impl_with_node(a);
|
507
|
-
} while(++i != j);
|
508
|
-
}
|
509
|
-
|
510
|
-
////////////////////////////////////////////////////////////////////////
|
511
|
-
// Erase
|
512
|
-
//
|
513
|
-
// no throw
|
514
|
-
|
515
|
-
std::size_t erase_key(key_type const& k)
|
516
|
-
{
|
517
|
-
if(!this->size_) return 0;
|
518
|
-
|
519
|
-
std::size_t key_hash = this->hash(k);
|
520
|
-
std::size_t bucket_index = this->hash_to_bucket(key_hash);
|
521
|
-
link_pointer prev = this->get_previous_start(bucket_index);
|
522
|
-
if (!prev) return 0;
|
523
|
-
|
524
|
-
for (;;)
|
525
|
-
{
|
526
|
-
if (!prev->next_) return 0;
|
527
|
-
std::size_t node_hash =
|
528
|
-
static_cast<node_pointer>(prev->next_)->hash_;
|
529
|
-
if (this->hash_to_bucket(node_hash) != bucket_index)
|
530
|
-
return 0;
|
531
|
-
if (node_hash == key_hash &&
|
532
|
-
this->key_eq()(k, this->get_key(
|
533
|
-
static_cast<node_pointer>(prev->next_)->value())))
|
534
|
-
break;
|
535
|
-
prev = prev->next_;
|
536
|
-
}
|
537
|
-
|
538
|
-
link_pointer end = static_cast<node_pointer>(prev->next_)->next_;
|
539
|
-
|
540
|
-
std::size_t deleted_count = this->delete_nodes(prev, end);
|
541
|
-
this->fix_bucket(bucket_index, prev);
|
542
|
-
return deleted_count;
|
543
|
-
}
|
544
|
-
|
545
|
-
iterator erase(c_iterator r)
|
546
|
-
{
|
547
|
-
BOOST_ASSERT(r.node_);
|
548
|
-
iterator next(r.node_);
|
549
|
-
++next;
|
550
|
-
erase_nodes(r.node_, next.node_);
|
551
|
-
return next;
|
552
|
-
}
|
553
|
-
|
554
|
-
iterator erase_range(c_iterator r1, c_iterator r2)
|
555
|
-
{
|
556
|
-
if (r1 == r2) return iterator(r2.node_);
|
557
|
-
erase_nodes(r1.node_, r2.node_);
|
558
|
-
return iterator(r2.node_);
|
559
|
-
}
|
560
|
-
|
561
|
-
void erase_nodes(node_pointer i, node_pointer j)
|
562
|
-
{
|
563
|
-
std::size_t bucket_index = this->hash_to_bucket(i->hash_);
|
564
|
-
|
565
|
-
// Find the node before i.
|
566
|
-
link_pointer prev = this->get_previous_start(bucket_index);
|
567
|
-
while(prev->next_ != i) prev = prev->next_;
|
568
|
-
|
569
|
-
// Delete the nodes.
|
570
|
-
do {
|
571
|
-
this->delete_node(prev);
|
572
|
-
bucket_index = this->fix_bucket(bucket_index, prev);
|
573
|
-
} while (prev->next_ != j);
|
574
|
-
}
|
575
|
-
|
576
|
-
////////////////////////////////////////////////////////////////////////
|
577
|
-
// fill_buckets
|
578
|
-
|
579
|
-
template <class NodeCreator>
|
580
|
-
static void fill_buckets(iterator n, table& dst,
|
581
|
-
NodeCreator& creator)
|
582
|
-
{
|
583
|
-
link_pointer prev = dst.get_previous_start();
|
584
|
-
|
585
|
-
while (n.node_) {
|
586
|
-
node_pointer node = creator.create(*n);
|
587
|
-
node->hash_ = n.node_->hash_;
|
588
|
-
prev->next_ = node;
|
589
|
-
++dst.size_;
|
590
|
-
++n;
|
591
|
-
|
592
|
-
prev = place_in_bucket(dst, prev);
|
593
|
-
}
|
594
|
-
}
|
595
|
-
|
596
|
-
// strong otherwise exception safety
|
597
|
-
void rehash_impl(std::size_t num_buckets)
|
598
|
-
{
|
599
|
-
BOOST_ASSERT(this->buckets_);
|
600
|
-
|
601
|
-
this->create_buckets(num_buckets);
|
602
|
-
link_pointer prev = this->get_previous_start();
|
603
|
-
while (prev->next_)
|
604
|
-
prev = place_in_bucket(*this, prev);
|
605
|
-
}
|
606
|
-
|
607
|
-
// Iterate through the nodes placing them in the correct buckets.
|
608
|
-
// pre: prev->next_ is not null.
|
609
|
-
static link_pointer place_in_bucket(table& dst, link_pointer prev)
|
610
|
-
{
|
611
|
-
node_pointer n = static_cast<node_pointer>(prev->next_);
|
612
|
-
bucket_pointer b = dst.get_bucket(dst.hash_to_bucket(n->hash_));
|
613
|
-
|
614
|
-
if (!b->next_) {
|
615
|
-
b->next_ = prev;
|
616
|
-
return n;
|
617
|
-
}
|
618
|
-
else {
|
619
|
-
prev->next_ = n->next_;
|
620
|
-
n->next_ = b->next_->next_;
|
621
|
-
b->next_->next_ = n;
|
622
|
-
return prev;
|
623
|
-
}
|
624
|
-
}
|
625
|
-
};
|
626
|
-
}}}
|
627
|
-
|
628
|
-
#endif
|