passenger 4.0.60 → 5.0.0.beta1
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of passenger might be problematic. Click here for more details.
- checksums.yaml +8 -8
- checksums.yaml.gz.asc +7 -7
- data.tar.gz.asc +7 -7
- data/.editorconfig +5 -0
- data/.travis.yml +3 -2
- data/CHANGELOG +31 -53
- data/CONTRIBUTING.md +4 -4
- data/CONTRIBUTORS +0 -1
- data/Gemfile +18 -0
- data/Gemfile.lock +41 -0
- data/Rakefile +16 -0
- data/bin/passenger +2 -2
- data/bin/passenger-install-apache2-module +12 -12
- data/bin/passenger-install-nginx-module +9 -14
- data/bin/passenger-status +125 -87
- data/build/agents.rb +112 -140
- data/build/apache2.rb +4 -9
- data/build/basics.rb +5 -3
- data/build/common_library.rb +1 -0
- data/build/cxx_tests.rb +69 -47
- data/build/debian.rb +4 -2
- data/build/documentation.rb +1 -0
- data/build/integration_tests.rb +28 -43
- data/build/misc.rb +0 -18
- data/build/nginx.rb +2 -6
- data/build/packaging.rb +33 -22
- data/build/preprocessor.rb +2 -4
- data/build/ruby_tests.rb +7 -26
- data/build/test_basics.rb +24 -25
- data/debian.template/control.template +2 -2
- data/debian.template/locations.ini.template +2 -3
- data/debian.template/passenger.install.template +2 -2
- data/debian.template/rules.template +1 -1
- data/dev/ci/run_jenkins.sh +0 -1
- data/dev/ci/run_rpm_tests.sh +3 -0
- data/dev/ci/run_travis.sh +63 -17
- data/dev/copy_boost_headers +22 -6
- data/dev/ruby_server.rb +244 -0
- data/dev/vagrant/provision.sh +3 -1
- data/doc/DebuggingAndStressTesting.md +3 -3
- data/doc/Design and Architecture.txt +5 -6
- data/doc/Packaging.txt.md +35 -6
- data/doc/ServerOptimizationGuide.txt.md +339 -0
- data/doc/Users guide Apache.idmap.txt +177 -187
- data/doc/Users guide Apache.txt +143 -219
- data/doc/Users guide Nginx.idmap.txt +166 -166
- data/doc/Users guide Nginx.txt +265 -223
- data/doc/Users guide Standalone.txt +3 -3
- data/doc/templates/markdown.html.erb +37 -6
- data/doc/users_guide_snippets/environment_variables.txt +1 -1
- data/doc/users_guide_snippets/support_information.txt +1 -1
- data/doc/users_guide_snippets/tips.txt +2 -2
- data/ext/apache2/Configuration.cpp +23 -81
- data/ext/apache2/Configuration.hpp +18 -92
- data/ext/apache2/ConfigurationCommands.cpp +64 -15
- data/ext/apache2/ConfigurationCommands.cpp.erb +8 -4
- data/ext/apache2/ConfigurationFields.hpp +12 -0
- data/ext/apache2/ConfigurationSetters.cpp +73 -1
- data/ext/apache2/ConfigurationSetters.cpp.erb +3 -2
- data/ext/apache2/CreateDirConfig.cpp +6 -0
- data/ext/apache2/DirectoryMapper.h +11 -6
- data/ext/apache2/Hooks.cpp +291 -408
- data/ext/apache2/MergeDirConfig.cpp +42 -0
- data/ext/apache2/SetHeaders.cpp +61 -16
- data/ext/apache2/SetHeaders.cpp.erb +9 -7
- data/ext/boost/container/allocator_traits.hpp +400 -0
- data/ext/boost/container/deque.hpp +2012 -0
- data/ext/boost/container/detail/adaptive_node_pool_impl.hpp +874 -0
- data/ext/boost/container/detail/advanced_insert_int.hpp +369 -0
- data/ext/boost/container/detail/algorithms.hpp +84 -0
- data/ext/boost/container/detail/allocation_type.hpp +54 -0
- data/ext/boost/container/detail/allocator_version_traits.hpp +163 -0
- data/ext/boost/container/detail/config_begin.hpp +49 -0
- data/ext/boost/container/detail/config_end.hpp +17 -0
- data/ext/boost/container/detail/destroyers.hpp +365 -0
- data/ext/boost/container/detail/flat_tree.hpp +1055 -0
- data/ext/boost/container/detail/function_detector.hpp +88 -0
- data/ext/boost/container/detail/iterators.hpp +611 -0
- data/ext/boost/container/detail/math_functions.hpp +113 -0
- data/ext/boost/container/detail/memory_util.hpp +83 -0
- data/ext/boost/container/detail/mpl.hpp +160 -0
- data/ext/boost/container/detail/multiallocation_chain.hpp +286 -0
- data/ext/boost/container/detail/node_alloc_holder.hpp +386 -0
- data/ext/boost/container/detail/node_pool_impl.hpp +365 -0
- data/ext/boost/container/detail/pair.hpp +354 -0
- data/ext/boost/container/detail/pool_common.hpp +52 -0
- data/ext/boost/container/detail/preprocessor.hpp +232 -0
- data/ext/boost/container/detail/transform_iterator.hpp +176 -0
- data/ext/boost/container/detail/tree.hpp +1134 -0
- data/ext/boost/container/detail/type_traits.hpp +210 -0
- data/ext/boost/container/detail/utilities.hpp +1141 -0
- data/ext/boost/container/detail/value_init.hpp +45 -0
- data/ext/boost/container/detail/variadic_templates_tools.hpp +153 -0
- data/ext/boost/container/detail/version_type.hpp +92 -0
- data/ext/boost/container/detail/workaround.hpp +44 -0
- data/ext/boost/container/flat_map.hpp +1674 -0
- data/ext/boost/container/flat_set.hpp +1408 -0
- data/ext/boost/container/list.hpp +1475 -0
- data/ext/boost/container/map.hpp +1508 -0
- data/ext/boost/container/scoped_allocator.hpp +1503 -0
- data/ext/boost/container/scoped_allocator_fwd.hpp +83 -0
- data/ext/boost/container/set.hpp +1280 -0
- data/ext/boost/container/slist.hpp +1706 -0
- data/ext/boost/container/stable_vector.hpp +1869 -0
- data/ext/boost/container/static_vector.hpp +1053 -0
- data/ext/boost/container/string.hpp +2856 -0
- data/ext/boost/container/throw_exception.hpp +110 -0
- data/ext/boost/container/vector.hpp +2671 -0
- data/ext/boost/detail/is_xxx.hpp +61 -0
- data/ext/boost/intrusive/any_hook.hpp +344 -0
- data/ext/boost/intrusive/avl_set.hpp +2528 -0
- data/ext/boost/intrusive/avl_set_hook.hpp +297 -0
- data/ext/boost/intrusive/avltree.hpp +1786 -0
- data/ext/boost/intrusive/avltree_algorithms.hpp +968 -0
- data/ext/boost/intrusive/bs_set_hook.hpp +296 -0
- data/ext/boost/intrusive/circular_list_algorithms.hpp +413 -0
- data/ext/boost/intrusive/circular_slist_algorithms.hpp +404 -0
- data/ext/boost/intrusive/derivation_value_traits.hpp +70 -0
- data/ext/boost/intrusive/detail/any_node_and_algorithms.hpp +297 -0
- data/ext/boost/intrusive/detail/assert.hpp +41 -0
- data/ext/boost/intrusive/detail/avltree_node.hpp +197 -0
- data/ext/boost/intrusive/detail/clear_on_destructor_base.hpp +36 -0
- data/ext/boost/intrusive/detail/common_slist_algorithms.hpp +102 -0
- data/ext/boost/intrusive/detail/config_begin.hpp +52 -0
- data/ext/boost/intrusive/detail/config_end.hpp +15 -0
- data/ext/boost/intrusive/detail/ebo_functor_holder.hpp +95 -0
- data/ext/boost/intrusive/detail/function_detector.hpp +88 -0
- data/ext/boost/intrusive/detail/generic_hook.hpp +209 -0
- data/ext/boost/intrusive/detail/has_member_function_callable_with.hpp +357 -0
- data/ext/boost/intrusive/detail/hashtable_node.hpp +249 -0
- data/ext/boost/intrusive/detail/is_stateful_value_traits.hpp +77 -0
- data/ext/boost/intrusive/detail/list_node.hpp +196 -0
- data/ext/boost/intrusive/detail/memory_util.hpp +288 -0
- data/ext/boost/intrusive/detail/mpl.hpp +383 -0
- data/ext/boost/intrusive/detail/parent_from_member.hpp +97 -0
- data/ext/boost/intrusive/detail/preprocessor.hpp +52 -0
- data/ext/boost/intrusive/detail/rbtree_node.hpp +201 -0
- data/ext/boost/intrusive/detail/slist_node.hpp +166 -0
- data/ext/boost/intrusive/detail/transform_iterator.hpp +173 -0
- data/ext/boost/intrusive/detail/tree_algorithms.hpp +1742 -0
- data/ext/boost/intrusive/detail/tree_node.hpp +199 -0
- data/ext/boost/intrusive/detail/utilities.hpp +858 -0
- data/ext/boost/intrusive/detail/workaround.hpp +22 -0
- data/ext/boost/intrusive/hashtable.hpp +3110 -0
- data/ext/boost/intrusive/intrusive_fwd.hpp +542 -0
- data/ext/boost/intrusive/linear_slist_algorithms.hpp +327 -0
- data/ext/boost/intrusive/link_mode.hpp +46 -0
- data/ext/boost/intrusive/list.hpp +1525 -0
- data/ext/boost/intrusive/list_hook.hpp +290 -0
- data/ext/boost/intrusive/member_value_traits.hpp +70 -0
- data/ext/boost/intrusive/options.hpp +810 -0
- data/ext/boost/intrusive/parent_from_member.hpp +42 -0
- data/ext/boost/intrusive/pointer_plus_bits.hpp +86 -0
- data/ext/boost/intrusive/pointer_traits.hpp +265 -0
- data/ext/boost/intrusive/priority_compare.hpp +39 -0
- data/ext/boost/intrusive/rbtree.hpp +1785 -0
- data/ext/boost/intrusive/rbtree_algorithms.hpp +934 -0
- data/ext/boost/intrusive/set.hpp +2554 -0
- data/ext/boost/intrusive/set_hook.hpp +300 -0
- data/ext/boost/intrusive/sg_set.hpp +2601 -0
- data/ext/boost/intrusive/sgtree.hpp +2009 -0
- data/ext/boost/intrusive/sgtree_algorithms.hpp +807 -0
- data/ext/boost/intrusive/slist.hpp +2219 -0
- data/ext/boost/intrusive/slist_hook.hpp +294 -0
- data/ext/boost/intrusive/splay_set.hpp +2575 -0
- data/ext/boost/intrusive/splay_set_hook.hpp +292 -0
- data/ext/boost/intrusive/splaytree.hpp +1784 -0
- data/ext/boost/intrusive/splaytree_algorithms.hpp +1008 -0
- data/ext/boost/intrusive/treap.hpp +1882 -0
- data/ext/boost/intrusive/treap_algorithms.hpp +919 -0
- data/ext/boost/intrusive/treap_set.hpp +2751 -0
- data/ext/boost/intrusive/trivial_value_traits.hpp +46 -0
- data/ext/boost/intrusive/unordered_set.hpp +2115 -0
- data/ext/boost/intrusive/unordered_set_hook.hpp +434 -0
- data/ext/boost/intrusive_ptr.hpp +18 -0
- data/ext/boost/math/common_factor_ct.hpp +180 -0
- data/ext/boost/math_fwd.hpp +108 -0
- data/ext/boost/move/detail/move_helpers.hpp +175 -0
- data/ext/boost/parameter.hpp +21 -0
- data/ext/boost/parameter/aux_/arg_list.hpp +459 -0
- data/ext/boost/parameter/aux_/cast.hpp +143 -0
- data/ext/boost/parameter/aux_/default.hpp +69 -0
- data/ext/boost/parameter/aux_/is_maybe.hpp +26 -0
- data/ext/boost/parameter/aux_/maybe.hpp +120 -0
- data/ext/boost/parameter/aux_/overloads.hpp +88 -0
- data/ext/boost/parameter/aux_/parameter_requirements.hpp +25 -0
- data/ext/boost/parameter/aux_/parenthesized_type.hpp +119 -0
- data/ext/boost/parameter/aux_/preprocessor/flatten.hpp +115 -0
- data/ext/boost/parameter/aux_/preprocessor/for_each.hpp +103 -0
- data/ext/boost/parameter/aux_/python/invoker.hpp +132 -0
- data/ext/boost/parameter/aux_/python/invoker_iterate.hpp +93 -0
- data/ext/boost/parameter/aux_/result_of0.hpp +36 -0
- data/ext/boost/parameter/aux_/set.hpp +67 -0
- data/ext/boost/parameter/aux_/tag.hpp +38 -0
- data/ext/boost/parameter/aux_/tagged_argument.hpp +188 -0
- data/ext/boost/parameter/aux_/template_keyword.hpp +47 -0
- data/ext/boost/parameter/aux_/unwrap_cv_reference.hpp +97 -0
- data/ext/boost/parameter/aux_/void.hpp +29 -0
- data/ext/boost/parameter/aux_/yesno.hpp +26 -0
- data/ext/boost/parameter/binding.hpp +106 -0
- data/ext/boost/parameter/config.hpp +14 -0
- data/ext/boost/parameter/keyword.hpp +152 -0
- data/ext/boost/parameter/macros.hpp +99 -0
- data/ext/boost/parameter/match.hpp +55 -0
- data/ext/boost/parameter/name.hpp +156 -0
- data/ext/boost/parameter/parameters.hpp +931 -0
- data/ext/boost/parameter/preprocessor.hpp +1178 -0
- data/ext/boost/parameter/python.hpp +735 -0
- data/ext/boost/parameter/value_type.hpp +108 -0
- data/ext/boost/pool/detail/for.m4 +107 -0
- data/ext/boost/pool/detail/guard.hpp +69 -0
- data/ext/boost/pool/detail/mutex.hpp +42 -0
- data/ext/boost/pool/detail/pool_construct.bat +24 -0
- data/ext/boost/pool/detail/pool_construct.ipp +852 -0
- data/ext/boost/pool/detail/pool_construct.m4 +84 -0
- data/ext/boost/pool/detail/pool_construct.sh +12 -0
- data/ext/boost/pool/detail/pool_construct_simple.bat +25 -0
- data/ext/boost/pool/detail/pool_construct_simple.ipp +43 -0
- data/ext/boost/pool/detail/pool_construct_simple.m4 +72 -0
- data/ext/boost/pool/detail/pool_construct_simple.sh +12 -0
- data/ext/boost/pool/object_pool.hpp +287 -0
- data/ext/boost/pool/pool.hpp +1024 -0
- data/ext/boost/pool/pool_alloc.hpp +488 -0
- data/ext/boost/pool/poolfwd.hpp +82 -0
- data/ext/boost/pool/simple_segregated_storage.hpp +377 -0
- data/ext/boost/pool/singleton_pool.hpp +251 -0
- data/ext/boost/preprocessor/arithmetic.hpp +25 -0
- data/ext/boost/preprocessor/arithmetic/detail/div_base.hpp +61 -0
- data/ext/boost/preprocessor/arithmetic/div.hpp +39 -0
- data/ext/boost/preprocessor/arithmetic/mod.hpp +39 -0
- data/ext/boost/preprocessor/arithmetic/mul.hpp +53 -0
- data/ext/boost/preprocessor/array.hpp +32 -0
- data/ext/boost/preprocessor/array/enum.hpp +33 -0
- data/ext/boost/preprocessor/array/insert.hpp +55 -0
- data/ext/boost/preprocessor/array/pop_back.hpp +37 -0
- data/ext/boost/preprocessor/array/pop_front.hpp +38 -0
- data/ext/boost/preprocessor/array/push_back.hpp +33 -0
- data/ext/boost/preprocessor/array/push_front.hpp +33 -0
- data/ext/boost/preprocessor/array/remove.hpp +54 -0
- data/ext/boost/preprocessor/array/replace.hpp +49 -0
- data/ext/boost/preprocessor/array/reverse.hpp +29 -0
- data/ext/boost/preprocessor/array/to_list.hpp +33 -0
- data/ext/boost/preprocessor/array/to_seq.hpp +33 -0
- data/ext/boost/preprocessor/array/to_tuple.hpp +22 -0
- data/ext/boost/preprocessor/assert_msg.hpp +17 -0
- data/ext/boost/preprocessor/comma.hpp +17 -0
- data/ext/boost/preprocessor/comparison.hpp +24 -0
- data/ext/boost/preprocessor/comparison/equal.hpp +34 -0
- data/ext/boost/preprocessor/comparison/greater.hpp +38 -0
- data/ext/boost/preprocessor/comparison/greater_equal.hpp +38 -0
- data/ext/boost/preprocessor/comparison/less.hpp +46 -0
- data/ext/boost/preprocessor/comparison/less_equal.hpp +39 -0
- data/ext/boost/preprocessor/comparison/not_equal.hpp +814 -0
- data/ext/boost/preprocessor/config/limits.hpp +30 -0
- data/ext/boost/preprocessor/control.hpp +22 -0
- data/ext/boost/preprocessor/control/deduce_d.hpp +22 -0
- data/ext/boost/preprocessor/control/detail/dmc/while.hpp +536 -0
- data/ext/boost/preprocessor/control/detail/edg/while.hpp +534 -0
- data/ext/boost/preprocessor/control/detail/msvc/while.hpp +277 -0
- data/ext/boost/preprocessor/control/expr_if.hpp +30 -0
- data/ext/boost/preprocessor/debug.hpp +18 -0
- data/ext/boost/preprocessor/debug/assert.hpp +44 -0
- data/ext/boost/preprocessor/debug/line.hpp +35 -0
- data/ext/boost/preprocessor/detail/dmc/auto_rec.hpp +286 -0
- data/ext/boost/preprocessor/detail/is_nullary.hpp +30 -0
- data/ext/boost/preprocessor/detail/is_unary.hpp +30 -0
- data/ext/boost/preprocessor/detail/null.hpp +17 -0
- data/ext/boost/preprocessor/detail/split.hpp +35 -0
- data/ext/boost/preprocessor/enum_params_with_defaults.hpp +17 -0
- data/ext/boost/preprocessor/enum_shifted.hpp +17 -0
- data/ext/boost/preprocessor/expand.hpp +17 -0
- data/ext/boost/preprocessor/expr_if.hpp +17 -0
- data/ext/boost/preprocessor/facilities.hpp +23 -0
- data/ext/boost/preprocessor/facilities/apply.hpp +34 -0
- data/ext/boost/preprocessor/facilities/expand.hpp +28 -0
- data/ext/boost/preprocessor/facilities/is_1.hpp +23 -0
- data/ext/boost/preprocessor/facilities/is_empty.hpp +43 -0
- data/ext/boost/preprocessor/facilities/is_empty_or_1.hpp +30 -0
- data/ext/boost/preprocessor/for.hpp +17 -0
- data/ext/boost/preprocessor/if.hpp +17 -0
- data/ext/boost/preprocessor/iteration.hpp +19 -0
- data/ext/boost/preprocessor/iteration/detail/bounds/lower3.hpp +99 -0
- data/ext/boost/preprocessor/iteration/detail/bounds/lower4.hpp +99 -0
- data/ext/boost/preprocessor/iteration/detail/bounds/lower5.hpp +99 -0
- data/ext/boost/preprocessor/iteration/detail/bounds/upper3.hpp +99 -0
- data/ext/boost/preprocessor/iteration/detail/bounds/upper4.hpp +99 -0
- data/ext/boost/preprocessor/iteration/detail/bounds/upper5.hpp +99 -0
- data/ext/boost/preprocessor/iteration/detail/finish.hpp +99 -0
- data/ext/boost/preprocessor/iteration/detail/iter/forward3.hpp +1338 -0
- data/ext/boost/preprocessor/iteration/detail/iter/forward4.hpp +1338 -0
- data/ext/boost/preprocessor/iteration/detail/iter/forward5.hpp +1338 -0
- data/ext/boost/preprocessor/iteration/detail/iter/reverse2.hpp +1296 -0
- data/ext/boost/preprocessor/iteration/detail/iter/reverse3.hpp +1296 -0
- data/ext/boost/preprocessor/iteration/detail/iter/reverse4.hpp +1296 -0
- data/ext/boost/preprocessor/iteration/detail/iter/reverse5.hpp +1296 -0
- data/ext/boost/preprocessor/iteration/detail/local.hpp +812 -0
- data/ext/boost/preprocessor/iteration/detail/rlocal.hpp +782 -0
- data/ext/boost/preprocessor/iteration/detail/self.hpp +21 -0
- data/ext/boost/preprocessor/iteration/detail/start.hpp +99 -0
- data/ext/boost/preprocessor/iteration/local.hpp +26 -0
- data/ext/boost/preprocessor/iteration/self.hpp +19 -0
- data/ext/boost/preprocessor/library.hpp +36 -0
- data/ext/boost/preprocessor/limits.hpp +17 -0
- data/ext/boost/preprocessor/list.hpp +37 -0
- data/ext/boost/preprocessor/list/at.hpp +39 -0
- data/ext/boost/preprocessor/list/cat.hpp +42 -0
- data/ext/boost/preprocessor/list/detail/dmc/fold_left.hpp +279 -0
- data/ext/boost/preprocessor/list/detail/edg/fold_left.hpp +536 -0
- data/ext/boost/preprocessor/list/detail/edg/fold_right.hpp +794 -0
- data/ext/boost/preprocessor/list/enum.hpp +41 -0
- data/ext/boost/preprocessor/list/filter.hpp +54 -0
- data/ext/boost/preprocessor/list/first_n.hpp +58 -0
- data/ext/boost/preprocessor/list/for_each.hpp +49 -0
- data/ext/boost/preprocessor/list/for_each_product.hpp +141 -0
- data/ext/boost/preprocessor/list/rest_n.hpp +55 -0
- data/ext/boost/preprocessor/list/size.hpp +58 -0
- data/ext/boost/preprocessor/list/to_array.hpp +123 -0
- data/ext/boost/preprocessor/list/to_seq.hpp +32 -0
- data/ext/boost/preprocessor/list/to_tuple.hpp +38 -0
- data/ext/boost/preprocessor/logical.hpp +29 -0
- data/ext/boost/preprocessor/logical/bitnor.hpp +38 -0
- data/ext/boost/preprocessor/logical/bitor.hpp +38 -0
- data/ext/boost/preprocessor/logical/bitxor.hpp +38 -0
- data/ext/boost/preprocessor/logical/nor.hpp +30 -0
- data/ext/boost/preprocessor/logical/not.hpp +30 -0
- data/ext/boost/preprocessor/logical/or.hpp +30 -0
- data/ext/boost/preprocessor/logical/xor.hpp +30 -0
- data/ext/boost/preprocessor/max.hpp +17 -0
- data/ext/boost/preprocessor/min.hpp +17 -0
- data/ext/boost/preprocessor/punctuation.hpp +20 -0
- data/ext/boost/preprocessor/punctuation/paren_if.hpp +38 -0
- data/ext/boost/preprocessor/repeat_3rd.hpp +17 -0
- data/ext/boost/preprocessor/repeat_from_to.hpp +17 -0
- data/ext/boost/preprocessor/repeat_from_to_2nd.hpp +17 -0
- data/ext/boost/preprocessor/repeat_from_to_3rd.hpp +17 -0
- data/ext/boost/preprocessor/repetition.hpp +32 -0
- data/ext/boost/preprocessor/repetition/deduce_r.hpp +22 -0
- data/ext/boost/preprocessor/repetition/deduce_z.hpp +22 -0
- data/ext/boost/preprocessor/repetition/detail/dmc/for.hpp +536 -0
- data/ext/boost/preprocessor/repetition/detail/edg/for.hpp +534 -0
- data/ext/boost/preprocessor/repetition/detail/msvc/for.hpp +277 -0
- data/ext/boost/preprocessor/repetition/enum_params_with_defaults.hpp +24 -0
- data/ext/boost/preprocessor/repetition/enum_shifted.hpp +68 -0
- data/ext/boost/preprocessor/repetition/enum_shifted_binary_params.hpp +51 -0
- data/ext/boost/preprocessor/repetition/enum_trailing.hpp +63 -0
- data/ext/boost/preprocessor/repetition/enum_trailing_binary_params.hpp +53 -0
- data/ext/boost/preprocessor/selection.hpp +18 -0
- data/ext/boost/preprocessor/selection/max.hpp +39 -0
- data/ext/boost/preprocessor/selection/min.hpp +39 -0
- data/ext/boost/preprocessor/seq.hpp +43 -0
- data/ext/boost/preprocessor/seq/cat.hpp +49 -0
- data/ext/boost/preprocessor/seq/detail/binary_transform.hpp +40 -0
- data/ext/boost/preprocessor/seq/detail/split.hpp +284 -0
- data/ext/boost/preprocessor/seq/filter.hpp +54 -0
- data/ext/boost/preprocessor/seq/first_n.hpp +30 -0
- data/ext/boost/preprocessor/seq/fold_left.hpp +1070 -0
- data/ext/boost/preprocessor/seq/fold_right.hpp +288 -0
- data/ext/boost/preprocessor/seq/for_each.hpp +60 -0
- data/ext/boost/preprocessor/seq/for_each_product.hpp +126 -0
- data/ext/boost/preprocessor/seq/insert.hpp +28 -0
- data/ext/boost/preprocessor/seq/pop_back.hpp +29 -0
- data/ext/boost/preprocessor/seq/pop_front.hpp +27 -0
- data/ext/boost/preprocessor/seq/push_back.hpp +19 -0
- data/ext/boost/preprocessor/seq/push_front.hpp +19 -0
- data/ext/boost/preprocessor/seq/remove.hpp +29 -0
- data/ext/boost/preprocessor/seq/replace.hpp +29 -0
- data/ext/boost/preprocessor/seq/rest_n.hpp +30 -0
- data/ext/boost/preprocessor/seq/reverse.hpp +39 -0
- data/ext/boost/preprocessor/seq/subseq.hpp +28 -0
- data/ext/boost/preprocessor/seq/to_array.hpp +28 -0
- data/ext/boost/preprocessor/seq/to_list.hpp +29 -0
- data/ext/boost/preprocessor/seq/to_tuple.hpp +27 -0
- data/ext/boost/preprocessor/seq/transform.hpp +48 -0
- data/ext/boost/preprocessor/slot.hpp +17 -0
- data/ext/boost/preprocessor/slot/counter.hpp +25 -0
- data/ext/boost/preprocessor/slot/detail/counter.hpp +269 -0
- data/ext/boost/preprocessor/slot/detail/slot1.hpp +267 -0
- data/ext/boost/preprocessor/slot/detail/slot2.hpp +267 -0
- data/ext/boost/preprocessor/slot/detail/slot3.hpp +267 -0
- data/ext/boost/preprocessor/slot/detail/slot4.hpp +267 -0
- data/ext/boost/preprocessor/slot/detail/slot5.hpp +267 -0
- data/ext/boost/preprocessor/tuple.hpp +28 -0
- data/ext/boost/preprocessor/tuple/enum.hpp +22 -0
- data/ext/boost/preprocessor/tuple/reverse.hpp +114 -0
- data/ext/boost/preprocessor/tuple/size.hpp +28 -0
- data/ext/boost/preprocessor/tuple/to_array.hpp +37 -0
- data/ext/boost/preprocessor/tuple/to_seq.hpp +114 -0
- data/ext/boost/preprocessor/variadic.hpp +23 -0
- data/ext/boost/preprocessor/variadic/to_array.hpp +32 -0
- data/ext/boost/preprocessor/variadic/to_list.hpp +25 -0
- data/ext/boost/preprocessor/variadic/to_seq.hpp +25 -0
- data/ext/boost/preprocessor/variadic/to_tuple.hpp +24 -0
- data/ext/boost/preprocessor/while.hpp +17 -0
- data/ext/boost/preprocessor/wstringize.hpp +29 -0
- data/ext/boost/smart_ptr/intrusive_ptr.hpp +324 -0
- data/ext/common/AccountsDatabase.h +3 -4
- data/ext/common/AgentsStarter.cpp +12 -15
- data/ext/common/AgentsStarter.h +54 -120
- data/ext/common/ApplicationPool2/AppTypes.cpp +12 -5
- data/ext/common/ApplicationPool2/AppTypes.h +21 -14
- data/ext/common/ApplicationPool2/Common.h +36 -19
- data/ext/common/ApplicationPool2/DirectSpawner.h +15 -16
- data/ext/common/ApplicationPool2/DummySpawner.h +9 -8
- data/ext/common/ApplicationPool2/ErrorRenderer.h +1 -1
- data/ext/common/ApplicationPool2/Group.h +304 -171
- data/ext/common/ApplicationPool2/Implementation.cpp +234 -125
- data/ext/common/ApplicationPool2/Options.h +50 -62
- data/ext/common/ApplicationPool2/Pool.h +285 -189
- data/ext/common/ApplicationPool2/Process.h +126 -115
- data/ext/common/ApplicationPool2/Session.h +70 -30
- data/ext/common/ApplicationPool2/SmartSpawner.h +19 -18
- data/ext/common/ApplicationPool2/Socket.h +57 -43
- data/ext/common/ApplicationPool2/SpawnObject.h +83 -0
- data/ext/common/ApplicationPool2/Spawner.h +59 -38
- data/ext/common/ApplicationPool2/SpawnerFactory.h +8 -14
- data/ext/common/ApplicationPool2/SuperGroup.h +69 -40
- data/ext/common/BackgroundEventLoop.cpp +48 -1
- data/ext/common/BackgroundEventLoop.h +3 -1
- data/ext/common/Constants.h +30 -8
- data/ext/common/DataStructures/HashedStaticString.h +103 -0
- data/ext/common/DataStructures/LString.h +396 -0
- data/ext/common/DataStructures/StringKeyTable.h +588 -0
- data/ext/common/EventedMessageServer.h +1 -0
- data/ext/common/FileDescriptor.h +5 -0
- data/ext/common/InstanceDirectory.h +240 -0
- data/ext/common/Logging.cpp +38 -13
- data/ext/common/Logging.h +53 -22
- data/ext/common/MemoryKit/mbuf.cpp +413 -0
- data/ext/common/MemoryKit/mbuf.h +266 -0
- data/ext/common/MemoryKit/palloc.cpp +337 -0
- data/ext/common/MemoryKit/palloc.h +121 -0
- data/ext/common/ResourceLocator.h +62 -6
- data/ext/common/SafeLibev.h +4 -4
- data/ext/common/ServerKit/AcceptLoadBalancer.h +275 -0
- data/ext/common/ServerKit/Channel.h +747 -0
- data/ext/common/ServerKit/Client.h +166 -0
- data/ext/common/ServerKit/ClientRef.h +130 -0
- data/ext/common/ServerKit/Context.h +129 -0
- data/ext/common/ServerKit/Errors.h +103 -0
- data/ext/common/ServerKit/FdSinkChannel.h +206 -0
- data/ext/common/ServerKit/FdSourceChannel.h +230 -0
- data/ext/common/ServerKit/FileBufferedChannel.h +1399 -0
- data/ext/common/ServerKit/FileBufferedFdSinkChannel.h +228 -0
- data/ext/common/ServerKit/HeaderTable.h +472 -0
- data/ext/common/ServerKit/Hooks.h +79 -0
- data/ext/common/ServerKit/HttpChunkedBodyParser.h +289 -0
- data/ext/common/ServerKit/HttpChunkedBodyParserState.h +70 -0
- data/ext/common/ServerKit/HttpClient.h +94 -0
- data/ext/common/ServerKit/HttpHeaderParser.h +477 -0
- data/ext/common/ServerKit/HttpHeaderParserState.h +60 -0
- data/ext/common/ServerKit/HttpRequest.h +276 -0
- data/ext/common/ServerKit/HttpRequestRef.h +130 -0
- data/ext/common/ServerKit/HttpServer.h +1152 -0
- data/ext/common/ServerKit/Implementation.cpp +47 -0
- data/ext/common/ServerKit/Server.h +1040 -0
- data/ext/common/ServerKit/http_parser.cpp +2259 -0
- data/ext/common/ServerKit/http_parser.h +330 -0
- data/ext/common/StaticString.h +8 -0
- data/ext/common/Utils.cpp +14 -12
- data/ext/common/Utils.h +9 -103
- data/ext/common/Utils/BufferedIO.h +1 -0
- data/ext/common/Utils/CachedFileStat.hpp +1 -7
- data/ext/common/Utils/DateParsing.h +379 -0
- data/ext/common/Utils/FileChangeChecker.h +3 -9
- data/ext/common/Utils/Hasher.cpp +52 -0
- data/ext/common/Utils/Hasher.h +58 -0
- data/ext/common/Utils/IOUtils.cpp +62 -62
- data/ext/common/Utils/JsonUtils.h +21 -0
- data/ext/common/Utils/OptionParsing.h +75 -0
- data/ext/common/Utils/StrIntUtils.cpp +112 -19
- data/ext/common/Utils/StrIntUtils.h +52 -12
- data/ext/common/Utils/StrIntUtilsNoStrictAliasing.cpp +174 -0
- data/ext/common/Utils/VariantMap.h +18 -7
- data/ext/common/Utils/modp_b64.cpp +290 -0
- data/ext/common/Utils/modp_b64.h +241 -0
- data/ext/common/Utils/modp_b64_data.h +479 -0
- data/ext/common/Utils/sysqueue.h +811 -0
- data/ext/common/agents/Base.cpp +71 -98
- data/ext/common/agents/Base.h +11 -3
- data/ext/common/agents/HelperAgent/AdminServer.h +690 -0
- data/ext/common/agents/HelperAgent/Main.cpp +899 -487
- data/ext/common/agents/HelperAgent/OptionParser.h +311 -0
- data/ext/common/agents/HelperAgent/RequestHandler.h +315 -2548
- data/ext/common/agents/HelperAgent/RequestHandler/AppResponse.h +225 -0
- data/ext/common/agents/HelperAgent/RequestHandler/BufferBody.cpp +93 -0
- data/ext/common/agents/HelperAgent/RequestHandler/CheckoutSession.cpp +346 -0
- data/ext/common/agents/HelperAgent/RequestHandler/Client.h +54 -0
- data/ext/common/agents/HelperAgent/RequestHandler/ForwardResponse.cpp +846 -0
- data/ext/common/agents/HelperAgent/RequestHandler/Hooks.cpp +231 -0
- data/ext/common/agents/HelperAgent/RequestHandler/InitRequest.cpp +434 -0
- data/ext/common/agents/HelperAgent/RequestHandler/Request.h +149 -0
- data/ext/common/agents/HelperAgent/RequestHandler/SendRequest.cpp +887 -0
- data/ext/common/agents/HelperAgent/RequestHandler/TurboCaching.h +293 -0
- data/ext/common/agents/HelperAgent/RequestHandler/Utils.cpp +301 -0
- data/ext/common/agents/HelperAgent/ResponseCache.h +624 -0
- data/ext/common/agents/HelperAgent/SystemMetricsTool.cpp +21 -23
- data/ext/common/agents/LoggingAgent/AdminServer.h +369 -0
- data/ext/common/agents/LoggingAgent/LoggingServer.h +1 -0
- data/ext/common/agents/LoggingAgent/Main.cpp +422 -215
- data/ext/common/agents/LoggingAgent/OptionParser.h +167 -0
- data/ext/common/agents/LoggingAgent/RemoteSender.h +3 -3
- data/ext/common/agents/Main.cpp +107 -0
- data/ext/common/agents/SpawnPreparer/Main.cpp +207 -0
- data/ext/common/agents/TempDirToucher/Main.cpp +429 -0
- data/ext/common/agents/Watchdog/AdminServer.h +390 -0
- data/ext/common/agents/Watchdog/AgentWatcher.cpp +7 -5
- data/ext/common/agents/Watchdog/HelperAgentWatcher.cpp +18 -39
- data/ext/common/agents/Watchdog/InstanceDirToucher.cpp +116 -0
- data/ext/common/agents/Watchdog/LoggingAgentWatcher.cpp +13 -17
- data/ext/common/agents/Watchdog/Main.cpp +743 -202
- data/ext/libeio/eio.c +17 -0
- data/ext/libeio/eio.h +2 -0
- data/ext/nginx/CacheLocationConfig.c +177 -198
- data/ext/nginx/CacheLocationConfig.c.erb +35 -22
- data/ext/nginx/Configuration.c +402 -236
- data/ext/nginx/Configuration.h +12 -5
- data/ext/nginx/ConfigurationCommands.c +35 -15
- data/ext/nginx/ConfigurationCommands.c.erb +4 -4
- data/ext/nginx/ConfigurationFields.h +9 -5
- data/ext/nginx/ConfigurationFields.h.erb +3 -1
- data/ext/nginx/ContentHandler.c +393 -362
- data/ext/nginx/CreateLocationConfig.c +8 -4
- data/ext/nginx/CreateLocationConfig.c.erb +8 -3
- data/ext/nginx/MergeLocationConfig.c +36 -6
- data/ext/nginx/MergeLocationConfig.c.erb +42 -1
- data/ext/nginx/ngx_http_passenger_module.c +28 -15
- data/ext/oxt/detail/backtrace_disabled.hpp +2 -1
- data/ext/oxt/detail/backtrace_enabled.hpp +15 -2
- data/ext/oxt/implementation.cpp +92 -20
- data/ext/oxt/thread.hpp +5 -0
- data/ext/ruby/extconf.rb +3 -6
- data/ext/ruby/passenger_native_support.c +13 -40
- data/helper-scripts/download_binaries/extconf.rb +4 -4
- data/helper-scripts/meteor-loader.rb +12 -112
- data/helper-scripts/node-loader.js +3 -91
- data/helper-scripts/rack-loader.rb +13 -14
- data/helper-scripts/rack-preloader.rb +16 -17
- data/helper-scripts/wsgi-loader.py +11 -7
- data/lib/phusion_passenger.rb +100 -79
- data/lib/phusion_passenger/abstract_installer.rb +28 -3
- data/lib/phusion_passenger/admin_tools.rb +3 -3
- data/lib/phusion_passenger/admin_tools/instance.rb +207 -0
- data/lib/phusion_passenger/admin_tools/instance_registry.rb +98 -0
- data/lib/phusion_passenger/apache2/config_options.rb +72 -22
- data/lib/phusion_passenger/common_library.rb +79 -14
- data/lib/phusion_passenger/config/about_command.rb +17 -23
- data/lib/phusion_passenger/config/admin_command_command.rb +175 -0
- data/lib/phusion_passenger/config/agent_compiler.rb +170 -0
- data/lib/phusion_passenger/config/command.rb +1 -4
- data/lib/phusion_passenger/config/compile_agent_command.rb +102 -0
- data/lib/phusion_passenger/config/compile_nginx_engine_command.rb +112 -0
- data/lib/phusion_passenger/config/detach_process_command.rb +32 -10
- data/lib/phusion_passenger/config/download_agent_command.rb +285 -0
- data/lib/phusion_passenger/config/download_nginx_engine_command.rb +281 -0
- data/lib/phusion_passenger/config/install_agent_command.rb +174 -0
- data/lib/phusion_passenger/config/install_standalone_runtime_command.rb +231 -0
- data/lib/phusion_passenger/config/installation_utils.rb +241 -0
- data/lib/phusion_passenger/config/list_instances_command.rb +13 -25
- data/lib/phusion_passenger/config/main.rb +43 -14
- data/lib/phusion_passenger/config/nginx_engine_compiler.rb +337 -0
- data/lib/phusion_passenger/config/reopen_logs_command.rb +110 -0
- data/lib/phusion_passenger/config/restart_app_command.rb +61 -14
- data/lib/phusion_passenger/config/system_metrics_command.rb +2 -1
- data/lib/phusion_passenger/config/utils.rb +64 -39
- data/lib/phusion_passenger/config/validate_install_command.rb +2 -2
- data/lib/phusion_passenger/constants.rb +27 -6
- data/lib/phusion_passenger/debug_logging.rb +32 -15
- data/lib/phusion_passenger/loader_shared_helpers.rb +2 -5
- data/lib/phusion_passenger/message_client.rb +21 -22
- data/lib/phusion_passenger/native_support.rb +26 -31
- data/lib/phusion_passenger/nginx/config_options.rb +32 -19
- data/lib/phusion_passenger/packaging.rb +7 -3
- data/lib/phusion_passenger/platform_info/cxx_portability.rb +1 -2
- data/lib/phusion_passenger/platform_info/depcheck_specs/libs.rb +3 -4
- data/lib/phusion_passenger/platform_info/operating_system.rb +6 -6
- data/lib/phusion_passenger/preloader_shared_helpers.rb +2 -2
- data/lib/phusion_passenger/rack/out_of_band_gc.rb +2 -2
- data/lib/phusion_passenger/rack/thread_handler_extension.rb +168 -65
- data/lib/phusion_passenger/request_handler.rb +47 -82
- data/lib/phusion_passenger/request_handler/thread_handler.rb +46 -10
- data/lib/phusion_passenger/ruby_core_enhancements.rb +25 -77
- data/lib/phusion_passenger/ruby_core_io_enhancements.rb +108 -0
- data/lib/phusion_passenger/standalone/app_finder.rb +39 -59
- data/lib/phusion_passenger/standalone/command.rb +27 -275
- data/lib/phusion_passenger/standalone/command2.rb +292 -0
- data/lib/phusion_passenger/standalone/config_utils.rb +87 -0
- data/lib/phusion_passenger/standalone/control_utils.rb +88 -0
- data/lib/phusion_passenger/standalone/main.rb +69 -71
- data/lib/phusion_passenger/standalone/start2_command.rb +799 -0
- data/lib/phusion_passenger/standalone/start_command.rb +406 -467
- data/lib/phusion_passenger/standalone/start_command/builtin_engine.rb +167 -0
- data/lib/phusion_passenger/standalone/start_command/nginx_engine.rb +165 -0
- data/lib/phusion_passenger/standalone/status_command.rb +64 -23
- data/lib/phusion_passenger/standalone/stop_command.rb +69 -32
- data/lib/phusion_passenger/standalone/version_command.rb +1 -5
- data/lib/phusion_passenger/utils.rb +0 -4
- data/lib/phusion_passenger/utils/json.rb +70 -4
- data/lib/phusion_passenger/utils/progress_bar.rb +56 -0
- data/lib/phusion_passenger/utils/tee_input.rb +3 -3
- data/lib/phusion_passenger/utils/unseekable_socket.rb +30 -0
- data/packaging/rpm/nginx_spec/nginx.spec.template +4 -3
- data/packaging/rpm/passenger_spec/passenger.spec.template +6 -10
- data/packaging/rpm/setup-system +2 -1
- data/resources/oss-binaries.phusionpassenger.com.crt +208 -0
- data/resources/templates/config/agent_compiler/confirm_enable_optimizations.txt.erb +5 -0
- data/resources/templates/config/installation_utils/cannot_create_user_support_binaries_dir.txt.erb +15 -0
- data/resources/templates/config/installation_utils/download_tool_missing.txt.erb +7 -0
- data/resources/templates/config/installation_utils/passenger_not_installed_as_root.txt.erb +12 -0
- data/resources/templates/config/installation_utils/support_binaries_dir_not_writable_despite_running_as_root.txt.erb +13 -0
- data/resources/templates/config/installation_utils/unexpected_filesystem_problem.txt.erb +16 -0
- data/{packaging/debian/debian_specs/passenger/patches/series → resources/templates/config/installation_utils/user_support_binaries_dir_not_writable.txt.erb} +0 -0
- data/resources/templates/nginx/nginx_module_sources_not_available.txt.erb +2 -2
- data/resources/templates/standalone/config.erb +14 -16
- data/resources/templates/standalone/possible_solutions_for_download_and_extraction_problems.txt.erb +1 -1
- data/test/.rspec +1 -0
- data/test/cxx/ApplicationPool2/DirectSpawnerTest.cpp +20 -17
- data/test/cxx/ApplicationPool2/OptionsTest.cpp +0 -14
- data/test/cxx/ApplicationPool2/PoolTest.cpp +113 -90
- data/test/cxx/ApplicationPool2/ProcessTest.cpp +18 -27
- data/test/cxx/ApplicationPool2/SmartSpawnerTest.cpp +51 -53
- data/test/cxx/ApplicationPool2/SpawnerTestCases.cpp +55 -57
- data/test/cxx/BufferedIOTest.cpp +40 -40
- data/test/cxx/CxxTestMain.cpp +4 -22
- data/test/cxx/DataStructures/LStringTest.cpp +275 -0
- data/test/cxx/DataStructures/StringKeyTableTest.cpp +199 -0
- data/test/cxx/MemoryKit/MbufTest.cpp +213 -0
- data/test/cxx/MessageServerTest.cpp +62 -55
- data/test/cxx/RequestHandlerTest.cpp +26 -27
- data/test/cxx/ServerKit/ChannelTest.cpp +1467 -0
- data/test/cxx/ServerKit/FileBufferedChannelTest.cpp +817 -0
- data/test/cxx/ServerKit/HeaderTableTest.cpp +171 -0
- data/test/cxx/ServerKit/HttpServerTest.cpp +1503 -0
- data/test/cxx/ServerKit/ServerTest.cpp +408 -0
- data/test/cxx/TestSupport.cpp +51 -15
- data/test/cxx/TestSupport.h +31 -21
- data/test/cxx/UnionStationTest.cpp +121 -122
- data/test/cxx/UtilsTest.cpp +9 -33
- data/test/integration_tests/apache2_tests.rb +65 -27
- data/test/integration_tests/downloaded_binaries_tests.rb +30 -6
- data/test/integration_tests/native_packaging_spec.rb +32 -17
- data/test/integration_tests/nginx_tests.rb +28 -10
- data/test/integration_tests/shared/example_webapp_tests.rb +40 -27
- data/test/integration_tests/standalone_tests.rb +232 -169
- data/test/ruby/debug_logging_spec.rb +44 -40
- data/test/ruby/rails3.0/preloader_spec.rb +1 -1
- data/test/ruby/rails3.1/preloader_spec.rb +1 -1
- data/test/ruby/rails3.2/preloader_spec.rb +1 -1
- data/test/ruby/rails4.0/preloader_spec.rb +1 -1
- data/test/ruby/rails4.1/preloader_spec.rb +1 -1
- data/test/ruby/request_handler_spec.rb +62 -24
- data/test/ruby/shared/loader_sharedspec.rb +10 -9
- data/test/ruby/shared/rails/union_station_extensions_sharedspec.rb +23 -22
- data/test/ruby/spec_helper.rb +2 -11
- data/test/ruby/standalone/runtime_installer_spec.rb +15 -13
- data/test/ruby/union_station_spec.rb +45 -40
- data/test/ruby/utils/tee_input_spec.rb +5 -5
- data/test/ruby/utils_spec.rb +3 -39
- data/test/stub/apache2/httpd.conf.erb +5 -2
- data/test/stub/nginx/nginx.conf.erb +3 -1
- data/test/support/apache2_controller.rb +25 -25
- data/test/support/nginx_controller.rb +14 -14
- data/test/support/test_helper.rb +74 -75
- metadata +439 -643
- metadata.gz.asc +7 -7
- data/ext/common/MultiLibeio.cpp +0 -204
- data/ext/common/MultiLibeio.h +0 -67
- data/ext/common/ServerInstanceDir.h +0 -402
- data/ext/common/Utils/Base64.cpp +0 -143
- data/ext/common/Utils/Base64.h +0 -83
- data/ext/common/Utils/HttpHeaderBufferer.h +0 -184
- data/ext/common/Utils/PriorityQueue.h +0 -54
- data/ext/common/Utils/StreamBoyerMooreHorspool.h +0 -512
- data/ext/common/Utils/fib.c +0 -699
- data/ext/common/Utils/fib.h +0 -101
- data/ext/common/Utils/fibpriv.h +0 -67
- data/ext/common/agents/EnvPrinter.c +0 -16
- data/ext/common/agents/HelperAgent/AgentOptions.h +0 -109
- data/ext/common/agents/HelperAgent/FileBackedPipe.h +0 -732
- data/ext/common/agents/HelperAgent/RequestHandler.cpp +0 -294
- data/ext/common/agents/HelperAgent/ScgiRequestParser.h +0 -457
- data/ext/common/agents/LoggingAgent/AdminController.h +0 -96
- data/ext/common/agents/SpawnPreparer.cpp +0 -206
- data/ext/common/agents/TempDirToucher.c +0 -383
- data/ext/common/agents/Watchdog/ServerInstanceDirToucher.cpp +0 -116
- data/helper-scripts/classic-rails-loader.rb +0 -166
- data/helper-scripts/classic-rails-preloader.rb +0 -193
- data/lib/phusion_passenger/admin_tools/server_instance.rb +0 -339
- data/lib/phusion_passenger/classic_rails/cgi_fixed.rb +0 -68
- data/lib/phusion_passenger/classic_rails/thread_handler_extension.rb +0 -40
- data/lib/phusion_passenger/platform_info/openssl.rb +0 -61
- data/lib/phusion_passenger/standalone/config_file.rb +0 -119
- data/lib/phusion_passenger/standalone/help_command.rb +0 -57
- data/lib/phusion_passenger/standalone/runtime_installer.rb +0 -712
- data/lib/phusion_passenger/standalone/runtime_locator.rb +0 -170
- data/lib/phusion_passenger/standalone/utils.rb +0 -58
- data/lib/phusion_passenger/utils/tmpdir.rb +0 -69
- data/packaging/debian/LICENSE.md +0 -19
- data/packaging/debian/README.md +0 -320
- data/packaging/debian/Vagrantfile +0 -25
- data/packaging/debian/build +0 -210
- data/packaging/debian/debian_specs/nginx/changelog +0 -1989
- data/packaging/debian/debian_specs/nginx/compat.erb +0 -5
- data/packaging/debian/debian_specs/nginx/conf/fastcgi.conf +0 -25
- data/packaging/debian/debian_specs/nginx/conf/fastcgi_params +0 -24
- data/packaging/debian/debian_specs/nginx/conf/koi-utf +0 -109
- data/packaging/debian/debian_specs/nginx/conf/koi-win +0 -103
- data/packaging/debian/debian_specs/nginx/conf/mime.types +0 -89
- data/packaging/debian/debian_specs/nginx/conf/nginx.conf.erb +0 -97
- data/packaging/debian/debian_specs/nginx/conf/proxy_params +0 -4
- data/packaging/debian/debian_specs/nginx/conf/scgi_params +0 -16
- data/packaging/debian/debian_specs/nginx/conf/sites-available/default.erb +0 -93
- data/packaging/debian/debian_specs/nginx/conf/snippets/fastcgi-php.conf +0 -13
- data/packaging/debian/debian_specs/nginx/conf/snippets/snakeoil.conf +0 -5
- data/packaging/debian/debian_specs/nginx/conf/uwsgi_params +0 -16
- data/packaging/debian/debian_specs/nginx/conf/win-utf +0 -125
- data/packaging/debian/debian_specs/nginx/control.erb +0 -226
- data/packaging/debian/debian_specs/nginx/copyright +0 -196
- data/packaging/debian/debian_specs/nginx/debian-full.lintian-overrides +0 -1
- data/packaging/debian/debian_specs/nginx/gbp.conf +0 -2
- data/packaging/debian/debian_specs/nginx/help/docs/fcgiwrap +0 -14
- data/packaging/debian/debian_specs/nginx/help/docs/php +0 -119
- data/packaging/debian/debian_specs/nginx/help/docs/support-irc +0 -28
- data/packaging/debian/debian_specs/nginx/help/docs/upstream +0 -51
- data/packaging/debian/debian_specs/nginx/help/examples/drupal +0 -114
- data/packaging/debian/debian_specs/nginx/help/examples/http +0 -59
- data/packaging/debian/debian_specs/nginx/help/examples/mail +0 -30
- data/packaging/debian/debian_specs/nginx/help/examples/mailman +0 -59
- data/packaging/debian/debian_specs/nginx/help/examples/nginx.conf +0 -34
- data/packaging/debian/debian_specs/nginx/help/examples/nginx_modsite +0 -162
- data/packaging/debian/debian_specs/nginx/help/examples/virtual_hosts +0 -155
- data/packaging/debian/debian_specs/nginx/help/examples/wordpress +0 -74
- data/packaging/debian/debian_specs/nginx/helpers.rb +0 -41
- data/packaging/debian/debian_specs/nginx/index-debian.html.in +0 -32
- data/packaging/debian/debian_specs/nginx/index-ubuntu.html.in +0 -32
- data/packaging/debian/debian_specs/nginx/index.html.erb +0 -10
- data/packaging/debian/debian_specs/nginx/modules/README.Modules-versions +0 -65
- data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/README.markdown +0 -510
- data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/config +0 -5
- data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/doc/HttpHeadersMoreModule.wiki +0 -395
- data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/src/ddebug.h +0 -119
- data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/src/ngx_http_headers_more_filter_module.c +0 -348
- data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/src/ngx_http_headers_more_filter_module.h +0 -80
- data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/src/ngx_http_headers_more_headers_in.c +0 -826
- data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/src/ngx_http_headers_more_headers_in.h +0 -26
- data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/src/ngx_http_headers_more_headers_out.c +0 -716
- data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/src/ngx_http_headers_more_headers_out.h +0 -26
- data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/src/ngx_http_headers_more_util.c +0 -380
- data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/src/ngx_http_headers_more_util.h +0 -52
- data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/util/build.sh +0 -32
- data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/valgrind.suppress +0 -215
- data/packaging/debian/debian_specs/nginx/modules/nginx-auth-pam/ChangeLog +0 -35
- data/packaging/debian/debian_specs/nginx/modules/nginx-auth-pam/LICENSE +0 -25
- data/packaging/debian/debian_specs/nginx/modules/nginx-auth-pam/README.md +0 -93
- data/packaging/debian/debian_specs/nginx/modules/nginx-auth-pam/config +0 -4
- data/packaging/debian/debian_specs/nginx/modules/nginx-auth-pam/ngx_http_auth_pam_module.c +0 -462
- data/packaging/debian/debian_specs/nginx/modules/nginx-cache-purge/CHANGES +0 -66
- data/packaging/debian/debian_specs/nginx/modules/nginx-cache-purge/LICENSE +0 -26
- data/packaging/debian/debian_specs/nginx/modules/nginx-cache-purge/README.md +0 -171
- data/packaging/debian/debian_specs/nginx/modules/nginx-cache-purge/TODO.md +0 -7
- data/packaging/debian/debian_specs/nginx/modules/nginx-cache-purge/config +0 -21
- data/packaging/debian/debian_specs/nginx/modules/nginx-cache-purge/ngx_cache_purge_module.c +0 -1803
- data/packaging/debian/debian_specs/nginx/modules/nginx-dav-ext-module/README +0 -29
- data/packaging/debian/debian_specs/nginx/modules/nginx-dav-ext-module/config +0 -9
- data/packaging/debian/debian_specs/nginx/modules/nginx-dav-ext-module/ngx_http_dav_ext_module.c +0 -824
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/README +0 -139
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/README_AUTO_LIB +0 -395
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/TODO +0 -1
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/actions/array +0 -10
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/actions/palloc +0 -8
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/build +0 -597
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/data/action_replacements +0 -5
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/data/action_types +0 -12
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/data/conf_args +0 -22
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/data/conf_locs +0 -25
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/data/conf_macros +0 -35
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/data/contexts +0 -22
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/data/header_files +0 -3
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/data/headers +0 -4
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/data/module_dependencies +0 -5
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/data/modules_optional +0 -15
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/data/prefixes +0 -2
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/src/array.h +0 -7
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/src/conf_cmd_basic.h +0 -43
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/src/conf_merge.h +0 -78
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/src/palloc.h +0 -6
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/text/autogen +0 -12
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/config +0 -49
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/docs/core/action_macros +0 -63
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/docs/core/conf_cmds +0 -62
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/docs/modules/set_var +0 -124
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/docs/patches/more_logging_info +0 -48
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/docs/upstream/list +0 -45
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/examples/README +0 -12
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/examples/http/set_var/config +0 -4
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/examples/http/set_var/ngx_http_set_var_examples_module.c +0 -136
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/ngx_auto_lib_core +0 -797
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/notes/CHANGES +0 -17
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/notes/LICENSE +0 -24
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/objs/ndk_array.h +0 -113
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/objs/ndk_conf_cmd_basic.h +0 -2203
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/objs/ndk_conf_cmd_extra.h +0 -5423
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/objs/ndk_conf_merge.h +0 -227
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/objs/ndk_config.c +0 -72
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/objs/ndk_config.h +0 -98
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/objs/ndk_includes.h +0 -66
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/objs/ndk_palloc.h +0 -112
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/patches/auto_config +0 -16
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/patches/expose_rewrite_functions +0 -291
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/patches/rewrite_phase_handler +0 -19
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/hash/md5.h +0 -117
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/hash/murmurhash2.c +0 -77
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/hash/sha.h +0 -200
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk.c +0 -155
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk.h +0 -58
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_buf.c +0 -43
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_buf.h +0 -5
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_complex_path.c +0 -129
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_complex_path.h +0 -30
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_complex_value.c +0 -192
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_complex_value.h +0 -21
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_conf_file.c +0 -396
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_conf_file.h +0 -44
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_debug.c +0 -72
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_debug.h +0 -171
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_encoding.c +0 -57
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_encoding.h +0 -12
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_hash.c +0 -82
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_hash.h +0 -45
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_http.c +0 -138
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_http.h +0 -3
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_http_headers.h +0 -35
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_log.c +0 -3
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_log.h +0 -165
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_parse.h +0 -67
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_path.c +0 -583
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_path.h +0 -22
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_process.c +0 -20
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_process.h +0 -12
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_regex.c +0 -215
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_regex.h +0 -7
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_rewrite.c +0 -103
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_rewrite.h +0 -26
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_set_var.c +0 -602
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_set_var.h +0 -44
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_string.c +0 -434
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_string.h +0 -37
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_string_util.h +0 -14
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_upstream_list.c +0 -205
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_upstream_list.h +0 -27
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_uri.c +0 -45
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_uri.h +0 -6
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/LICENSE +0 -25
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/README.markdown +0 -1850
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/config +0 -5
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/doc/HttpEchoModule.wiki +0 -1558
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ddebug.h +0 -109
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_echo.c +0 -344
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_echo.h +0 -25
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_filter.c +0 -282
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_filter.h +0 -15
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_foreach.c +0 -183
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_foreach.h +0 -16
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_handler.c +0 -429
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_handler.h +0 -18
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_location.c +0 -178
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_location.h +0 -13
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_module.c +0 -667
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_module.h +0 -137
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_request_info.c +0 -452
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_request_info.h +0 -31
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_sleep.c +0 -208
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_sleep.h +0 -16
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_subrequest.c +0 -788
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_subrequest.h +0 -19
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_timer.c +0 -96
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_timer.h +0 -13
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_util.c +0 -298
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_util.h +0 -58
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_var.c +0 -110
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_var.h +0 -9
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/util/build.sh +0 -45
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/util/releng +0 -8
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/util/wiki2pod.pl +0 -131
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/valgrind.suppress +0 -38
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/LICENCE +0 -24
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/README +0 -206
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/changelog.txt +0 -54
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/config +0 -26
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/protocol.txt +0 -191
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/ngx_http_push_defs.c +0 -59
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/ngx_http_push_defs.h +0 -73
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/ngx_http_push_module.c +0 -783
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/ngx_http_push_module.h +0 -31
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/ngx_http_push_module_setup.c +0 -361
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/ngx_http_push_types.h +0 -120
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/store/memory/store.c +0 -1180
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/store/memory/store.h +0 -1
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/store/ngx_http_push_module_ipc.c +0 -146
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/store/ngx_http_push_module_ipc.h +0 -5
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/store/ngx_http_push_store.h +0 -51
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/store/ngx_rwlock.c +0 -178
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/store/ngx_rwlock.h +0 -5
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/store/rbtree_util.c +0 -246
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/store/rbtree_util.h +0 -9
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/Changes +0 -51
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/README.markdown +0 -6954
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/config +0 -363
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/doc/HttpLuaModule.wiki +0 -5898
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/dtrace/ngx_lua_provider.d +0 -61
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/misc/recv-until-pm/Makefile +0 -3
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/misc/recv-until-pm/lib/RecvUntil.pm +0 -138
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/misc/recv-until-pm/t/sanity.t +0 -140
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/api/ngx_http_lua_api.h +0 -52
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ddebug.h +0 -82
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_accessby.c +0 -377
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_accessby.h +0 -22
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_api.c +0 -77
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_args.c +0 -537
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_args.h +0 -20
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_bodyfilterby.c +0 -632
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_bodyfilterby.h +0 -31
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_cache.c +0 -296
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_cache.h +0 -24
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_capturefilter.c +0 -175
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_capturefilter.h +0 -20
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_clfactory.c +0 -887
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_clfactory.h +0 -22
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_common.h +0 -478
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_config.c +0 -67
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_config.h +0 -19
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_consts.c +0 -148
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_consts.h +0 -20
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_contentby.c +0 -369
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_contentby.h +0 -26
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_control.c +0 -483
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_control.h +0 -20
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_coroutine.c +0 -379
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_coroutine.h +0 -23
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_ctx.c +0 -216
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_ctx.h +0 -23
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_directive.c +0 -1081
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_directive.h +0 -56
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_exception.c +0 -58
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_exception.h +0 -33
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_headerfilterby.c +0 -302
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_headerfilterby.h +0 -29
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_headers.c +0 -1370
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_headers.h +0 -22
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_headers_in.c +0 -782
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_headers_in.h +0 -22
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_headers_out.c +0 -625
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_headers_out.h +0 -23
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_initby.c +0 -42
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_initby.h +0 -23
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_initworkerby.c +0 -320
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_initworkerby.h +0 -25
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_log.c +0 -300
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_log.h +0 -20
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_logby.c +0 -227
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_logby.h +0 -22
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_misc.c +0 -252
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_misc.h +0 -20
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_module.c +0 -924
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_ndk.c +0 -184
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_ndk.h +0 -21
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_output.c +0 -794
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_output.h +0 -28
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_pcrefix.c +0 -106
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_pcrefix.h +0 -23
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_phase.c +0 -94
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_phase.h +0 -13
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_probe.h +0 -85
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_regex.c +0 -2468
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_regex.h +0 -22
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_req_body.c +0 -1169
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_req_body.h +0 -20
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_req_method.c +0 -252
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_req_method.h +0 -19
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_rewriteby.c +0 -351
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_rewriteby.h +0 -22
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_script.c +0 -538
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_script.h +0 -86
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_setby.c +0 -216
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_setby.h +0 -15
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_shdict.c +0 -1844
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_shdict.h +0 -52
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_sleep.c +0 -191
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_sleep.h +0 -20
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_socket_tcp.c +0 -5314
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_socket_tcp.h +0 -156
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_socket_udp.c +0 -1624
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_socket_udp.h +0 -56
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_string.c +0 -704
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_string.h +0 -20
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_subrequest.c +0 -1741
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_subrequest.h +0 -46
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_time.c +0 -278
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_time.h +0 -21
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_timer.c +0 -661
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_timer.h +0 -20
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_uri.c +0 -110
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_uri.h +0 -20
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_uthread.c +0 -283
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_uthread.h +0 -36
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_util.c +0 -3972
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_util.h +0 -423
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_variable.c +0 -499
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_variable.h +0 -20
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_worker.c +0 -64
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_worker.h +0 -17
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/tapset/ngx_lua.stp +0 -5
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/util/build.sh +0 -39
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/util/build2.sh +0 -55
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/util/fix-comments +0 -27
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/util/gdbinit +0 -415
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/util/ngx-links +0 -62
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/util/reindex +0 -64
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/util/releng +0 -8
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/util/retab +0 -8
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/util/revim +0 -102
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/util/run_test.sh +0 -10
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/util/update-readme.sh +0 -4
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/valgrind.suppress +0 -144
- data/packaging/debian/debian_specs/nginx/modules/nginx-upload-progress/CHANGES +0 -107
- data/packaging/debian/debian_specs/nginx/modules/nginx-upload-progress/LICENSE +0 -25
- data/packaging/debian/debian_specs/nginx/modules/nginx-upload-progress/Makefile +0 -8
- data/packaging/debian/debian_specs/nginx/modules/nginx-upload-progress/README +0 -329
- data/packaging/debian/debian_specs/nginx/modules/nginx-upload-progress/config +0 -3
- data/packaging/debian/debian_specs/nginx/modules/nginx-upload-progress/ngx_http_uploadprogress_module.c +0 -1774
- data/packaging/debian/debian_specs/nginx/modules/nginx-upstream-fair/README +0 -53
- data/packaging/debian/debian_specs/nginx/modules/nginx-upstream-fair/config +0 -3
- data/packaging/debian/debian_specs/nginx/modules/nginx-upstream-fair/ngx_http_upstream_fair_module.c +0 -1356
- data/packaging/debian/debian_specs/nginx/modules/ngx-fancyindex/CHANGELOG.md +0 -37
- data/packaging/debian/debian_specs/nginx/modules/ngx-fancyindex/HACKING.md +0 -24
- data/packaging/debian/debian_specs/nginx/modules/ngx-fancyindex/LICENSE +0 -20
- data/packaging/debian/debian_specs/nginx/modules/ngx-fancyindex/README.rst +0 -182
- data/packaging/debian/debian_specs/nginx/modules/ngx-fancyindex/config +0 -8
- data/packaging/debian/debian_specs/nginx/modules/ngx-fancyindex/nginx-0.6-support.patch +0 -23
- data/packaging/debian/debian_specs/nginx/modules/ngx-fancyindex/ngx_http_fancyindex_module.c +0 -1305
- data/packaging/debian/debian_specs/nginx/modules/ngx-fancyindex/template.awk +0 -52
- data/packaging/debian/debian_specs/nginx/modules/ngx-fancyindex/template.h +0 -103
- data/packaging/debian/debian_specs/nginx/modules/ngx-fancyindex/template.html +0 -102
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/CHANGES +0 -37
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/README +0 -141
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/config +0 -3
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/doc/README.google_code_home_page.wiki +0 -120
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/doc/README.html +0 -199
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/doc/README.wiki +0 -123
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/ngx_http_subs_filter_module.c +0 -1298
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/README +0 -275
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Module/AutoInstall.pm +0 -820
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Module/Install.pm +0 -470
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Module/Install/AutoInstall.pm +0 -82
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Module/Install/Base.pm +0 -83
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Module/Install/Can.pm +0 -81
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Module/Install/Fetch.pm +0 -93
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Module/Install/Include.pm +0 -34
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Module/Install/Makefile.pm +0 -415
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Module/Install/Metadata.pm +0 -716
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Module/Install/TestBase.pm +0 -29
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Module/Install/Win32.pm +0 -64
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Module/Install/WriteAll.pm +0 -63
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Spiffy.pm +0 -539
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Test/Base.pm +0 -682
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Test/Base/Filter.pm +0 -341
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Test/Builder.pm +0 -1413
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Test/Builder/Module.pm +0 -81
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Test/More.pm +0 -735
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/lib/Test/Nginx.pm +0 -315
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/lib/Test/Nginx/LWP.pm +0 -524
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/lib/Test/Nginx/Socket.pm +0 -1749
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/lib/Test/Nginx/Util.pm +0 -874
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/t/subs.t +0 -136
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/t/subs_capture.t +0 -32
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/t/subs_fix_string.t +0 -32
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/t/subs_regex.t +0 -108
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/t/subs_types.t +0 -59
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/test.sh +0 -5
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/util/update-readme.sh +0 -7
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/util/wiki2google_code_homepage.pl +0 -29
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/util/wiki2pod.pl +0 -129
- data/packaging/debian/debian_specs/nginx/nginx-common.NEWS +0 -135
- data/packaging/debian/debian_specs/nginx/nginx-common.README.Debian +0 -45
- data/packaging/debian/debian_specs/nginx/nginx-common.dirs.erb +0 -32
- data/packaging/debian/debian_specs/nginx/nginx-common.install +0 -3
- data/packaging/debian/debian_specs/nginx/nginx-common.lintian-overrides +0 -2
- data/packaging/debian/debian_specs/nginx/nginx-common.manpages +0 -1
- data/packaging/debian/debian_specs/nginx/nginx-common.nginx.default +0 -10
- data/packaging/debian/debian_specs/nginx/nginx-common.nginx.init.erb +0 -214
- data/packaging/debian/debian_specs/nginx/nginx-common.nginx.logrotate +0 -18
- data/packaging/debian/debian_specs/nginx/nginx-common.nginx.service.erb +0 -37
- data/packaging/debian/debian_specs/nginx/nginx-common.postinst.erb +0 -66
- data/packaging/debian/debian_specs/nginx/nginx-common.postrm.erb +0 -46
- data/packaging/debian/debian_specs/nginx/nginx-common.preinst +0 -47
- data/packaging/debian/debian_specs/nginx/nginx-common.prerm.erb +0 -28
- data/packaging/debian/debian_specs/nginx/nginx-doc.docs +0 -2
- data/packaging/debian/debian_specs/nginx/nginx-doc.examples +0 -1
- data/packaging/debian/debian_specs/nginx/nginx-extras.install.erb +0 -17
- data/packaging/debian/debian_specs/nginx/nginx-extras.lintian-overrides +0 -1
- data/packaging/debian/debian_specs/nginx/nginx-extras.postinst.erb +0 -44
- data/packaging/debian/debian_specs/nginx/nginx-extras.prerm +0 -22
- data/packaging/debian/debian_specs/nginx/nginx.1 +0 -47
- data/packaging/debian/debian_specs/nginx/patches/perl-use-dpkg-buildflags.patch +0 -23
- data/packaging/debian/debian_specs/nginx/patches/series +0 -1
- data/packaging/debian/debian_specs/nginx/rules.erb +0 -185
- data/packaging/debian/debian_specs/nginx/source/format +0 -1
- data/packaging/debian/debian_specs/nginx/tests/control +0 -4
- data/packaging/debian/debian_specs/nginx/ufw/nginx +0 -14
- data/packaging/debian/debian_specs/nginx/upstream/signing-key.asc +0 -34
- data/packaging/debian/debian_specs/nginx/watch +0 -3
- data/packaging/debian/debian_specs/passenger/README.Debian +0 -12
- data/packaging/debian/debian_specs/passenger/changelog +0 -316
- data/packaging/debian/debian_specs/passenger/compat +0 -1
- data/packaging/debian/debian_specs/passenger/control.erb +0 -123
- data/packaging/debian/debian_specs/passenger/copyright +0 -385
- data/packaging/debian/debian_specs/passenger/helpers.rb +0 -24
- data/packaging/debian/debian_specs/passenger/libapache2-mod-passenger.install +0 -3
- data/packaging/debian/debian_specs/passenger/libapache2-mod-passenger.postinst +0 -36
- data/packaging/debian/debian_specs/passenger/libapache2-mod-passenger.prerm +0 -15
- data/packaging/debian/debian_specs/passenger/locations.ini.erb +0 -14
- data/packaging/debian/debian_specs/passenger/passenger-dev.install.erb +0 -3
- data/packaging/debian/debian_specs/passenger/passenger-doc.install.erb +0 -2
- data/packaging/debian/debian_specs/passenger/passenger.conf +0 -6
- data/packaging/debian/debian_specs/passenger/passenger.docs +0 -4
- data/packaging/debian/debian_specs/passenger/passenger.install.erb +0 -16
- data/packaging/debian/debian_specs/passenger/passenger.load +0 -3
- data/packaging/debian/debian_specs/passenger/passenger.manpages +0 -3
- data/packaging/debian/debian_specs/passenger/passenger_free_ruby.c +0 -29
- data/packaging/debian/debian_specs/passenger/passenger_ruby_utils.c +0 -54
- data/packaging/debian/debian_specs/passenger/passenger_system_ruby.c.erb +0 -37
- data/packaging/debian/debian_specs/passenger/rules.erb +0 -84
- data/packaging/debian/debian_specs/passenger/source/format +0 -1
- data/packaging/debian/debian_specs/passenger_enterprise/README.Debian +0 -12
- data/packaging/debian/debian_specs/passenger_enterprise/changelog +0 -316
- data/packaging/debian/debian_specs/passenger_enterprise/compat +0 -1
- data/packaging/debian/debian_specs/passenger_enterprise/control.erb +0 -123
- data/packaging/debian/debian_specs/passenger_enterprise/copyright +0 -385
- data/packaging/debian/debian_specs/passenger_enterprise/helpers.rb +0 -2
- data/packaging/debian/debian_specs/passenger_enterprise/libapache2-mod-passenger-enterprise.install +0 -3
- data/packaging/debian/debian_specs/passenger_enterprise/libapache2-mod-passenger-enterprise.postinst +0 -36
- data/packaging/debian/debian_specs/passenger_enterprise/libapache2-mod-passenger-enterprise.prerm +0 -15
- data/packaging/debian/debian_specs/passenger_enterprise/locations.ini.erb +0 -14
- data/packaging/debian/debian_specs/passenger_enterprise/passenger-enterprise-dev.install.erb +0 -3
- data/packaging/debian/debian_specs/passenger_enterprise/passenger-enterprise-doc.install.erb +0 -2
- data/packaging/debian/debian_specs/passenger_enterprise/passenger-enterprise.docs +0 -4
- data/packaging/debian/debian_specs/passenger_enterprise/passenger-enterprise.install.erb +0 -14
- data/packaging/debian/debian_specs/passenger_enterprise/passenger-enterprise.manpages +0 -3
- data/packaging/debian/debian_specs/passenger_enterprise/passenger.conf +0 -6
- data/packaging/debian/debian_specs/passenger_enterprise/passenger.load +0 -3
- data/packaging/debian/debian_specs/passenger_enterprise/passenger_free_ruby.c.erb +0 -1
- data/packaging/debian/debian_specs/passenger_enterprise/passenger_ruby_utils.c.erb +0 -1
- data/packaging/debian/debian_specs/passenger_enterprise/passenger_system_ruby.c.erb +0 -1
- data/packaging/debian/debian_specs/passenger_enterprise/patches/series +0 -0
- data/packaging/debian/debian_specs/passenger_enterprise/rules.erb +0 -84
- data/packaging/debian/debian_specs/passenger_enterprise/source/format +0 -1
- data/packaging/debian/docker_images/Makefile +0 -38
- data/packaging/debian/docker_images/buildbox/CONTAINER_VERSION.txt +0 -0
- data/packaging/debian/docker_images/buildbox/Dockerfile +0 -3
- data/packaging/debian/docker_images/buildbox/Gemfile +0 -9
- data/packaging/debian/docker_images/buildbox/Gemfile.lock +0 -42
- data/packaging/debian/docker_images/buildbox/install.sh +0 -85
- data/packaging/debian/docker_images/buildbox/pbuilderrc +0 -4
- data/packaging/debian/docker_images/buildbox/sudoers.conf +0 -6
- data/packaging/debian/docker_images/setup-buildbox-docker-image +0 -7
- data/packaging/debian/docker_images/setup-testbox-docker-image-debian-6 +0 -7
- data/packaging/debian/docker_images/setup-testbox-docker-image-debian-7 +0 -7
- data/packaging/debian/docker_images/setup-testbox-docker-image-debian-8 +0 -7
- data/packaging/debian/docker_images/setup-testbox-docker-image-ubuntu-12.04 +0 -7
- data/packaging/debian/docker_images/setup-testbox-docker-image-ubuntu-14.04 +0 -7
- data/packaging/debian/docker_images/setup-testbox-docker-image-ubuntu-15.04 +0 -7
- data/packaging/debian/docker_images/setup-testbox-docker-image-ubuntu-15.10 +0 -7
- data/packaging/debian/docker_images/testbox-debian-6/Dockerfile +0 -3
- data/packaging/debian/docker_images/testbox-debian-6/Gemfile +0 -2
- data/packaging/debian/docker_images/testbox-debian-6/Gemfile.lock +0 -23
- data/packaging/debian/docker_images/testbox-debian-6/argparse.py +0 -2374
- data/packaging/debian/docker_images/testbox-debian-6/install.sh +0 -78
- data/packaging/debian/docker_images/testbox-debian-7/Dockerfile +0 -3
- data/packaging/debian/docker_images/testbox-debian-7/Gemfile +0 -2
- data/packaging/debian/docker_images/testbox-debian-7/Gemfile.lock +0 -23
- data/packaging/debian/docker_images/testbox-debian-7/install.sh +0 -71
- data/packaging/debian/docker_images/testbox-debian-8/Dockerfile +0 -3
- data/packaging/debian/docker_images/testbox-debian-8/Gemfile +0 -2
- data/packaging/debian/docker_images/testbox-debian-8/Gemfile.lock +0 -23
- data/packaging/debian/docker_images/testbox-debian-8/install.sh +0 -70
- data/packaging/debian/docker_images/testbox-ubuntu-12.04/Dockerfile +0 -3
- data/packaging/debian/docker_images/testbox-ubuntu-12.04/Gemfile +0 -2
- data/packaging/debian/docker_images/testbox-ubuntu-12.04/Gemfile.lock +0 -23
- data/packaging/debian/docker_images/testbox-ubuntu-12.04/install.sh +0 -69
- data/packaging/debian/docker_images/testbox-ubuntu-14.04/Dockerfile +0 -3
- data/packaging/debian/docker_images/testbox-ubuntu-14.04/Gemfile +0 -2
- data/packaging/debian/docker_images/testbox-ubuntu-14.04/Gemfile.lock +0 -23
- data/packaging/debian/docker_images/testbox-ubuntu-14.04/install.sh +0 -69
- data/packaging/debian/docker_images/testbox-ubuntu-15.04/Dockerfile +0 -3
- data/packaging/debian/docker_images/testbox-ubuntu-15.04/Gemfile +0 -2
- data/packaging/debian/docker_images/testbox-ubuntu-15.04/Gemfile.lock +0 -23
- data/packaging/debian/docker_images/testbox-ubuntu-15.04/install.sh +0 -69
- data/packaging/debian/docker_images/testbox-ubuntu-15.10/Dockerfile +0 -3
- data/packaging/debian/docker_images/testbox-ubuntu-15.10/Gemfile +0 -2
- data/packaging/debian/docker_images/testbox-ubuntu-15.10/Gemfile.lock +0 -23
- data/packaging/debian/docker_images/testbox-ubuntu-15.10/install.sh +0 -69
- data/packaging/debian/internal/build/Rakefile +0 -235
- data/packaging/debian/internal/build/build-passenger-orig-tarball.sh +0 -76
- data/packaging/debian/internal/build/build-source-package.rb +0 -121
- data/packaging/debian/internal/build/download-nginx-orig-tarball.sh +0 -17
- data/packaging/debian/internal/build/rakefile_support.rb +0 -96
- data/packaging/debian/internal/build/setup-environment-essentials.sh +0 -15
- data/packaging/debian/internal/build/setup-environment.sh +0 -29
- data/packaging/debian/internal/lib/distro_info.rb +0 -82
- data/packaging/debian/internal/lib/distro_info.sh +0 -303
- data/packaging/debian/internal/lib/distro_info.sh.erb +0 -65
- data/packaging/debian/internal/lib/library.sh +0 -83
- data/packaging/debian/internal/lib/preprocessor.rb +0 -173
- data/packaging/debian/internal/lib/tracking.rb +0 -95
- data/packaging/debian/internal/lib/tracking_category.rb +0 -45
- data/packaging/debian/internal/lib/tracking_database.rb +0 -132
- data/packaging/debian/internal/lib/tracking_task.rb +0 -148
- data/packaging/debian/internal/lib/utils.rb +0 -78
- data/packaging/debian/internal/publish/Rakefile +0 -97
- data/packaging/debian/internal/publish/oss-binaries.phusionpassenger.com-fingerprint.txt +0 -1
- data/packaging/debian/internal/publish/packagecloud_fingerprint.txt +0 -1
- data/packaging/debian/internal/publish/passenger_website_fingerprint.txt +0 -1
- data/packaging/debian/internal/publish/preinit.sh +0 -7
- data/packaging/debian/internal/publish/rakefile_support.rb +0 -183
- data/packaging/debian/internal/scripts/gpg_noninteractive/gpg +0 -11
- data/packaging/debian/internal/scripts/initccache.sh +0 -35
- data/packaging/debian/internal/scripts/inituidgid.sh +0 -19
- data/packaging/debian/internal/scripts/my_init +0 -340
- data/packaging/debian/internal/scripts/pin_certificates +0 -34
- data/packaging/debian/internal/scripts/regen_distro_info_script.sh +0 -3
- data/packaging/debian/internal/scripts/setup-vagrant.sh +0 -12
- data/packaging/debian/internal/scripts/setuser +0 -31
- data/packaging/debian/internal/shell/initpbuilder.sh +0 -3
- data/packaging/debian/internal/shell/preinit.sh +0 -28
- data/packaging/debian/internal/shell/sudoers.conf +0 -1
- data/packaging/debian/internal/test/apache/apache-24.conf +0 -5
- data/packaging/debian/internal/test/apache/apache-pre-24.conf +0 -4
- data/packaging/debian/internal/test/apache/vhost.conf +0 -17
- data/packaging/debian/internal/test/misc/config.json +0 -15
- data/packaging/debian/internal/test/misc/hosts.conf +0 -4
- data/packaging/debian/internal/test/misc/init.sh +0 -25
- data/packaging/debian/internal/test/misc/nodejs_test_app.js +0 -6
- data/packaging/debian/internal/test/misc/python_test_app.py +0 -3
- data/packaging/debian/internal/test/misc/ruby_test_app.rb +0 -5
- data/packaging/debian/internal/test/misc/test_support.rb +0 -61
- data/packaging/debian/internal/test/nginx/vhost.conf +0 -23
- data/packaging/debian/internal/test/system_web_server_test.rb +0 -126
- data/packaging/debian/internal/test/test.sh +0 -141
- data/packaging/debian/jenkins/publish/clear_caches.rb +0 -48
- data/packaging/debian/jenkins/publish/publish.sh +0 -69
- data/packaging/debian/jenkins/test/test.sh +0 -63
- data/packaging/debian/passenger_apt_automation.sublime-project +0 -14
- data/packaging/debian/publish +0 -172
- data/packaging/debian/shell +0 -116
- data/packaging/debian/test +0 -142
- data/packaging/rpm/passenger_spec/rubygem-passenger-4.0.18-gcc47-include-sys_types.patch +0 -45
- data/test/cxx/Base64Test.cpp +0 -50
- data/test/cxx/FileBackedPipeTest.cpp +0 -626
- data/test/cxx/HttpHeaderBuffererTest.cpp +0 -257
- data/test/cxx/ScgiRequestParserTest.cpp +0 -423
- data/test/cxx/ServerInstanceDirTest.cpp +0 -175
- data/test/ruby/admin_tools_spec.rb +0 -360
- data/test/ruby/classic_rails/loader_spec.rb +0 -46
- data/test/ruby/classic_rails/preloader_spec.rb +0 -52
- data/test/ruby/standalone/runtime_locator_spec.rb +0 -214
- data/test/stub/rails2.3/Rakefile +0 -10
- data/test/stub/rails2.3/app/controllers/application_controller.rb +0 -10
- data/test/stub/rails2.3/app/controllers/bar_controller_1.rb +0 -5
- data/test/stub/rails2.3/app/controllers/bar_controller_2.rb +0 -5
- data/test/stub/rails2.3/app/controllers/foo_controller.rb +0 -21
- data/test/stub/rails2.3/app/helpers/application_helper.rb +0 -3
- data/test/stub/rails2.3/app/helpers/bar_helper.rb +0 -2
- data/test/stub/rails2.3/app/helpers/foo_helper.rb +0 -2
- data/test/stub/rails2.3/config/boot.rb +0 -110
- data/test/stub/rails2.3/config/database.yml +0 -19
- data/test/stub/rails2.3/config/environment.rb +0 -62
- data/test/stub/rails2.3/config/environments/development.rb +0 -17
- data/test/stub/rails2.3/config/environments/production.rb +0 -18
- data/test/stub/rails2.3/config/environments/staging.rb +0 -18
- data/test/stub/rails2.3/config/initializers/inflections.rb +0 -10
- data/test/stub/rails2.3/config/initializers/mime_types.rb +0 -5
- data/test/stub/rails2.3/config/routes.rb +0 -35
- data/test/stub/rails2.3/log/.gitignore +0 -1
- data/test/stub/rails2.3/public/.gitignore +0 -1
- data/test/stub/rails2.3/script/about +0 -3
- data/test/stub/rails2.3/script/console +0 -3
- data/test/stub/rails2.3/script/dbconsole +0 -3
- data/test/stub/rails2.3/script/destroy +0 -3
- data/test/stub/rails2.3/script/generate +0 -3
- data/test/stub/rails2.3/script/performance/benchmarker +0 -3
- data/test/stub/rails2.3/script/performance/profiler +0 -3
- data/test/stub/rails2.3/script/performance/request +0 -3
- data/test/stub/rails2.3/script/plugin +0 -3
- data/test/stub/rails2.3/script/process/inspector +0 -3
- data/test/stub/rails2.3/script/process/reaper +0 -3
- data/test/stub/rails2.3/script/process/spawner +0 -3
- data/test/stub/rails2.3/script/runner +0 -3
- data/test/stub/rails2.3/script/server +0 -3
- data/test/stub/rails2.3/tmp/cache/.gitignore +0 -1
- data/test/stub/rails2.3/tmp/pids/.gitignore +0 -1
- data/test/stub/rails2.3/tmp/sessions/.gitignore +0 -1
- data/test/stub/rails2.3/tmp/sockets/.gitignore +0 -1
@@ -0,0 +1,46 @@
|
|
1
|
+
/////////////////////////////////////////////////////////////////////////////
|
2
|
+
//
|
3
|
+
// (C) Copyright Ion Gaztanaga 2006-2012
|
4
|
+
//
|
5
|
+
// Distributed under the Boost Software License, Version 1.0.
|
6
|
+
// (See accompanying file LICENSE_1_0.txt or copy at
|
7
|
+
// http://www.boost.org/LICENSE_1_0.txt)
|
8
|
+
//
|
9
|
+
// See http://www.boost.org/libs/intrusive for documentation.
|
10
|
+
//
|
11
|
+
/////////////////////////////////////////////////////////////////////////////
|
12
|
+
|
13
|
+
#ifndef BOOST_INTRUSIVE_TRIVIAL_VALUE_TRAITS_HPP
|
14
|
+
#define BOOST_INTRUSIVE_TRIVIAL_VALUE_TRAITS_HPP
|
15
|
+
|
16
|
+
#include <boost/intrusive/link_mode.hpp>
|
17
|
+
#include <boost/intrusive/pointer_traits.hpp>
|
18
|
+
|
19
|
+
namespace boost {
|
20
|
+
namespace intrusive {
|
21
|
+
|
22
|
+
//!This value traits template is used to create value traits
|
23
|
+
//!from user defined node traits where value_traits::value_type and
|
24
|
+
//!node_traits::node should be equal
|
25
|
+
template<class NodeTraits, link_mode_type LinkMode = normal_link>
|
26
|
+
struct trivial_value_traits
|
27
|
+
{
|
28
|
+
typedef NodeTraits node_traits;
|
29
|
+
typedef typename node_traits::node_ptr node_ptr;
|
30
|
+
typedef typename node_traits::const_node_ptr const_node_ptr;
|
31
|
+
typedef typename node_traits::node value_type;
|
32
|
+
typedef node_ptr pointer;
|
33
|
+
typedef const_node_ptr const_pointer;
|
34
|
+
static const link_mode_type link_mode = LinkMode;
|
35
|
+
static node_ptr to_node_ptr (value_type &value)
|
36
|
+
{ return pointer_traits<node_ptr>::pointer_to(value); }
|
37
|
+
static const_node_ptr to_node_ptr (const value_type &value)
|
38
|
+
{ return pointer_traits<const_node_ptr>::pointer_to(value); }
|
39
|
+
static const pointer & to_value_ptr(const node_ptr &n) { return n; }
|
40
|
+
static const const_pointer &to_value_ptr(const const_node_ptr &n) { return n; }
|
41
|
+
};
|
42
|
+
|
43
|
+
} //namespace intrusive
|
44
|
+
} //namespace boost
|
45
|
+
|
46
|
+
#endif //BOOST_INTRUSIVE_TRIVIAL_VALUE_TRAITS_HPP
|
@@ -0,0 +1,2115 @@
|
|
1
|
+
/////////////////////////////////////////////////////////////////////////////
|
2
|
+
//
|
3
|
+
// (C) Copyright Olaf Krzikalla 2004-2006.
|
4
|
+
// (C) Copyright Ion Gaztanaga 2006-2012
|
5
|
+
//
|
6
|
+
// Distributed under the Boost Software License, Version 1.0.
|
7
|
+
// (See accompanying file LICENSE_1_0.txt or copy at
|
8
|
+
// http://www.boost.org/LICENSE_1_0.txt)
|
9
|
+
//
|
10
|
+
// See http://www.boost.org/libs/intrusive for documentation.
|
11
|
+
//
|
12
|
+
/////////////////////////////////////////////////////////////////////////////
|
13
|
+
#ifndef BOOST_INTRUSIVE_UNORDERED_SET_HPP
|
14
|
+
#define BOOST_INTRUSIVE_UNORDERED_SET_HPP
|
15
|
+
|
16
|
+
#include <boost/intrusive/detail/config_begin.hpp>
|
17
|
+
#include <boost/intrusive/intrusive_fwd.hpp>
|
18
|
+
#include <boost/intrusive/hashtable.hpp>
|
19
|
+
#include <boost/move/move.hpp>
|
20
|
+
#include <iterator>
|
21
|
+
|
22
|
+
|
23
|
+
namespace boost {
|
24
|
+
namespace intrusive {
|
25
|
+
|
26
|
+
//! The class template unordered_set is an intrusive container, that mimics most of
|
27
|
+
//! the interface of std::tr1::unordered_set as described in the C++ TR1.
|
28
|
+
//!
|
29
|
+
//! unordered_set is a semi-intrusive container: each object to be stored in the
|
30
|
+
//! container must contain a proper hook, but the container also needs
|
31
|
+
//! additional auxiliary memory to work: unordered_set needs a pointer to an array
|
32
|
+
//! of type `bucket_type` to be passed in the constructor. This bucket array must
|
33
|
+
//! have at least the same lifetime as the container. This makes the use of
|
34
|
+
//! unordered_set more complicated than purely intrusive containers.
|
35
|
+
//! `bucket_type` is default-constructible, copyable and assignable
|
36
|
+
//!
|
37
|
+
//! The template parameter \c T is the type to be managed by the container.
|
38
|
+
//! The user can specify additional options and if no options are provided
|
39
|
+
//! default options are used.
|
40
|
+
//!
|
41
|
+
//! The container supports the following options:
|
42
|
+
//! \c base_hook<>/member_hook<>/value_traits<>,
|
43
|
+
//! \c constant_time_size<>, \c size_type<>, \c hash<> and \c equal<>
|
44
|
+
//! \c bucket_traits<>, \c power_2_buckets<> and \c cache_begin<>.
|
45
|
+
//!
|
46
|
+
//! unordered_set only provides forward iterators but it provides 4 iterator types:
|
47
|
+
//! iterator and const_iterator to navigate through the whole container and
|
48
|
+
//! local_iterator and const_local_iterator to navigate through the values
|
49
|
+
//! stored in a single bucket. Local iterators are faster and smaller.
|
50
|
+
//!
|
51
|
+
//! It's not recommended to use non constant-time size unordered_sets because several
|
52
|
+
//! key functions, like "empty()", become non-constant time functions. Non
|
53
|
+
//! constant-time size unordered_sets are mainly provided to support auto-unlink hooks.
|
54
|
+
//!
|
55
|
+
//! unordered_set, unlike std::unordered_set, does not make automatic rehashings nor
|
56
|
+
//! offers functions related to a load factor. Rehashing can be explicitly requested
|
57
|
+
//! and the user must provide a new bucket array that will be used from that moment.
|
58
|
+
//!
|
59
|
+
//! Since no automatic rehashing is done, iterators are never invalidated when
|
60
|
+
//! inserting or erasing elements. Iterators are only invalidated when rehasing.
|
61
|
+
#if defined(BOOST_INTRUSIVE_DOXYGEN_INVOKED)
|
62
|
+
template<class T, class ...Options>
|
63
|
+
#else
|
64
|
+
template<class Config>
|
65
|
+
#endif
|
66
|
+
class unordered_set_impl
|
67
|
+
{
|
68
|
+
/// @cond
|
69
|
+
private:
|
70
|
+
typedef hashtable_impl<Config> table_type;
|
71
|
+
|
72
|
+
//! This class is
|
73
|
+
//! movable
|
74
|
+
BOOST_MOVABLE_BUT_NOT_COPYABLE(unordered_set_impl)
|
75
|
+
|
76
|
+
typedef table_type implementation_defined;
|
77
|
+
/// @endcond
|
78
|
+
|
79
|
+
public:
|
80
|
+
typedef typename implementation_defined::value_type value_type;
|
81
|
+
typedef typename implementation_defined::value_traits value_traits;
|
82
|
+
typedef typename implementation_defined::bucket_traits bucket_traits;
|
83
|
+
typedef typename implementation_defined::pointer pointer;
|
84
|
+
typedef typename implementation_defined::const_pointer const_pointer;
|
85
|
+
typedef typename implementation_defined::reference reference;
|
86
|
+
typedef typename implementation_defined::const_reference const_reference;
|
87
|
+
typedef typename implementation_defined::difference_type difference_type;
|
88
|
+
typedef typename implementation_defined::size_type size_type;
|
89
|
+
typedef typename implementation_defined::key_type key_type;
|
90
|
+
typedef typename implementation_defined::key_equal key_equal;
|
91
|
+
typedef typename implementation_defined::hasher hasher;
|
92
|
+
typedef typename implementation_defined::bucket_type bucket_type;
|
93
|
+
typedef typename implementation_defined::bucket_ptr bucket_ptr;
|
94
|
+
typedef typename implementation_defined::iterator iterator;
|
95
|
+
typedef typename implementation_defined::const_iterator const_iterator;
|
96
|
+
typedef typename implementation_defined::insert_commit_data insert_commit_data;
|
97
|
+
typedef typename implementation_defined::local_iterator local_iterator;
|
98
|
+
typedef typename implementation_defined::const_local_iterator const_local_iterator;
|
99
|
+
typedef typename implementation_defined::node_traits node_traits;
|
100
|
+
typedef typename implementation_defined::node node;
|
101
|
+
typedef typename implementation_defined::node_ptr node_ptr;
|
102
|
+
typedef typename implementation_defined::const_node_ptr const_node_ptr;
|
103
|
+
typedef typename implementation_defined::node_algorithms node_algorithms;
|
104
|
+
|
105
|
+
/// @cond
|
106
|
+
private:
|
107
|
+
table_type table_;
|
108
|
+
/// @endcond
|
109
|
+
|
110
|
+
public:
|
111
|
+
|
112
|
+
//! <b>Requires</b>: buckets must not be being used by any other resource.
|
113
|
+
//!
|
114
|
+
//! <b>Effects</b>: Constructs an empty unordered_set_impl, storing a reference
|
115
|
+
//! to the bucket array and copies of the hasher and equal functors.
|
116
|
+
//!
|
117
|
+
//! <b>Complexity</b>: Constant.
|
118
|
+
//!
|
119
|
+
//! <b>Throws</b>: If value_traits::node_traits::node
|
120
|
+
//! constructor throws (this does not happen with predefined Boost.Intrusive hooks)
|
121
|
+
//! or the copy constructor or invocation of Hash or Equal throws.
|
122
|
+
//!
|
123
|
+
//! <b>Notes</b>: buckets array must be disposed only after
|
124
|
+
//! *this is disposed.
|
125
|
+
explicit unordered_set_impl( const bucket_traits &b_traits
|
126
|
+
, const hasher & hash_func = hasher()
|
127
|
+
, const key_equal &equal_func = key_equal()
|
128
|
+
, const value_traits &v_traits = value_traits())
|
129
|
+
: table_(b_traits, hash_func, equal_func, v_traits)
|
130
|
+
{}
|
131
|
+
|
132
|
+
//! <b>Requires</b>: buckets must not be being used by any other resource
|
133
|
+
//! and Dereferencing iterator must yield an lvalue of type value_type.
|
134
|
+
//!
|
135
|
+
//! <b>Effects</b>: Constructs an empty unordered_set and inserts elements from
|
136
|
+
//! [b, e).
|
137
|
+
//!
|
138
|
+
//! <b>Complexity</b>: If N is std::distance(b, e): Average case is O(N)
|
139
|
+
//! (with a good hash function and with buckets_len >= N),worst case O(N2).
|
140
|
+
//!
|
141
|
+
//! <b>Throws</b>: If value_traits::node_traits::node
|
142
|
+
//! constructor throws (this does not happen with predefined Boost.Intrusive hooks)
|
143
|
+
//! or the copy constructor or invocation of hasher or key_equal throws.
|
144
|
+
//!
|
145
|
+
//! <b>Notes</b>: buckets array must be disposed only after
|
146
|
+
//! *this is disposed.
|
147
|
+
template<class Iterator>
|
148
|
+
unordered_set_impl( Iterator b
|
149
|
+
, Iterator e
|
150
|
+
, const bucket_traits &b_traits
|
151
|
+
, const hasher & hash_func = hasher()
|
152
|
+
, const key_equal &equal_func = key_equal()
|
153
|
+
, const value_traits &v_traits = value_traits())
|
154
|
+
: table_(b_traits, hash_func, equal_func, v_traits)
|
155
|
+
{ table_.insert_unique(b, e); }
|
156
|
+
|
157
|
+
//! <b>Effects</b>: to-do
|
158
|
+
//!
|
159
|
+
unordered_set_impl(BOOST_RV_REF(unordered_set_impl) x)
|
160
|
+
: table_(::boost::move(x.table_))
|
161
|
+
{}
|
162
|
+
|
163
|
+
//! <b>Effects</b>: to-do
|
164
|
+
//!
|
165
|
+
unordered_set_impl& operator=(BOOST_RV_REF(unordered_set_impl) x)
|
166
|
+
{ table_ = ::boost::move(x.table_); return *this; }
|
167
|
+
|
168
|
+
//! <b>Effects</b>: Detaches all elements from this. The objects in the unordered_set
|
169
|
+
//! are not deleted (i.e. no destructors are called).
|
170
|
+
//!
|
171
|
+
//! <b>Complexity</b>: Linear to the number of elements in the unordered_set, if
|
172
|
+
//! it's a safe-mode or auto-unlink value. Otherwise constant.
|
173
|
+
//!
|
174
|
+
//! <b>Throws</b>: Nothing.
|
175
|
+
~unordered_set_impl()
|
176
|
+
{}
|
177
|
+
|
178
|
+
//! <b>Effects</b>: Returns an iterator pointing to the beginning of the unordered_set.
|
179
|
+
//!
|
180
|
+
//! <b>Complexity</b>: Constant time if `cache_begin<>` is true. Amortized
|
181
|
+
//! constant time with worst case (empty unordered_set) O(this->bucket_count())
|
182
|
+
//!
|
183
|
+
//! <b>Throws</b>: Nothing.
|
184
|
+
iterator begin()
|
185
|
+
{ return table_.begin(); }
|
186
|
+
|
187
|
+
//! <b>Effects</b>: Returns a const_iterator pointing to the beginning
|
188
|
+
//! of the unordered_set.
|
189
|
+
//!
|
190
|
+
//! <b>Complexity</b>: Constant time if `cache_begin<>` is true. Amortized
|
191
|
+
//! constant time with worst case (empty unordered_set) O(this->bucket_count())
|
192
|
+
//!
|
193
|
+
//! <b>Throws</b>: Nothing.
|
194
|
+
const_iterator begin() const
|
195
|
+
{ return table_.begin(); }
|
196
|
+
|
197
|
+
//! <b>Effects</b>: Returns a const_iterator pointing to the beginning
|
198
|
+
//! of the unordered_set.
|
199
|
+
//!
|
200
|
+
//! <b>Complexity</b>: Constant time if `cache_begin<>` is true. Amortized
|
201
|
+
//! constant time with worst case (empty unordered_set) O(this->bucket_count())
|
202
|
+
//!
|
203
|
+
//! <b>Throws</b>: Nothing.
|
204
|
+
const_iterator cbegin() const
|
205
|
+
{ return table_.cbegin(); }
|
206
|
+
|
207
|
+
//! <b>Effects</b>: Returns an iterator pointing to the end of the unordered_set.
|
208
|
+
//!
|
209
|
+
//! <b>Complexity</b>: Constant.
|
210
|
+
//!
|
211
|
+
//! <b>Throws</b>: Nothing.
|
212
|
+
iterator end()
|
213
|
+
{ return table_.end(); }
|
214
|
+
|
215
|
+
//! <b>Effects</b>: Returns a const_iterator pointing to the end of the unordered_set.
|
216
|
+
//!
|
217
|
+
//! <b>Complexity</b>: Constant.
|
218
|
+
//!
|
219
|
+
//! <b>Throws</b>: Nothing.
|
220
|
+
const_iterator end() const
|
221
|
+
{ return table_.end(); }
|
222
|
+
|
223
|
+
//! <b>Effects</b>: Returns a const_iterator pointing to the end of the unordered_set.
|
224
|
+
//!
|
225
|
+
//! <b>Complexity</b>: Constant.
|
226
|
+
//!
|
227
|
+
//! <b>Throws</b>: Nothing.
|
228
|
+
const_iterator cend() const
|
229
|
+
{ return table_.cend(); }
|
230
|
+
|
231
|
+
//! <b>Effects</b>: Returns the hasher object used by the unordered_set.
|
232
|
+
//!
|
233
|
+
//! <b>Complexity</b>: Constant.
|
234
|
+
//!
|
235
|
+
//! <b>Throws</b>: If hasher copy-constructor throws.
|
236
|
+
hasher hash_function() const
|
237
|
+
{ return table_.hash_function(); }
|
238
|
+
|
239
|
+
//! <b>Effects</b>: Returns the key_equal object used by the unordered_set.
|
240
|
+
//!
|
241
|
+
//! <b>Complexity</b>: Constant.
|
242
|
+
//!
|
243
|
+
//! <b>Throws</b>: If key_equal copy-constructor throws.
|
244
|
+
key_equal key_eq() const
|
245
|
+
{ return table_.key_eq(); }
|
246
|
+
|
247
|
+
//! <b>Effects</b>: Returns true if the container is empty.
|
248
|
+
//!
|
249
|
+
//! <b>Complexity</b>: if constant-time size and cache_last options are disabled,
|
250
|
+
//! average constant time (worst case, with empty() == true: O(this->bucket_count()).
|
251
|
+
//! Otherwise constant.
|
252
|
+
//!
|
253
|
+
//! <b>Throws</b>: Nothing.
|
254
|
+
bool empty() const
|
255
|
+
{ return table_.empty(); }
|
256
|
+
|
257
|
+
//! <b>Effects</b>: Returns the number of elements stored in the unordered_set.
|
258
|
+
//!
|
259
|
+
//! <b>Complexity</b>: Linear to elements contained in *this if
|
260
|
+
//! constant-time size option is disabled. Constant-time otherwise.
|
261
|
+
//!
|
262
|
+
//! <b>Throws</b>: Nothing.
|
263
|
+
size_type size() const
|
264
|
+
{ return table_.size(); }
|
265
|
+
|
266
|
+
//! <b>Requires</b>: the hasher and the equality function unqualified swap
|
267
|
+
//! call should not throw.
|
268
|
+
//!
|
269
|
+
//! <b>Effects</b>: Swaps the contents of two unordered_sets.
|
270
|
+
//! Swaps also the contained bucket array and equality and hasher functors.
|
271
|
+
//!
|
272
|
+
//! <b>Complexity</b>: Constant.
|
273
|
+
//!
|
274
|
+
//! <b>Throws</b>: If the swap() call for the comparison or hash functors
|
275
|
+
//! found using ADL throw. Basic guarantee.
|
276
|
+
void swap(unordered_set_impl& other)
|
277
|
+
{ table_.swap(other.table_); }
|
278
|
+
|
279
|
+
//! <b>Requires</b>: Disposer::operator()(pointer) shouldn't throw.
|
280
|
+
//! Cloner should yield to nodes that compare equal and produce the same
|
281
|
+
//! hash than the original node.
|
282
|
+
//!
|
283
|
+
//! <b>Effects</b>: Erases all the elements from *this
|
284
|
+
//! calling Disposer::operator()(pointer), clones all the
|
285
|
+
//! elements from src calling Cloner::operator()(const_reference )
|
286
|
+
//! and inserts them on *this. The hash function and the equality
|
287
|
+
//! predicate are copied from the source.
|
288
|
+
//!
|
289
|
+
//! If store_hash option is true, this method does not use the hash function.
|
290
|
+
//!
|
291
|
+
//! If any operation throws, all cloned elements are unlinked and disposed
|
292
|
+
//! calling Disposer::operator()(pointer).
|
293
|
+
//!
|
294
|
+
//! <b>Complexity</b>: Linear to erased plus inserted elements.
|
295
|
+
//!
|
296
|
+
//! <b>Throws</b>: If cloner or hasher throw or hash or equality predicate copying
|
297
|
+
//! throws. Basic guarantee.
|
298
|
+
template <class Cloner, class Disposer>
|
299
|
+
void clone_from(const unordered_set_impl &src, Cloner cloner, Disposer disposer)
|
300
|
+
{ table_.clone_from(src.table_, cloner, disposer); }
|
301
|
+
|
302
|
+
//! <b>Requires</b>: value must be an lvalue
|
303
|
+
//!
|
304
|
+
//! <b>Effects</b>: Tries to inserts value into the unordered_set.
|
305
|
+
//!
|
306
|
+
//! <b>Returns</b>: If the value
|
307
|
+
//! is not already present inserts it and returns a pair containing the
|
308
|
+
//! iterator to the new value and true. If there is an equivalent value
|
309
|
+
//! returns a pair containing an iterator to the already present value
|
310
|
+
//! and false.
|
311
|
+
//!
|
312
|
+
//! <b>Complexity</b>: Average case O(1), worst case O(this->size()).
|
313
|
+
//!
|
314
|
+
//! <b>Throws</b>: If the internal hasher or the equality functor throws. Strong guarantee.
|
315
|
+
//!
|
316
|
+
//! <b>Note</b>: Does not affect the validity of iterators and references.
|
317
|
+
//! No copy-constructors are called.
|
318
|
+
std::pair<iterator, bool> insert(reference value)
|
319
|
+
{ return table_.insert_unique(value); }
|
320
|
+
|
321
|
+
//! <b>Requires</b>: Dereferencing iterator must yield an lvalue
|
322
|
+
//! of type value_type.
|
323
|
+
//!
|
324
|
+
//! <b>Effects</b>: Equivalent to this->insert(t) for each element in [b, e).
|
325
|
+
//!
|
326
|
+
//! <b>Complexity</b>: Average case O(N), where N is std::distance(b, e).
|
327
|
+
//! Worst case O(N*this->size()).
|
328
|
+
//!
|
329
|
+
//! <b>Throws</b>: If the internal hasher or the equality functor throws. Basic guarantee.
|
330
|
+
//!
|
331
|
+
//! <b>Note</b>: Does not affect the validity of iterators and references.
|
332
|
+
//! No copy-constructors are called.
|
333
|
+
template<class Iterator>
|
334
|
+
void insert(Iterator b, Iterator e)
|
335
|
+
{ table_.insert_unique(b, e); }
|
336
|
+
|
337
|
+
//! <b>Requires</b>: "hasher" must be a hash function that induces
|
338
|
+
//! the same hash values as the stored hasher. The difference is that
|
339
|
+
//! "hasher" hashes the given key instead of the value_type.
|
340
|
+
//!
|
341
|
+
//! "key_value_equal" must be a equality function that induces
|
342
|
+
//! the same equality as key_equal. The difference is that
|
343
|
+
//! "key_value_equal" compares an arbitrary key with the contained values.
|
344
|
+
//!
|
345
|
+
//! <b>Effects</b>: Checks if a value can be inserted in the unordered_set, using
|
346
|
+
//! a user provided key instead of the value itself.
|
347
|
+
//!
|
348
|
+
//! <b>Returns</b>: If there is an equivalent value
|
349
|
+
//! returns a pair containing an iterator to the already present value
|
350
|
+
//! and false. If the value can be inserted returns true in the returned
|
351
|
+
//! pair boolean and fills "commit_data" that is meant to be used with
|
352
|
+
//! the "insert_commit" function.
|
353
|
+
//!
|
354
|
+
//! <b>Complexity</b>: Average case O(1), worst case O(this->size()).
|
355
|
+
//!
|
356
|
+
//! <b>Throws</b>: If hasher or key_value_equal throw. Strong guarantee.
|
357
|
+
//!
|
358
|
+
//! <b>Notes</b>: This function is used to improve performance when constructing
|
359
|
+
//! a value_type is expensive: if there is an equivalent value
|
360
|
+
//! the constructed object must be discarded. Many times, the part of the
|
361
|
+
//! node that is used to impose the hash or the equality is much cheaper to
|
362
|
+
//! construct than the value_type and this function offers the possibility to
|
363
|
+
//! use that the part to check if the insertion will be successful.
|
364
|
+
//!
|
365
|
+
//! If the check is successful, the user can construct the value_type and use
|
366
|
+
//! "insert_commit" to insert the object in constant-time.
|
367
|
+
//!
|
368
|
+
//! "commit_data" remains valid for a subsequent "insert_commit" only if no more
|
369
|
+
//! objects are inserted or erased from the unordered_set.
|
370
|
+
//!
|
371
|
+
//! After a successful rehashing insert_commit_data remains valid.
|
372
|
+
template<class KeyType, class KeyHasher, class KeyValueEqual>
|
373
|
+
std::pair<iterator, bool> insert_check
|
374
|
+
(const KeyType &key, KeyHasher hasher, KeyValueEqual key_value_equal, insert_commit_data &commit_data)
|
375
|
+
{ return table_.insert_unique_check(key, hasher, key_value_equal, commit_data); }
|
376
|
+
|
377
|
+
//! <b>Requires</b>: value must be an lvalue of type value_type. commit_data
|
378
|
+
//! must have been obtained from a previous call to "insert_check".
|
379
|
+
//! No objects should have been inserted or erased from the unordered_set between
|
380
|
+
//! the "insert_check" that filled "commit_data" and the call to "insert_commit".
|
381
|
+
//!
|
382
|
+
//! <b>Effects</b>: Inserts the value in the unordered_set using the information obtained
|
383
|
+
//! from the "commit_data" that a previous "insert_check" filled.
|
384
|
+
//!
|
385
|
+
//! <b>Returns</b>: An iterator to the newly inserted object.
|
386
|
+
//!
|
387
|
+
//! <b>Complexity</b>: Constant time.
|
388
|
+
//!
|
389
|
+
//! <b>Throws</b>: Nothing.
|
390
|
+
//!
|
391
|
+
//! <b>Notes</b>: This function has only sense if a "insert_check" has been
|
392
|
+
//! previously executed to fill "commit_data". No value should be inserted or
|
393
|
+
//! erased between the "insert_check" and "insert_commit" calls.
|
394
|
+
//!
|
395
|
+
//! After a successful rehashing insert_commit_data remains valid.
|
396
|
+
iterator insert_commit(reference value, const insert_commit_data &commit_data)
|
397
|
+
{ return table_.insert_unique_commit(value, commit_data); }
|
398
|
+
|
399
|
+
//! <b>Effects</b>: Erases the element pointed to by i.
|
400
|
+
//!
|
401
|
+
//! <b>Complexity</b>: Average case O(1), worst case O(this->size()).
|
402
|
+
//!
|
403
|
+
//! <b>Throws</b>: Nothing.
|
404
|
+
//!
|
405
|
+
//! <b>Note</b>: Invalidates the iterators (but not the references)
|
406
|
+
//! to the erased element. No destructors are called.
|
407
|
+
void erase(const_iterator i)
|
408
|
+
{ table_.erase(i); }
|
409
|
+
|
410
|
+
//! <b>Effects</b>: Erases the range pointed to by b end e.
|
411
|
+
//!
|
412
|
+
//! <b>Complexity</b>: Average case O(std::distance(b, e)),
|
413
|
+
//! worst case O(this->size()).
|
414
|
+
//!
|
415
|
+
//! <b>Throws</b>: Nothing.
|
416
|
+
//!
|
417
|
+
//! <b>Note</b>: Invalidates the iterators (but not the references)
|
418
|
+
//! to the erased elements. No destructors are called.
|
419
|
+
void erase(const_iterator b, const_iterator e)
|
420
|
+
{ table_.erase(b, e); }
|
421
|
+
|
422
|
+
//! <b>Effects</b>: Erases all the elements with the given value.
|
423
|
+
//!
|
424
|
+
//! <b>Returns</b>: The number of erased elements.
|
425
|
+
//!
|
426
|
+
//! <b>Complexity</b>: Average case O(this->count(value)).
|
427
|
+
//! Worst case O(this->size()).
|
428
|
+
//!
|
429
|
+
//! <b>Throws</b>: If the internal hasher or the equality functor throws. Basic guarantee.
|
430
|
+
//!
|
431
|
+
//! <b>Note</b>: Invalidates the iterators (but not the references)
|
432
|
+
//! to the erased elements. No destructors are called.
|
433
|
+
size_type erase(const_reference value)
|
434
|
+
{ return table_.erase(value); }
|
435
|
+
|
436
|
+
//! <b>Requires</b>: "hasher" must be a hash function that induces
|
437
|
+
//! the same hash values as the stored hasher. The difference is that
|
438
|
+
//! "hasher" hashes the given key instead of the value_type.
|
439
|
+
//!
|
440
|
+
//! "key_value_equal" must be a equality function that induces
|
441
|
+
//! the same equality as key_equal. The difference is that
|
442
|
+
//! "key_value_equal" compares an arbitrary key with the contained values.
|
443
|
+
//!
|
444
|
+
//! <b>Effects</b>: Erases all the elements that have the same hash and
|
445
|
+
//! compare equal with the given key.
|
446
|
+
//!
|
447
|
+
//! <b>Returns</b>: The number of erased elements.
|
448
|
+
//!
|
449
|
+
//! <b>Complexity</b>: Average case O(this->count(value)).
|
450
|
+
//! Worst case O(this->size()).
|
451
|
+
//!
|
452
|
+
//! <b>Throws</b>: If hash_func or equal_func throw. Basic guarantee.
|
453
|
+
//!
|
454
|
+
//! <b>Note</b>: Invalidates the iterators (but not the references)
|
455
|
+
//! to the erased elements. No destructors are called.
|
456
|
+
template<class KeyType, class KeyHasher, class KeyValueEqual>
|
457
|
+
size_type erase(const KeyType& key, KeyHasher hash_func, KeyValueEqual equal_func)
|
458
|
+
{ return table_.erase(key, hash_func, equal_func); }
|
459
|
+
|
460
|
+
//! <b>Requires</b>: Disposer::operator()(pointer) shouldn't throw.
|
461
|
+
//!
|
462
|
+
//! <b>Effects</b>: Erases the element pointed to by i.
|
463
|
+
//! Disposer::operator()(pointer) is called for the removed element.
|
464
|
+
//!
|
465
|
+
//! <b>Complexity</b>: Average case O(1), worst case O(this->size()).
|
466
|
+
//!
|
467
|
+
//! <b>Throws</b>: Nothing.
|
468
|
+
//!
|
469
|
+
//! <b>Note</b>: Invalidates the iterators
|
470
|
+
//! to the erased elements.
|
471
|
+
template<class Disposer>
|
472
|
+
void erase_and_dispose(const_iterator i, Disposer disposer
|
473
|
+
/// @cond
|
474
|
+
, typename detail::enable_if_c<!detail::is_convertible<Disposer, const_iterator>::value >::type * = 0
|
475
|
+
/// @endcond
|
476
|
+
)
|
477
|
+
{ table_.erase_and_dispose(i, disposer); }
|
478
|
+
|
479
|
+
//! <b>Requires</b>: Disposer::operator()(pointer) shouldn't throw.
|
480
|
+
//!
|
481
|
+
//! <b>Effects</b>: Erases the range pointed to by b end e.
|
482
|
+
//! Disposer::operator()(pointer) is called for the removed elements.
|
483
|
+
//!
|
484
|
+
//! <b>Complexity</b>: Average case O(std::distance(b, e)),
|
485
|
+
//! worst case O(this->size()).
|
486
|
+
//!
|
487
|
+
//! <b>Throws</b>: Nothing.
|
488
|
+
//!
|
489
|
+
//! <b>Note</b>: Invalidates the iterators
|
490
|
+
//! to the erased elements.
|
491
|
+
template<class Disposer>
|
492
|
+
void erase_and_dispose(const_iterator b, const_iterator e, Disposer disposer)
|
493
|
+
{ table_.erase_and_dispose(b, e, disposer); }
|
494
|
+
|
495
|
+
//! <b>Requires</b>: Disposer::operator()(pointer) shouldn't throw.
|
496
|
+
//!
|
497
|
+
//! <b>Effects</b>: Erases all the elements with the given value.
|
498
|
+
//! Disposer::operator()(pointer) is called for the removed elements.
|
499
|
+
//!
|
500
|
+
//! <b>Returns</b>: The number of erased elements.
|
501
|
+
//!
|
502
|
+
//! <b>Complexity</b>: Average case O(this->count(value)).
|
503
|
+
//! Worst case O(this->size()).
|
504
|
+
//!
|
505
|
+
//! <b>Throws</b>: If the internal hasher or the equality functor throws. Basic guarantee.
|
506
|
+
//!
|
507
|
+
//! <b>Note</b>: Invalidates the iterators (but not the references)
|
508
|
+
//! to the erased elements. No destructors are called.
|
509
|
+
template<class Disposer>
|
510
|
+
size_type erase_and_dispose(const_reference value, Disposer disposer)
|
511
|
+
{ return table_.erase_and_dispose(value, disposer); }
|
512
|
+
|
513
|
+
//! <b>Requires</b>: Disposer::operator()(pointer) shouldn't throw.
|
514
|
+
//!
|
515
|
+
//! <b>Effects</b>: Erases all the elements with the given key.
|
516
|
+
//! according to the comparison functor "equal_func".
|
517
|
+
//! Disposer::operator()(pointer) is called for the removed elements.
|
518
|
+
//!
|
519
|
+
//! <b>Returns</b>: The number of erased elements.
|
520
|
+
//!
|
521
|
+
//! <b>Complexity</b>: Average case O(this->count(value)).
|
522
|
+
//! Worst case O(this->size()).
|
523
|
+
//!
|
524
|
+
//! <b>Throws</b>: If hash_func or equal_func throw. Basic guarantee.
|
525
|
+
//!
|
526
|
+
//! <b>Note</b>: Invalidates the iterators
|
527
|
+
//! to the erased elements.
|
528
|
+
template<class KeyType, class KeyHasher, class KeyValueEqual, class Disposer>
|
529
|
+
size_type erase_and_dispose(const KeyType& key, KeyHasher hash_func, KeyValueEqual equal_func, Disposer disposer)
|
530
|
+
{ return table_.erase_and_dispose(key, hash_func, equal_func, disposer); }
|
531
|
+
|
532
|
+
//! <b>Effects</b>: Erases all of the elements.
|
533
|
+
//!
|
534
|
+
//! <b>Complexity</b>: Linear to the number of elements on the container.
|
535
|
+
//! if it's a safe-mode or auto-unlink value_type. Constant time otherwise.
|
536
|
+
//!
|
537
|
+
//! <b>Throws</b>: Nothing.
|
538
|
+
//!
|
539
|
+
//! <b>Note</b>: Invalidates the iterators (but not the references)
|
540
|
+
//! to the erased elements. No destructors are called.
|
541
|
+
void clear()
|
542
|
+
{ return table_.clear(); }
|
543
|
+
|
544
|
+
//! <b>Requires</b>: Disposer::operator()(pointer) shouldn't throw.
|
545
|
+
//!
|
546
|
+
//! <b>Effects</b>: Erases all of the elements.
|
547
|
+
//!
|
548
|
+
//! <b>Complexity</b>: Linear to the number of elements on the container.
|
549
|
+
//! Disposer::operator()(pointer) is called for the removed elements.
|
550
|
+
//!
|
551
|
+
//! <b>Throws</b>: Nothing.
|
552
|
+
//!
|
553
|
+
//! <b>Note</b>: Invalidates the iterators (but not the references)
|
554
|
+
//! to the erased elements. No destructors are called.
|
555
|
+
template<class Disposer>
|
556
|
+
void clear_and_dispose(Disposer disposer)
|
557
|
+
{ return table_.clear_and_dispose(disposer); }
|
558
|
+
|
559
|
+
//! <b>Effects</b>: Returns the number of contained elements with the given value
|
560
|
+
//!
|
561
|
+
//! <b>Complexity</b>: Average case O(1), worst case O(this->size()).
|
562
|
+
//!
|
563
|
+
//! <b>Throws</b>: If the internal hasher or the equality functor throws.
|
564
|
+
size_type count(const_reference value) const
|
565
|
+
{ return table_.find(value) != end(); }
|
566
|
+
|
567
|
+
//! <b>Requires</b>: "hash_func" must be a hash function that induces
|
568
|
+
//! the same hash values as the stored hasher. The difference is that
|
569
|
+
//! "hash_func" hashes the given key instead of the value_type.
|
570
|
+
//!
|
571
|
+
//! "equal_func" must be a equality function that induces
|
572
|
+
//! the same equality as key_equal. The difference is that
|
573
|
+
//! "equal_func" compares an arbitrary key with the contained values.
|
574
|
+
//!
|
575
|
+
//! <b>Effects</b>: Returns the number of contained elements with the given key
|
576
|
+
//!
|
577
|
+
//! <b>Complexity</b>: Average case O(1), worst case O(this->size()).
|
578
|
+
//!
|
579
|
+
//! <b>Throws</b>: If hash_func or equal_func throw.
|
580
|
+
template<class KeyType, class KeyHasher, class KeyValueEqual>
|
581
|
+
size_type count(const KeyType& key, KeyHasher hash_func, KeyValueEqual equal_func) const
|
582
|
+
{ return table_.find(key, hash_func, equal_func) != end(); }
|
583
|
+
|
584
|
+
//! <b>Effects</b>: Finds an iterator to the first element is equal to
|
585
|
+
//! "value" or end() if that element does not exist.
|
586
|
+
//!
|
587
|
+
//! <b>Complexity</b>: Average case O(1), worst case O(this->size()).
|
588
|
+
//!
|
589
|
+
//! <b>Throws</b>: If the internal hasher or the equality functor throws.
|
590
|
+
iterator find(const_reference value)
|
591
|
+
{ return table_.find(value); }
|
592
|
+
|
593
|
+
//! <b>Requires</b>: "hash_func" must be a hash function that induces
|
594
|
+
//! the same hash values as the stored hasher. The difference is that
|
595
|
+
//! "hash_func" hashes the given key instead of the value_type.
|
596
|
+
//!
|
597
|
+
//! "equal_func" must be a equality function that induces
|
598
|
+
//! the same equality as key_equal. The difference is that
|
599
|
+
//! "equal_func" compares an arbitrary key with the contained values.
|
600
|
+
//!
|
601
|
+
//! <b>Effects</b>: Finds an iterator to the first element whose key is
|
602
|
+
//! "key" according to the given hasher and equality functor or end() if
|
603
|
+
//! that element does not exist.
|
604
|
+
//!
|
605
|
+
//! <b>Complexity</b>: Average case O(1), worst case O(this->size()).
|
606
|
+
//!
|
607
|
+
//! <b>Throws</b>: If hash_func or equal_func throw.
|
608
|
+
//!
|
609
|
+
//! <b>Note</b>: This function is used when constructing a value_type
|
610
|
+
//! is expensive and the value_type can be compared with a cheaper
|
611
|
+
//! key type. Usually this key is part of the value_type.
|
612
|
+
template<class KeyType, class KeyHasher, class KeyValueEqual>
|
613
|
+
iterator find(const KeyType& key, KeyHasher hash_func, KeyValueEqual equal_func)
|
614
|
+
{ return table_.find(key, hash_func, equal_func); }
|
615
|
+
|
616
|
+
//! <b>Effects</b>: Finds a const_iterator to the first element whose key is
|
617
|
+
//! "key" or end() if that element does not exist.
|
618
|
+
//!
|
619
|
+
//! <b>Complexity</b>: Average case O(1), worst case O(this->size()).
|
620
|
+
//!
|
621
|
+
//! <b>Throws</b>: If the internal hasher or the equality functor throws.
|
622
|
+
const_iterator find(const_reference value) const
|
623
|
+
{ return table_.find(value); }
|
624
|
+
|
625
|
+
//! <b>Requires</b>: "hash_func" must be a hash function that induces
|
626
|
+
//! the same hash values as the stored hasher. The difference is that
|
627
|
+
//! "hash_func" hashes the given key instead of the value_type.
|
628
|
+
//!
|
629
|
+
//! "equal_func" must be a equality function that induces
|
630
|
+
//! the same equality as key_equal. The difference is that
|
631
|
+
//! "equal_func" compares an arbitrary key with the contained values.
|
632
|
+
//!
|
633
|
+
//! <b>Effects</b>: Finds an iterator to the first element whose key is
|
634
|
+
//! "key" according to the given hasher and equality functor or end() if
|
635
|
+
//! that element does not exist.
|
636
|
+
//!
|
637
|
+
//! <b>Complexity</b>: Average case O(1), worst case O(this->size()).
|
638
|
+
//!
|
639
|
+
//! <b>Throws</b>: If hash_func or equal_func throw.
|
640
|
+
//!
|
641
|
+
//! <b>Note</b>: This function is used when constructing a value_type
|
642
|
+
//! is expensive and the value_type can be compared with a cheaper
|
643
|
+
//! key type. Usually this key is part of the value_type.
|
644
|
+
template<class KeyType, class KeyHasher, class KeyValueEqual>
|
645
|
+
const_iterator find(const KeyType& key, KeyHasher hash_func, KeyValueEqual equal_func) const
|
646
|
+
{ return table_.find(key, hash_func, equal_func); }
|
647
|
+
|
648
|
+
//! <b>Effects</b>: Returns a range containing all elements with values equivalent
|
649
|
+
//! to value. Returns std::make_pair(this->end(), this->end()) if no such
|
650
|
+
//! elements exist.
|
651
|
+
//!
|
652
|
+
//! <b>Complexity</b>: Average case O(this->count(value)). Worst case O(this->size()).
|
653
|
+
//!
|
654
|
+
//! <b>Throws</b>: If the internal hasher or the equality functor throws.
|
655
|
+
std::pair<iterator,iterator> equal_range(const_reference value)
|
656
|
+
{ return table_.equal_range(value); }
|
657
|
+
|
658
|
+
//! <b>Requires</b>: "hash_func" must be a hash function that induces
|
659
|
+
//! the same hash values as the stored hasher. The difference is that
|
660
|
+
//! "hash_func" hashes the given key instead of the value_type.
|
661
|
+
//!
|
662
|
+
//! "equal_func" must be a equality function that induces
|
663
|
+
//! the same equality as key_equal. The difference is that
|
664
|
+
//! "equal_func" compares an arbitrary key with the contained values.
|
665
|
+
//!
|
666
|
+
//! <b>Effects</b>: Returns a range containing all elements with equivalent
|
667
|
+
//! keys. Returns std::make_pair(this->end(), this->end()) if no such
|
668
|
+
//! elements exist.
|
669
|
+
//!
|
670
|
+
//! <b>Complexity</b>: Average case O(this->count(key, hash_func, hash_func)).
|
671
|
+
//! Worst case O(this->size()).
|
672
|
+
//!
|
673
|
+
//! <b>Throws</b>: If hash_func or the equal_func throw.
|
674
|
+
//!
|
675
|
+
//! <b>Note</b>: This function is used when constructing a value_type
|
676
|
+
//! is expensive and the value_type can be compared with a cheaper
|
677
|
+
//! key type. Usually this key is part of the value_type.
|
678
|
+
template<class KeyType, class KeyHasher, class KeyValueEqual>
|
679
|
+
std::pair<iterator,iterator> equal_range(const KeyType& key, KeyHasher hash_func, KeyValueEqual equal_func)
|
680
|
+
{ return table_.equal_range(key, hash_func, equal_func); }
|
681
|
+
|
682
|
+
//! <b>Effects</b>: Returns a range containing all elements with values equivalent
|
683
|
+
//! to value. Returns std::make_pair(this->end(), this->end()) if no such
|
684
|
+
//! elements exist.
|
685
|
+
//!
|
686
|
+
//! <b>Complexity</b>: Average case O(this->count(value)). Worst case O(this->size()).
|
687
|
+
//!
|
688
|
+
//! <b>Throws</b>: If the internal hasher or the equality functor throws.
|
689
|
+
std::pair<const_iterator, const_iterator>
|
690
|
+
equal_range(const_reference value) const
|
691
|
+
{ return table_.equal_range(value); }
|
692
|
+
|
693
|
+
//! <b>Requires</b>: "hash_func" must be a hash function that induces
|
694
|
+
//! the same hash values as the stored hasher. The difference is that
|
695
|
+
//! "hash_func" hashes the given key instead of the value_type.
|
696
|
+
//!
|
697
|
+
//! "equal_func" must be a equality function that induces
|
698
|
+
//! the same equality as key_equal. The difference is that
|
699
|
+
//! "equal_func" compares an arbitrary key with the contained values.
|
700
|
+
//!
|
701
|
+
//! <b>Effects</b>: Returns a range containing all elements with equivalent
|
702
|
+
//! keys. Returns std::make_pair(this->end(), this->end()) if no such
|
703
|
+
//! elements exist.
|
704
|
+
//!
|
705
|
+
//! <b>Complexity</b>: Average case O(this->count(key, hash_func, equal_func)).
|
706
|
+
//! Worst case O(this->size()).
|
707
|
+
//!
|
708
|
+
//! <b>Throws</b>: If the hash_func or equal_func throw.
|
709
|
+
//!
|
710
|
+
//! <b>Note</b>: This function is used when constructing a value_type
|
711
|
+
//! is expensive and the value_type can be compared with a cheaper
|
712
|
+
//! key type. Usually this key is part of the value_type.
|
713
|
+
template<class KeyType, class KeyHasher, class KeyValueEqual>
|
714
|
+
std::pair<const_iterator, const_iterator>
|
715
|
+
equal_range(const KeyType& key, KeyHasher hash_func, KeyValueEqual equal_func) const
|
716
|
+
{ return table_.equal_range(key, hash_func, equal_func); }
|
717
|
+
|
718
|
+
//! <b>Requires</b>: value must be an lvalue and shall be in a unordered_set of
|
719
|
+
//! appropriate type. Otherwise the behavior is undefined.
|
720
|
+
//!
|
721
|
+
//! <b>Effects</b>: Returns: a valid iterator belonging to the unordered_set
|
722
|
+
//! that points to the value
|
723
|
+
//!
|
724
|
+
//! <b>Complexity</b>: Constant.
|
725
|
+
//!
|
726
|
+
//! <b>Throws</b>: If the internal hash function throws.
|
727
|
+
iterator iterator_to(reference value)
|
728
|
+
{ return table_.iterator_to(value); }
|
729
|
+
|
730
|
+
//! <b>Requires</b>: value must be an lvalue and shall be in a unordered_set of
|
731
|
+
//! appropriate type. Otherwise the behavior is undefined.
|
732
|
+
//!
|
733
|
+
//! <b>Effects</b>: Returns: a valid const_iterator belonging to the
|
734
|
+
//! unordered_set that points to the value
|
735
|
+
//!
|
736
|
+
//! <b>Complexity</b>: Constant.
|
737
|
+
//!
|
738
|
+
//! <b>Throws</b>: If the internal hash function throws.
|
739
|
+
const_iterator iterator_to(const_reference value) const
|
740
|
+
{ return table_.iterator_to(value); }
|
741
|
+
|
742
|
+
//! <b>Requires</b>: value must be an lvalue and shall be in a unordered_set of
|
743
|
+
//! appropriate type. Otherwise the behavior is undefined.
|
744
|
+
//!
|
745
|
+
//! <b>Effects</b>: Returns: a valid local_iterator belonging to the unordered_set
|
746
|
+
//! that points to the value
|
747
|
+
//!
|
748
|
+
//! <b>Complexity</b>: Constant.
|
749
|
+
//!
|
750
|
+
//! <b>Throws</b>: Nothing.
|
751
|
+
//!
|
752
|
+
//! <b>Note</b>: This static function is available only if the <i>value traits</i>
|
753
|
+
//! is stateless.
|
754
|
+
static local_iterator s_local_iterator_to(reference value)
|
755
|
+
{ return table_type::s_local_iterator_to(value); }
|
756
|
+
|
757
|
+
//! <b>Requires</b>: value must be an lvalue and shall be in a unordered_set of
|
758
|
+
//! appropriate type. Otherwise the behavior is undefined.
|
759
|
+
//!
|
760
|
+
//! <b>Effects</b>: Returns: a valid const_local_iterator belonging to
|
761
|
+
//! the unordered_set that points to the value
|
762
|
+
//!
|
763
|
+
//! <b>Complexity</b>: Constant.
|
764
|
+
//!
|
765
|
+
//! <b>Throws</b>: Nothing.
|
766
|
+
//!
|
767
|
+
//! <b>Note</b>: This static function is available only if the <i>value traits</i>
|
768
|
+
//! is stateless.
|
769
|
+
static const_local_iterator s_local_iterator_to(const_reference value)
|
770
|
+
{ return table_type::s_local_iterator_to(value); }
|
771
|
+
|
772
|
+
//! <b>Requires</b>: value must be an lvalue and shall be in a unordered_set of
|
773
|
+
//! appropriate type. Otherwise the behavior is undefined.
|
774
|
+
//!
|
775
|
+
//! <b>Effects</b>: Returns: a valid local_iterator belonging to the unordered_set
|
776
|
+
//! that points to the value
|
777
|
+
//!
|
778
|
+
//! <b>Complexity</b>: Constant.
|
779
|
+
//!
|
780
|
+
//! <b>Throws</b>: Nothing.
|
781
|
+
local_iterator local_iterator_to(reference value)
|
782
|
+
{ return table_.local_iterator_to(value); }
|
783
|
+
|
784
|
+
//! <b>Requires</b>: value must be an lvalue and shall be in a unordered_set of
|
785
|
+
//! appropriate type. Otherwise the behavior is undefined.
|
786
|
+
//!
|
787
|
+
//! <b>Effects</b>: Returns: a valid const_local_iterator belonging to
|
788
|
+
//! the unordered_set that points to the value
|
789
|
+
//!
|
790
|
+
//! <b>Complexity</b>: Constant.
|
791
|
+
//!
|
792
|
+
//! <b>Throws</b>: Nothing.
|
793
|
+
const_local_iterator local_iterator_to(const_reference value) const
|
794
|
+
{ return table_.local_iterator_to(value); }
|
795
|
+
|
796
|
+
//! <b>Effects</b>: Returns the number of buckets passed in the constructor
|
797
|
+
//! or the last rehash function.
|
798
|
+
//!
|
799
|
+
//! <b>Complexity</b>: Constant.
|
800
|
+
//!
|
801
|
+
//! <b>Throws</b>: Nothing.
|
802
|
+
size_type bucket_count() const
|
803
|
+
{ return table_.bucket_count(); }
|
804
|
+
|
805
|
+
//! <b>Requires</b>: n is in the range [0, this->bucket_count()).
|
806
|
+
//!
|
807
|
+
//! <b>Effects</b>: Returns the number of elements in the nth bucket.
|
808
|
+
//!
|
809
|
+
//! <b>Complexity</b>: Constant.
|
810
|
+
//!
|
811
|
+
//! <b>Throws</b>: Nothing.
|
812
|
+
size_type bucket_size(size_type n) const
|
813
|
+
{ return table_.bucket_size(n); }
|
814
|
+
|
815
|
+
//! <b>Effects</b>: Returns the index of the bucket in which elements
|
816
|
+
//! with keys equivalent to k would be found, if any such element existed.
|
817
|
+
//!
|
818
|
+
//! <b>Complexity</b>: Constant.
|
819
|
+
//!
|
820
|
+
//! <b>Throws</b>: If the hash functor throws.
|
821
|
+
//!
|
822
|
+
//! <b>Note</b>: the return value is in the range [0, this->bucket_count()).
|
823
|
+
size_type bucket(const value_type& k) const
|
824
|
+
{ return table_.bucket(k); }
|
825
|
+
|
826
|
+
//! <b>Requires</b>: "hash_func" must be a hash function that induces
|
827
|
+
//! the same hash values as the stored hasher. The difference is that
|
828
|
+
//! "hash_func" hashes the given key instead of the value_type.
|
829
|
+
//!
|
830
|
+
//! <b>Effects</b>: Returns the index of the bucket in which elements
|
831
|
+
//! with keys equivalent to k would be found, if any such element existed.
|
832
|
+
//!
|
833
|
+
//! <b>Complexity</b>: Constant.
|
834
|
+
//!
|
835
|
+
//! <b>Throws</b>: If hash_func throws.
|
836
|
+
//!
|
837
|
+
//! <b>Note</b>: the return value is in the range [0, this->bucket_count()).
|
838
|
+
template<class KeyType, class KeyHasher>
|
839
|
+
size_type bucket(const KeyType& k, KeyHasher hash_func) const
|
840
|
+
{ return table_.bucket(k, hash_func); }
|
841
|
+
|
842
|
+
//! <b>Effects</b>: Returns the bucket array pointer passed in the constructor
|
843
|
+
//! or the last rehash function.
|
844
|
+
//!
|
845
|
+
//! <b>Complexity</b>: Constant.
|
846
|
+
//!
|
847
|
+
//! <b>Throws</b>: Nothing.
|
848
|
+
bucket_ptr bucket_pointer() const
|
849
|
+
{ return table_.bucket_pointer(); }
|
850
|
+
|
851
|
+
//! <b>Requires</b>: n is in the range [0, this->bucket_count()).
|
852
|
+
//!
|
853
|
+
//! <b>Effects</b>: Returns a local_iterator pointing to the beginning
|
854
|
+
//! of the sequence stored in the bucket n.
|
855
|
+
//!
|
856
|
+
//! <b>Complexity</b>: Constant.
|
857
|
+
//!
|
858
|
+
//! <b>Throws</b>: Nothing.
|
859
|
+
//!
|
860
|
+
//! <b>Note</b>: [this->begin(n), this->end(n)) is a valid range
|
861
|
+
//! containing all of the elements in the nth bucket.
|
862
|
+
local_iterator begin(size_type n)
|
863
|
+
{ return table_.begin(n); }
|
864
|
+
|
865
|
+
//! <b>Requires</b>: n is in the range [0, this->bucket_count()).
|
866
|
+
//!
|
867
|
+
//! <b>Effects</b>: Returns a const_local_iterator pointing to the beginning
|
868
|
+
//! of the sequence stored in the bucket n.
|
869
|
+
//!
|
870
|
+
//! <b>Complexity</b>: Constant.
|
871
|
+
//!
|
872
|
+
//! <b>Throws</b>: Nothing.
|
873
|
+
//!
|
874
|
+
//! <b>Note</b>: [this->begin(n), this->end(n)) is a valid range
|
875
|
+
//! containing all of the elements in the nth bucket.
|
876
|
+
const_local_iterator begin(size_type n) const
|
877
|
+
{ return table_.begin(n); }
|
878
|
+
|
879
|
+
//! <b>Requires</b>: n is in the range [0, this->bucket_count()).
|
880
|
+
//!
|
881
|
+
//! <b>Effects</b>: Returns a const_local_iterator pointing to the beginning
|
882
|
+
//! of the sequence stored in the bucket n.
|
883
|
+
//!
|
884
|
+
//! <b>Complexity</b>: Constant.
|
885
|
+
//!
|
886
|
+
//! <b>Throws</b>: Nothing.
|
887
|
+
//!
|
888
|
+
//! <b>Note</b>: [this->begin(n), this->end(n)) is a valid range
|
889
|
+
//! containing all of the elements in the nth bucket.
|
890
|
+
const_local_iterator cbegin(size_type n) const
|
891
|
+
{ return table_.cbegin(n); }
|
892
|
+
|
893
|
+
//! <b>Requires</b>: n is in the range [0, this->bucket_count()).
|
894
|
+
//!
|
895
|
+
//! <b>Effects</b>: Returns a local_iterator pointing to the end
|
896
|
+
//! of the sequence stored in the bucket n.
|
897
|
+
//!
|
898
|
+
//! <b>Complexity</b>: Constant.
|
899
|
+
//!
|
900
|
+
//! <b>Throws</b>: Nothing.
|
901
|
+
//!
|
902
|
+
//! <b>Note</b>: [this->begin(n), this->end(n)) is a valid range
|
903
|
+
//! containing all of the elements in the nth bucket.
|
904
|
+
local_iterator end(size_type n)
|
905
|
+
{ return table_.end(n); }
|
906
|
+
|
907
|
+
//! <b>Requires</b>: n is in the range [0, this->bucket_count()).
|
908
|
+
//!
|
909
|
+
//! <b>Effects</b>: Returns a const_local_iterator pointing to the end
|
910
|
+
//! of the sequence stored in the bucket n.
|
911
|
+
//!
|
912
|
+
//! <b>Complexity</b>: Constant.
|
913
|
+
//!
|
914
|
+
//! <b>Throws</b>: Nothing.
|
915
|
+
//!
|
916
|
+
//! <b>Note</b>: [this->begin(n), this->end(n)) is a valid range
|
917
|
+
//! containing all of the elements in the nth bucket.
|
918
|
+
const_local_iterator end(size_type n) const
|
919
|
+
{ return table_.end(n); }
|
920
|
+
|
921
|
+
//! <b>Requires</b>: n is in the range [0, this->bucket_count()).
|
922
|
+
//!
|
923
|
+
//! <b>Effects</b>: Returns a const_local_iterator pointing to the end
|
924
|
+
//! of the sequence stored in the bucket n.
|
925
|
+
//!
|
926
|
+
//! <b>Complexity</b>: Constant.
|
927
|
+
//!
|
928
|
+
//! <b>Throws</b>: Nothing.
|
929
|
+
//!
|
930
|
+
//! <b>Note</b>: [this->begin(n), this->end(n)) is a valid range
|
931
|
+
//! containing all of the elements in the nth bucket.
|
932
|
+
const_local_iterator cend(size_type n) const
|
933
|
+
{ return table_.cend(n); }
|
934
|
+
|
935
|
+
//! <b>Requires</b>: new_buckets must be a pointer to a new bucket array
|
936
|
+
//! or the same as the old bucket array. new_size is the length of the
|
937
|
+
//! the array pointed by new_buckets. If new_buckets == this->bucket_pointer()
|
938
|
+
//! n can be bigger or smaller than this->bucket_count().
|
939
|
+
//!
|
940
|
+
//! <b>Effects</b>: Updates the internal reference with the new bucket erases
|
941
|
+
//! the values from the old bucket and inserts then in the new one.
|
942
|
+
//!
|
943
|
+
//! If store_hash option is true, this method does not use the hash function.
|
944
|
+
//!
|
945
|
+
//! <b>Complexity</b>: Average case linear in this->size(), worst case quadratic.
|
946
|
+
//!
|
947
|
+
//! <b>Throws</b>: If the hasher functor throws. Basic guarantee.
|
948
|
+
void rehash(const bucket_traits &new_bucket_traits)
|
949
|
+
{ table_.rehash(new_bucket_traits); }
|
950
|
+
|
951
|
+
//! <b>Requires</b>:
|
952
|
+
//!
|
953
|
+
//! <b>Effects</b>:
|
954
|
+
//!
|
955
|
+
//! <b>Complexity</b>:
|
956
|
+
//!
|
957
|
+
//! <b>Throws</b>:
|
958
|
+
//!
|
959
|
+
//! <b>Note</b>: this method is only available if incremental<true> option is activated.
|
960
|
+
bool incremental_rehash(bool grow = true)
|
961
|
+
{ return table_.incremental_rehash(grow); }
|
962
|
+
|
963
|
+
//! <b>Note</b>: this method is only available if incremental<true> option is activated.
|
964
|
+
bool incremental_rehash(const bucket_traits &new_bucket_traits)
|
965
|
+
{ return table_.incremental_rehash(new_bucket_traits); }
|
966
|
+
|
967
|
+
//! <b>Requires</b>:
|
968
|
+
//!
|
969
|
+
//! <b>Effects</b>:
|
970
|
+
//!
|
971
|
+
//! <b>Complexity</b>:
|
972
|
+
//!
|
973
|
+
//! <b>Throws</b>:
|
974
|
+
size_type split_count() const
|
975
|
+
{ return table_.split_count(); }
|
976
|
+
|
977
|
+
//! <b>Effects</b>: Returns the nearest new bucket count optimized for
|
978
|
+
//! the container that is bigger than n. This suggestion can be used
|
979
|
+
//! to create bucket arrays with a size that will usually improve
|
980
|
+
//! container's performance. If such value does not exist, the
|
981
|
+
//! higher possible value is returned.
|
982
|
+
//!
|
983
|
+
//! <b>Complexity</b>: Amortized constant time.
|
984
|
+
//!
|
985
|
+
//! <b>Throws</b>: Nothing.
|
986
|
+
static size_type suggested_upper_bucket_count(size_type n)
|
987
|
+
{ return table_type::suggested_upper_bucket_count(n); }
|
988
|
+
|
989
|
+
//! <b>Effects</b>: Returns the nearest new bucket count optimized for
|
990
|
+
//! the container that is smaller than n. This suggestion can be used
|
991
|
+
//! to create bucket arrays with a size that will usually improve
|
992
|
+
//! container's performance. If such value does not exist, the
|
993
|
+
//! lower possible value is returned.
|
994
|
+
//!
|
995
|
+
//! <b>Complexity</b>: Amortized constant time.
|
996
|
+
//!
|
997
|
+
//! <b>Throws</b>: Nothing.
|
998
|
+
static size_type suggested_lower_bucket_count(size_type n)
|
999
|
+
{ return table_type::suggested_lower_bucket_count(n); }
|
1000
|
+
};
|
1001
|
+
|
1002
|
+
//! Helper metafunction to define an \c unordered_set that yields to the same type when the
|
1003
|
+
//! same options (either explicitly or implicitly) are used.
|
1004
|
+
#if defined(BOOST_INTRUSIVE_DOXYGEN_INVOKED) || defined(BOOST_INTRUSIVE_VARIADIC_TEMPLATES)
|
1005
|
+
template<class T, class ...Options>
|
1006
|
+
#else
|
1007
|
+
template<class T, class O1 = none, class O2 = none
|
1008
|
+
, class O3 = none, class O4 = none
|
1009
|
+
, class O5 = none, class O6 = none
|
1010
|
+
, class O7 = none, class O8 = none
|
1011
|
+
, class O9 = none, class O10= none
|
1012
|
+
>
|
1013
|
+
#endif
|
1014
|
+
struct make_unordered_set
|
1015
|
+
{
|
1016
|
+
/// @cond
|
1017
|
+
typedef unordered_set_impl
|
1018
|
+
< typename make_hashtable_opt
|
1019
|
+
<T, true,
|
1020
|
+
#if !defined(BOOST_INTRUSIVE_VARIADIC_TEMPLATES)
|
1021
|
+
O1, O2, O3, O4, O5, O6, O7, O8, O9, O10
|
1022
|
+
#else
|
1023
|
+
Options...
|
1024
|
+
#endif
|
1025
|
+
>::type
|
1026
|
+
> implementation_defined;
|
1027
|
+
/// @endcond
|
1028
|
+
typedef implementation_defined type;
|
1029
|
+
};
|
1030
|
+
|
1031
|
+
#ifndef BOOST_INTRUSIVE_DOXYGEN_INVOKED
|
1032
|
+
|
1033
|
+
#if !defined(BOOST_INTRUSIVE_VARIADIC_TEMPLATES)
|
1034
|
+
template<class T, class O1, class O2, class O3, class O4, class O5, class O6, class O7, class O8, class O9, class O10>
|
1035
|
+
#else
|
1036
|
+
template<class T, class ...Options>
|
1037
|
+
#endif
|
1038
|
+
class unordered_set
|
1039
|
+
: public make_unordered_set<T,
|
1040
|
+
#if !defined(BOOST_INTRUSIVE_VARIADIC_TEMPLATES)
|
1041
|
+
O1, O2, O3, O4, O5, O6, O7, O8, O9, O10
|
1042
|
+
#else
|
1043
|
+
Options...
|
1044
|
+
#endif
|
1045
|
+
>::type
|
1046
|
+
{
|
1047
|
+
typedef typename make_unordered_set
|
1048
|
+
<T,
|
1049
|
+
#if !defined(BOOST_INTRUSIVE_VARIADIC_TEMPLATES)
|
1050
|
+
O1, O2, O3, O4, O5, O6, O7, O8, O9, O10
|
1051
|
+
#else
|
1052
|
+
Options...
|
1053
|
+
#endif
|
1054
|
+
>::type Base;
|
1055
|
+
|
1056
|
+
//Assert if passed value traits are compatible with the type
|
1057
|
+
BOOST_STATIC_ASSERT((detail::is_same<typename Base::value_traits::value_type, T>::value));
|
1058
|
+
BOOST_MOVABLE_BUT_NOT_COPYABLE(unordered_set)
|
1059
|
+
|
1060
|
+
public:
|
1061
|
+
typedef typename Base::value_traits value_traits;
|
1062
|
+
typedef typename Base::bucket_traits bucket_traits;
|
1063
|
+
typedef typename Base::iterator iterator;
|
1064
|
+
typedef typename Base::const_iterator const_iterator;
|
1065
|
+
typedef typename Base::bucket_ptr bucket_ptr;
|
1066
|
+
typedef typename Base::size_type size_type;
|
1067
|
+
typedef typename Base::hasher hasher;
|
1068
|
+
typedef typename Base::key_equal key_equal;
|
1069
|
+
|
1070
|
+
unordered_set ( const bucket_traits &b_traits
|
1071
|
+
, const hasher & hash_func = hasher()
|
1072
|
+
, const key_equal &equal_func = key_equal()
|
1073
|
+
, const value_traits &v_traits = value_traits())
|
1074
|
+
: Base(b_traits, hash_func, equal_func, v_traits)
|
1075
|
+
{}
|
1076
|
+
|
1077
|
+
template<class Iterator>
|
1078
|
+
unordered_set ( Iterator b
|
1079
|
+
, Iterator e
|
1080
|
+
, const bucket_traits &b_traits
|
1081
|
+
, const hasher & hash_func = hasher()
|
1082
|
+
, const key_equal &equal_func = key_equal()
|
1083
|
+
, const value_traits &v_traits = value_traits())
|
1084
|
+
: Base(b, e, b_traits, hash_func, equal_func, v_traits)
|
1085
|
+
{}
|
1086
|
+
|
1087
|
+
unordered_set(BOOST_RV_REF(unordered_set) x)
|
1088
|
+
: Base(::boost::move(static_cast<Base&>(x)))
|
1089
|
+
{}
|
1090
|
+
|
1091
|
+
unordered_set& operator=(BOOST_RV_REF(unordered_set) x)
|
1092
|
+
{ this->Base::operator=(::boost::move(static_cast<Base&>(x))); return *this; }
|
1093
|
+
};
|
1094
|
+
|
1095
|
+
#endif
|
1096
|
+
|
1097
|
+
|
1098
|
+
//! The class template unordered_multiset is an intrusive container, that mimics most of
|
1099
|
+
//! the interface of std::tr1::unordered_multiset as described in the C++ TR1.
|
1100
|
+
//!
|
1101
|
+
//! unordered_multiset is a semi-intrusive container: each object to be stored in the
|
1102
|
+
//! container must contain a proper hook, but the container also needs
|
1103
|
+
//! additional auxiliary memory to work: unordered_multiset needs a pointer to an array
|
1104
|
+
//! of type `bucket_type` to be passed in the constructor. This bucket array must
|
1105
|
+
//! have at least the same lifetime as the container. This makes the use of
|
1106
|
+
//! unordered_multiset more complicated than purely intrusive containers.
|
1107
|
+
//! `bucket_type` is default-constructible, copyable and assignable
|
1108
|
+
//!
|
1109
|
+
//! The template parameter \c T is the type to be managed by the container.
|
1110
|
+
//! The user can specify additional options and if no options are provided
|
1111
|
+
//! default options are used.
|
1112
|
+
//!
|
1113
|
+
//! The container supports the following options:
|
1114
|
+
//! \c base_hook<>/member_hook<>/value_traits<>,
|
1115
|
+
//! \c constant_time_size<>, \c size_type<>, \c hash<> and \c equal<>
|
1116
|
+
//! \c bucket_traits<>, \c power_2_buckets<> and \c cache_begin<>.
|
1117
|
+
//!
|
1118
|
+
//! unordered_multiset only provides forward iterators but it provides 4 iterator types:
|
1119
|
+
//! iterator and const_iterator to navigate through the whole container and
|
1120
|
+
//! local_iterator and const_local_iterator to navigate through the values
|
1121
|
+
//! stored in a single bucket. Local iterators are faster and smaller.
|
1122
|
+
//!
|
1123
|
+
//! It's not recommended to use non constant-time size unordered_multisets because several
|
1124
|
+
//! key functions, like "empty()", become non-constant time functions. Non
|
1125
|
+
//! constant-time size unordered_multisets are mainly provided to support auto-unlink hooks.
|
1126
|
+
//!
|
1127
|
+
//! unordered_multiset, unlike std::unordered_set, does not make automatic rehashings nor
|
1128
|
+
//! offers functions related to a load factor. Rehashing can be explicitly requested
|
1129
|
+
//! and the user must provide a new bucket array that will be used from that moment.
|
1130
|
+
//!
|
1131
|
+
//! Since no automatic rehashing is done, iterators are never invalidated when
|
1132
|
+
//! inserting or erasing elements. Iterators are only invalidated when rehasing.
|
1133
|
+
#if defined(BOOST_INTRUSIVE_DOXYGEN_INVOKED)
|
1134
|
+
template<class T, class ...Options>
|
1135
|
+
#else
|
1136
|
+
template<class Config>
|
1137
|
+
#endif
|
1138
|
+
class unordered_multiset_impl
|
1139
|
+
{
|
1140
|
+
/// @cond
|
1141
|
+
private:
|
1142
|
+
typedef hashtable_impl<Config> table_type;
|
1143
|
+
/// @endcond
|
1144
|
+
|
1145
|
+
//Movable
|
1146
|
+
BOOST_MOVABLE_BUT_NOT_COPYABLE(unordered_multiset_impl)
|
1147
|
+
|
1148
|
+
typedef table_type implementation_defined;
|
1149
|
+
|
1150
|
+
public:
|
1151
|
+
typedef typename implementation_defined::value_type value_type;
|
1152
|
+
typedef typename implementation_defined::value_traits value_traits;
|
1153
|
+
typedef typename implementation_defined::bucket_traits bucket_traits;
|
1154
|
+
typedef typename implementation_defined::pointer pointer;
|
1155
|
+
typedef typename implementation_defined::const_pointer const_pointer;
|
1156
|
+
typedef typename implementation_defined::reference reference;
|
1157
|
+
typedef typename implementation_defined::const_reference const_reference;
|
1158
|
+
typedef typename implementation_defined::difference_type difference_type;
|
1159
|
+
typedef typename implementation_defined::size_type size_type;
|
1160
|
+
typedef typename implementation_defined::key_type key_type;
|
1161
|
+
typedef typename implementation_defined::key_equal key_equal;
|
1162
|
+
typedef typename implementation_defined::hasher hasher;
|
1163
|
+
typedef typename implementation_defined::bucket_type bucket_type;
|
1164
|
+
typedef typename implementation_defined::bucket_ptr bucket_ptr;
|
1165
|
+
typedef typename implementation_defined::iterator iterator;
|
1166
|
+
typedef typename implementation_defined::const_iterator const_iterator;
|
1167
|
+
typedef typename implementation_defined::insert_commit_data insert_commit_data;
|
1168
|
+
typedef typename implementation_defined::local_iterator local_iterator;
|
1169
|
+
typedef typename implementation_defined::const_local_iterator const_local_iterator;
|
1170
|
+
typedef typename implementation_defined::node_traits node_traits;
|
1171
|
+
typedef typename implementation_defined::node node;
|
1172
|
+
typedef typename implementation_defined::node_ptr node_ptr;
|
1173
|
+
typedef typename implementation_defined::const_node_ptr const_node_ptr;
|
1174
|
+
typedef typename implementation_defined::node_algorithms node_algorithms;
|
1175
|
+
|
1176
|
+
/// @cond
|
1177
|
+
private:
|
1178
|
+
table_type table_;
|
1179
|
+
/// @endcond
|
1180
|
+
|
1181
|
+
public:
|
1182
|
+
|
1183
|
+
//! <b>Requires</b>: buckets must not be being used by any other resource.
|
1184
|
+
//!
|
1185
|
+
//! <b>Effects</b>: Constructs an empty unordered_multiset, storing a reference
|
1186
|
+
//! to the bucket array and copies of the hasher and equal functors.
|
1187
|
+
//!
|
1188
|
+
//! <b>Complexity</b>: Constant.
|
1189
|
+
//!
|
1190
|
+
//! <b>Throws</b>: If value_traits::node_traits::node
|
1191
|
+
//! constructor throws (this does not happen with predefined Boost.Intrusive hooks)
|
1192
|
+
//! or the copy constructor or invocation of Hash or Equal throws.
|
1193
|
+
//!
|
1194
|
+
//! <b>Notes</b>: buckets array must be disposed only after
|
1195
|
+
//! *this is disposed.
|
1196
|
+
explicit unordered_multiset_impl ( const bucket_traits &b_traits
|
1197
|
+
, const hasher & hash_func = hasher()
|
1198
|
+
, const key_equal &equal_func = key_equal()
|
1199
|
+
, const value_traits &v_traits = value_traits())
|
1200
|
+
: table_(b_traits, hash_func, equal_func, v_traits)
|
1201
|
+
{}
|
1202
|
+
|
1203
|
+
//! <b>Requires</b>: buckets must not be being used by any other resource
|
1204
|
+
//! and Dereferencing iterator must yield an lvalue of type value_type.
|
1205
|
+
//!
|
1206
|
+
//! <b>Effects</b>: Constructs an empty unordered_multiset and inserts elements from
|
1207
|
+
//! [b, e).
|
1208
|
+
//!
|
1209
|
+
//! <b>Complexity</b>: If N is std::distance(b, e): Average case is O(N)
|
1210
|
+
//! (with a good hash function and with buckets_len >= N),worst case O(N2).
|
1211
|
+
//!
|
1212
|
+
//! <b>Throws</b>: If value_traits::node_traits::node
|
1213
|
+
//! constructor throws (this does not happen with predefined Boost.Intrusive hooks)
|
1214
|
+
//! or the copy constructor or invocation of hasher or key_equal throws.
|
1215
|
+
//!
|
1216
|
+
//! <b>Notes</b>: buckets array must be disposed only after
|
1217
|
+
//! *this is disposed.
|
1218
|
+
template<class Iterator>
|
1219
|
+
unordered_multiset_impl ( Iterator b
|
1220
|
+
, Iterator e
|
1221
|
+
, const bucket_traits &b_traits
|
1222
|
+
, const hasher & hash_func = hasher()
|
1223
|
+
, const key_equal &equal_func = key_equal()
|
1224
|
+
, const value_traits &v_traits = value_traits())
|
1225
|
+
: table_(b_traits, hash_func, equal_func, v_traits)
|
1226
|
+
{ table_.insert_equal(b, e); }
|
1227
|
+
|
1228
|
+
//! <b>Effects</b>: to-do
|
1229
|
+
//!
|
1230
|
+
unordered_multiset_impl(BOOST_RV_REF(unordered_multiset_impl) x)
|
1231
|
+
: table_(::boost::move(x.table_))
|
1232
|
+
{}
|
1233
|
+
|
1234
|
+
//! <b>Effects</b>: to-do
|
1235
|
+
//!
|
1236
|
+
unordered_multiset_impl& operator=(BOOST_RV_REF(unordered_multiset_impl) x)
|
1237
|
+
{ table_ = ::boost::move(x.table_); return *this; }
|
1238
|
+
|
1239
|
+
//! <b>Effects</b>: Detaches all elements from this. The objects in the unordered_multiset
|
1240
|
+
//! are not deleted (i.e. no destructors are called).
|
1241
|
+
//!
|
1242
|
+
//! <b>Complexity</b>: Linear to the number of elements in the unordered_multiset, if
|
1243
|
+
//! it's a safe-mode or auto-unlink value. Otherwise constant.
|
1244
|
+
//!
|
1245
|
+
//! <b>Throws</b>: Nothing.
|
1246
|
+
~unordered_multiset_impl()
|
1247
|
+
{}
|
1248
|
+
|
1249
|
+
//! <b>Effects</b>: Returns an iterator pointing to the beginning of the unordered_multiset.
|
1250
|
+
//!
|
1251
|
+
//! <b>Complexity</b>: Constant time if `cache_begin<>` is true. Amortized
|
1252
|
+
//! constant time with worst case (empty unordered_set) O(this->bucket_count())
|
1253
|
+
//!
|
1254
|
+
//! <b>Throws</b>: Nothing.
|
1255
|
+
iterator begin()
|
1256
|
+
{ return table_.begin(); }
|
1257
|
+
|
1258
|
+
//! <b>Effects</b>: Returns a const_iterator pointing to the beginning
|
1259
|
+
//! of the unordered_multiset.
|
1260
|
+
//!
|
1261
|
+
//! <b>Complexity</b>: Constant time if `cache_begin<>` is true. Amortized
|
1262
|
+
//! constant time with worst case (empty unordered_set) O(this->bucket_count())
|
1263
|
+
//!
|
1264
|
+
//! <b>Throws</b>: Nothing.
|
1265
|
+
const_iterator begin() const
|
1266
|
+
{ return table_.begin(); }
|
1267
|
+
|
1268
|
+
//! <b>Effects</b>: Returns a const_iterator pointing to the beginning
|
1269
|
+
//! of the unordered_multiset.
|
1270
|
+
//!
|
1271
|
+
//! <b>Complexity</b>: Constant time if `cache_begin<>` is true. Amortized
|
1272
|
+
//! constant time with worst case (empty unordered_set) O(this->bucket_count())
|
1273
|
+
//!
|
1274
|
+
//! <b>Throws</b>: Nothing.
|
1275
|
+
const_iterator cbegin() const
|
1276
|
+
{ return table_.cbegin(); }
|
1277
|
+
|
1278
|
+
//! <b>Effects</b>: Returns an iterator pointing to the end of the unordered_multiset.
|
1279
|
+
//!
|
1280
|
+
//! <b>Complexity</b>: Constant.
|
1281
|
+
//!
|
1282
|
+
//! <b>Throws</b>: Nothing.
|
1283
|
+
iterator end()
|
1284
|
+
{ return table_.end(); }
|
1285
|
+
|
1286
|
+
//! <b>Effects</b>: Returns a const_iterator pointing to the end of the unordered_multiset.
|
1287
|
+
//!
|
1288
|
+
//! <b>Complexity</b>: Constant.
|
1289
|
+
//!
|
1290
|
+
//! <b>Throws</b>: Nothing.
|
1291
|
+
const_iterator end() const
|
1292
|
+
{ return table_.end(); }
|
1293
|
+
|
1294
|
+
//! <b>Effects</b>: Returns a const_iterator pointing to the end of the unordered_multiset.
|
1295
|
+
//!
|
1296
|
+
//! <b>Complexity</b>: Constant.
|
1297
|
+
//!
|
1298
|
+
//! <b>Throws</b>: Nothing.
|
1299
|
+
const_iterator cend() const
|
1300
|
+
{ return table_.cend(); }
|
1301
|
+
|
1302
|
+
//! <b>Effects</b>: Returns the hasher object used by the unordered_set.
|
1303
|
+
//!
|
1304
|
+
//! <b>Complexity</b>: Constant.
|
1305
|
+
//!
|
1306
|
+
//! <b>Throws</b>: If hasher copy-constructor throws.
|
1307
|
+
hasher hash_function() const
|
1308
|
+
{ return table_.hash_function(); }
|
1309
|
+
|
1310
|
+
//! <b>Effects</b>: Returns the key_equal object used by the unordered_multiset.
|
1311
|
+
//!
|
1312
|
+
//! <b>Complexity</b>: Constant.
|
1313
|
+
//!
|
1314
|
+
//! <b>Throws</b>: If key_equal copy-constructor throws.
|
1315
|
+
key_equal key_eq() const
|
1316
|
+
{ return table_.key_eq(); }
|
1317
|
+
|
1318
|
+
//! <b>Effects</b>: Returns true if the container is empty.
|
1319
|
+
//!
|
1320
|
+
//! <b>Complexity</b>: if constant-time size and cache_last options are disabled,
|
1321
|
+
//! average constant time (worst case, with empty() == true: O(this->bucket_count()).
|
1322
|
+
//! Otherwise constant.
|
1323
|
+
//!
|
1324
|
+
//! <b>Throws</b>: Nothing.
|
1325
|
+
bool empty() const
|
1326
|
+
{ return table_.empty(); }
|
1327
|
+
|
1328
|
+
//! <b>Effects</b>: Returns the number of elements stored in the unordered_multiset.
|
1329
|
+
//!
|
1330
|
+
//! <b>Complexity</b>: Linear to elements contained in *this if
|
1331
|
+
//! constant-time size option is disabled. Constant-time otherwise.
|
1332
|
+
//!
|
1333
|
+
//! <b>Throws</b>: Nothing.
|
1334
|
+
size_type size() const
|
1335
|
+
{ return table_.size(); }
|
1336
|
+
|
1337
|
+
//! <b>Requires</b>: the hasher and the equality function unqualified swap
|
1338
|
+
//! call should not throw.
|
1339
|
+
//!
|
1340
|
+
//! <b>Effects</b>: Swaps the contents of two unordered_multisets.
|
1341
|
+
//! Swaps also the contained bucket array and equality and hasher functors.
|
1342
|
+
//!
|
1343
|
+
//!
|
1344
|
+
//! <b>Complexity</b>: Constant.
|
1345
|
+
//!
|
1346
|
+
//! <b>Throws</b>: If the swap() call for the comparison or hash functors
|
1347
|
+
//! found using ADL throw. Basic guarantee.
|
1348
|
+
void swap(unordered_multiset_impl& other)
|
1349
|
+
{ table_.swap(other.table_); }
|
1350
|
+
|
1351
|
+
//! <b>Requires</b>: Disposer::operator()(pointer) shouldn't throw.
|
1352
|
+
//! Cloner should yield to nodes that compare equal and produce the same
|
1353
|
+
//! hash than the original node.
|
1354
|
+
//!
|
1355
|
+
//! <b>Effects</b>: Erases all the elements from *this
|
1356
|
+
//! calling Disposer::operator()(pointer), clones all the
|
1357
|
+
//! elements from src calling Cloner::operator()(const_reference )
|
1358
|
+
//! and inserts them on *this. The hash function and the equality
|
1359
|
+
//! predicate are copied from the source.
|
1360
|
+
//!
|
1361
|
+
//! If store_hash option is true, this method does not use the hash function.
|
1362
|
+
//!
|
1363
|
+
//! If any operation throws, all cloned elements are unlinked and disposed
|
1364
|
+
//! calling Disposer::operator()(pointer).
|
1365
|
+
//!
|
1366
|
+
//! <b>Complexity</b>: Linear to erased plus inserted elements.
|
1367
|
+
//!
|
1368
|
+
//! <b>Throws</b>: If cloner or hasher throw or hash or equality predicate copying
|
1369
|
+
//! throws. Basic guarantee.
|
1370
|
+
template <class Cloner, class Disposer>
|
1371
|
+
void clone_from(const unordered_multiset_impl &src, Cloner cloner, Disposer disposer)
|
1372
|
+
{ table_.clone_from(src.table_, cloner, disposer); }
|
1373
|
+
|
1374
|
+
//! <b>Requires</b>: value must be an lvalue
|
1375
|
+
//!
|
1376
|
+
//! <b>Effects</b>: Inserts value into the unordered_multiset.
|
1377
|
+
//!
|
1378
|
+
//! <b>Returns</b>: An iterator to the new inserted value.
|
1379
|
+
//!
|
1380
|
+
//! <b>Complexity</b>: Average case O(1), worst case O(this->size()).
|
1381
|
+
//!
|
1382
|
+
//! <b>Throws</b>: If the internal hasher or the equality functor throws. Strong guarantee.
|
1383
|
+
//!
|
1384
|
+
//! <b>Note</b>: Does not affect the validity of iterators and references.
|
1385
|
+
//! No copy-constructors are called.
|
1386
|
+
iterator insert(reference value)
|
1387
|
+
{ return table_.insert_equal(value); }
|
1388
|
+
|
1389
|
+
//! <b>Requires</b>: Dereferencing iterator must yield an lvalue
|
1390
|
+
//! of type value_type.
|
1391
|
+
//!
|
1392
|
+
//! <b>Effects</b>: Equivalent to this->insert(t) for each element in [b, e).
|
1393
|
+
//!
|
1394
|
+
//! <b>Complexity</b>: Average case is O(N), where N is the
|
1395
|
+
//! size of the range.
|
1396
|
+
//!
|
1397
|
+
//! <b>Throws</b>: If the internal hasher or the equality functor throws. Basic guarantee.
|
1398
|
+
//!
|
1399
|
+
//! <b>Note</b>: Does not affect the validity of iterators and references.
|
1400
|
+
//! No copy-constructors are called.
|
1401
|
+
template<class Iterator>
|
1402
|
+
void insert(Iterator b, Iterator e)
|
1403
|
+
{ table_.insert_equal(b, e); }
|
1404
|
+
|
1405
|
+
//! <b>Effects</b>: Erases the element pointed to by i.
|
1406
|
+
//!
|
1407
|
+
//! <b>Complexity</b>: Average case O(1), worst case O(this->size()).
|
1408
|
+
//!
|
1409
|
+
//! <b>Throws</b>: Nothing.
|
1410
|
+
//!
|
1411
|
+
//! <b>Note</b>: Invalidates the iterators (but not the references)
|
1412
|
+
//! to the erased element. No destructors are called.
|
1413
|
+
void erase(const_iterator i)
|
1414
|
+
{ table_.erase(i); }
|
1415
|
+
|
1416
|
+
//! <b>Effects</b>: Erases the range pointed to by b end e.
|
1417
|
+
//!
|
1418
|
+
//! <b>Complexity</b>: Average case O(std::distance(b, e)),
|
1419
|
+
//! worst case O(this->size()).
|
1420
|
+
//!
|
1421
|
+
//! <b>Throws</b>: Nothing.
|
1422
|
+
//!
|
1423
|
+
//! <b>Note</b>: Invalidates the iterators (but not the references)
|
1424
|
+
//! to the erased elements. No destructors are called.
|
1425
|
+
void erase(const_iterator b, const_iterator e)
|
1426
|
+
{ table_.erase(b, e); }
|
1427
|
+
|
1428
|
+
//! <b>Effects</b>: Erases all the elements with the given value.
|
1429
|
+
//!
|
1430
|
+
//! <b>Returns</b>: The number of erased elements.
|
1431
|
+
//!
|
1432
|
+
//! <b>Complexity</b>: Average case O(this->count(value)).
|
1433
|
+
//! Worst case O(this->size()).
|
1434
|
+
//!
|
1435
|
+
//! <b>Throws</b>: If the internal hasher or the equality functor throws. Basic guarantee.
|
1436
|
+
//!
|
1437
|
+
//! <b>Note</b>: Invalidates the iterators (but not the references)
|
1438
|
+
//! to the erased elements. No destructors are called.
|
1439
|
+
size_type erase(const_reference value)
|
1440
|
+
{ return table_.erase(value); }
|
1441
|
+
|
1442
|
+
//! <b>Requires</b>: "hash_func" must be a hash function that induces
|
1443
|
+
//! the same hash values as the stored hasher. The difference is that
|
1444
|
+
//! "hash_func" hashes the given key instead of the value_type.
|
1445
|
+
//!
|
1446
|
+
//! "key_value_equal" must be a equality function that induces
|
1447
|
+
//! the same equality as key_equal. The difference is that
|
1448
|
+
//! "key_value_equal" compares an arbitrary key with the contained values.
|
1449
|
+
//!
|
1450
|
+
//! <b>Effects</b>: Erases all the elements that have the same hash and
|
1451
|
+
//! compare equal with the given key.
|
1452
|
+
//!
|
1453
|
+
//! <b>Returns</b>: The number of erased elements.
|
1454
|
+
//!
|
1455
|
+
//! <b>Complexity</b>: Average case O(this->count(value)).
|
1456
|
+
//! Worst case O(this->size()).
|
1457
|
+
//!
|
1458
|
+
//! <b>Throws</b>: If the hash_func or the equal_func functors throws.
|
1459
|
+
//! Basic guarantee.
|
1460
|
+
//!
|
1461
|
+
//! <b>Note</b>: Invalidates the iterators (but not the references)
|
1462
|
+
//! to the erased elements. No destructors are called.
|
1463
|
+
template<class KeyType, class KeyHasher, class KeyValueEqual>
|
1464
|
+
size_type erase(const KeyType& key, KeyHasher hash_func, KeyValueEqual equal_func)
|
1465
|
+
{ return table_.erase(key, hash_func, equal_func); }
|
1466
|
+
|
1467
|
+
//! <b>Requires</b>: Disposer::operator()(pointer) shouldn't throw.
|
1468
|
+
//!
|
1469
|
+
//! <b>Effects</b>: Erases the element pointed to by i.
|
1470
|
+
//! Disposer::operator()(pointer) is called for the removed element.
|
1471
|
+
//!
|
1472
|
+
//! <b>Complexity</b>: Average case O(1), worst case O(this->size()).
|
1473
|
+
//!
|
1474
|
+
//! <b>Throws</b>: Nothing.
|
1475
|
+
//!
|
1476
|
+
//! <b>Note</b>: Invalidates the iterators
|
1477
|
+
//! to the erased elements.
|
1478
|
+
template<class Disposer>
|
1479
|
+
void erase_and_dispose(const_iterator i, Disposer disposer
|
1480
|
+
/// @cond
|
1481
|
+
, typename detail::enable_if_c<!detail::is_convertible<Disposer, const_iterator>::value >::type * = 0
|
1482
|
+
/// @endcond
|
1483
|
+
)
|
1484
|
+
{ table_.erase_and_dispose(i, disposer); }
|
1485
|
+
|
1486
|
+
#if !defined(BOOST_INTRUSIVE_DOXYGEN_INVOKED)
|
1487
|
+
template<class Disposer>
|
1488
|
+
void erase_and_dispose(const_iterator i, Disposer disposer)
|
1489
|
+
{ this->erase_and_dispose(const_iterator(i), disposer); }
|
1490
|
+
#endif
|
1491
|
+
|
1492
|
+
//! <b>Requires</b>: Disposer::operator()(pointer) shouldn't throw.
|
1493
|
+
//!
|
1494
|
+
//! <b>Effects</b>: Erases the range pointed to by b end e.
|
1495
|
+
//! Disposer::operator()(pointer) is called for the removed elements.
|
1496
|
+
//!
|
1497
|
+
//! <b>Complexity</b>: Average case O(std::distance(b, e)),
|
1498
|
+
//! worst case O(this->size()).
|
1499
|
+
//!
|
1500
|
+
//! <b>Throws</b>: Nothing.
|
1501
|
+
//!
|
1502
|
+
//! <b>Note</b>: Invalidates the iterators
|
1503
|
+
//! to the erased elements.
|
1504
|
+
template<class Disposer>
|
1505
|
+
void erase_and_dispose(const_iterator b, const_iterator e, Disposer disposer)
|
1506
|
+
{ table_.erase_and_dispose(b, e, disposer); }
|
1507
|
+
|
1508
|
+
//! <b>Requires</b>: Disposer::operator()(pointer) shouldn't throw.
|
1509
|
+
//!
|
1510
|
+
//! <b>Effects</b>: Erases all the elements with the given value.
|
1511
|
+
//! Disposer::operator()(pointer) is called for the removed elements.
|
1512
|
+
//!
|
1513
|
+
//! <b>Returns</b>: The number of erased elements.
|
1514
|
+
//!
|
1515
|
+
//! <b>Complexity</b>: Average case O(this->count(value)).
|
1516
|
+
//! Worst case O(this->size()).
|
1517
|
+
//!
|
1518
|
+
//! <b>Throws</b>: If the internal hasher or the equality functor throws. Basic guarantee.
|
1519
|
+
//!
|
1520
|
+
//! <b>Note</b>: Invalidates the iterators (but not the references)
|
1521
|
+
//! to the erased elements. No destructors are called.
|
1522
|
+
template<class Disposer>
|
1523
|
+
size_type erase_and_dispose(const_reference value, Disposer disposer)
|
1524
|
+
{ return table_.erase_and_dispose(value, disposer); }
|
1525
|
+
|
1526
|
+
//! <b>Requires</b>: Disposer::operator()(pointer) shouldn't throw.
|
1527
|
+
//!
|
1528
|
+
//! <b>Effects</b>: Erases all the elements with the given key.
|
1529
|
+
//! according to the comparison functor "equal_func".
|
1530
|
+
//! Disposer::operator()(pointer) is called for the removed elements.
|
1531
|
+
//!
|
1532
|
+
//! <b>Returns</b>: The number of erased elements.
|
1533
|
+
//!
|
1534
|
+
//! <b>Complexity</b>: Average case O(this->count(value)).
|
1535
|
+
//! Worst case O(this->size()).
|
1536
|
+
//!
|
1537
|
+
//! <b>Throws</b>: If hash_func or equal_func throw. Basic guarantee.
|
1538
|
+
//!
|
1539
|
+
//! <b>Note</b>: Invalidates the iterators
|
1540
|
+
//! to the erased elements.
|
1541
|
+
template<class KeyType, class KeyHasher, class KeyValueEqual, class Disposer>
|
1542
|
+
size_type erase_and_dispose(const KeyType& key, KeyHasher hash_func, KeyValueEqual equal_func, Disposer disposer)
|
1543
|
+
{ return table_.erase_and_dispose(key, hash_func, equal_func, disposer); }
|
1544
|
+
|
1545
|
+
//! <b>Effects</b>: Erases all the elements of the container.
|
1546
|
+
//!
|
1547
|
+
//! <b>Complexity</b>: Linear to the number of elements on the container.
|
1548
|
+
//! if it's a safe-mode or auto-unlink value_type. Constant time otherwise.
|
1549
|
+
//!
|
1550
|
+
//! <b>Throws</b>: Nothing.
|
1551
|
+
//!
|
1552
|
+
//! <b>Note</b>: Invalidates the iterators (but not the references)
|
1553
|
+
//! to the erased elements. No destructors are called.
|
1554
|
+
void clear()
|
1555
|
+
{ return table_.clear(); }
|
1556
|
+
|
1557
|
+
//! <b>Requires</b>: Disposer::operator()(pointer) shouldn't throw.
|
1558
|
+
//!
|
1559
|
+
//! <b>Effects</b>: Erases all the elements of the container.
|
1560
|
+
//!
|
1561
|
+
//! <b>Complexity</b>: Linear to the number of elements on the container.
|
1562
|
+
//! Disposer::operator()(pointer) is called for the removed elements.
|
1563
|
+
//!
|
1564
|
+
//! <b>Throws</b>: Nothing.
|
1565
|
+
//!
|
1566
|
+
//! <b>Note</b>: Invalidates the iterators (but not the references)
|
1567
|
+
//! to the erased elements. No destructors are called.
|
1568
|
+
template<class Disposer>
|
1569
|
+
void clear_and_dispose(Disposer disposer)
|
1570
|
+
{ return table_.clear_and_dispose(disposer); }
|
1571
|
+
|
1572
|
+
//! <b>Effects</b>: Returns the number of contained elements with the given key
|
1573
|
+
//!
|
1574
|
+
//! <b>Complexity</b>: Average case O(1), worst case O(this->size()).
|
1575
|
+
//!
|
1576
|
+
//! <b>Throws</b>: If the internal hasher or the equality functor throws.
|
1577
|
+
size_type count(const_reference value) const
|
1578
|
+
{ return table_.count(value); }
|
1579
|
+
|
1580
|
+
//! <b>Requires</b>: "hash_func" must be a hash function that induces
|
1581
|
+
//! the same hash values as the stored hasher. The difference is that
|
1582
|
+
//! "hash_func" hashes the given key instead of the value_type.
|
1583
|
+
//!
|
1584
|
+
//! "key_value_equal" must be a equality function that induces
|
1585
|
+
//! the same equality as key_equal. The difference is that
|
1586
|
+
//! "key_value_equal" compares an arbitrary key with the contained values.
|
1587
|
+
//!
|
1588
|
+
//! <b>Effects</b>: Returns the number of contained elements with the given key
|
1589
|
+
//!
|
1590
|
+
//! <b>Complexity</b>: Average case O(1), worst case O(this->size()).
|
1591
|
+
//!
|
1592
|
+
//! <b>Throws</b>: If the internal hasher or the equality functor throws.
|
1593
|
+
template<class KeyType, class KeyHasher, class KeyValueEqual>
|
1594
|
+
size_type count(const KeyType& key, KeyHasher hash_func, KeyValueEqual equal_func) const
|
1595
|
+
{ return table_.count(key, hash_func, equal_func); }
|
1596
|
+
|
1597
|
+
//! <b>Effects</b>: Finds an iterator to the first element whose value is
|
1598
|
+
//! "value" or end() if that element does not exist.
|
1599
|
+
//!
|
1600
|
+
//! <b>Complexity</b>: Average case O(1), worst case O(this->size()).
|
1601
|
+
//!
|
1602
|
+
//! <b>Throws</b>: If the internal hasher or the equality functor throws.
|
1603
|
+
iterator find(const_reference value)
|
1604
|
+
{ return table_.find(value); }
|
1605
|
+
|
1606
|
+
//! <b>Requires</b>: "hash_func" must be a hash function that induces
|
1607
|
+
//! the same hash values as the stored hasher. The difference is that
|
1608
|
+
//! "hash_func" hashes the given key instead of the value_type.
|
1609
|
+
//!
|
1610
|
+
//! "key_value_equal" must be a equality function that induces
|
1611
|
+
//! the same equality as key_equal. The difference is that
|
1612
|
+
//! "key_value_equal" compares an arbitrary key with the contained values.
|
1613
|
+
//!
|
1614
|
+
//! <b>Effects</b>: Finds an iterator to the first element whose key is
|
1615
|
+
//! "key" according to the given hasher and equality functor or end() if
|
1616
|
+
//! that element does not exist.
|
1617
|
+
//!
|
1618
|
+
//! <b>Complexity</b>: Average case O(1), worst case O(this->size()).
|
1619
|
+
//!
|
1620
|
+
//! <b>Throws</b>: If the internal hasher or the equality functor throws.
|
1621
|
+
//!
|
1622
|
+
//! <b>Note</b>: This function is used when constructing a value_type
|
1623
|
+
//! is expensive and the value_type can be compared with a cheaper
|
1624
|
+
//! key type. Usually this key is part of the value_type.
|
1625
|
+
template<class KeyType, class KeyHasher, class KeyValueEqual>
|
1626
|
+
iterator find(const KeyType& key, KeyHasher hash_func, KeyValueEqual equal_func)
|
1627
|
+
{ return table_.find(key, hash_func, equal_func); }
|
1628
|
+
|
1629
|
+
//! <b>Effects</b>: Finds a const_iterator to the first element whose key is
|
1630
|
+
//! "key" or end() if that element does not exist.
|
1631
|
+
//!
|
1632
|
+
//! <b>Complexity</b>: Average case O(1), worst case O(this->size()).
|
1633
|
+
//!
|
1634
|
+
//! <b>Throws</b>: If the internal hasher or the equality functor throws.
|
1635
|
+
const_iterator find(const_reference value) const
|
1636
|
+
{ return table_.find(value); }
|
1637
|
+
|
1638
|
+
//! <b>Requires</b>: "hash_func" must be a hash function that induces
|
1639
|
+
//! the same hash values as the stored hasher. The difference is that
|
1640
|
+
//! "hash_func" hashes the given key instead of the value_type.
|
1641
|
+
//!
|
1642
|
+
//! "key_value_equal" must be a equality function that induces
|
1643
|
+
//! the same equality as key_equal. The difference is that
|
1644
|
+
//! "key_value_equal" compares an arbitrary key with the contained values.
|
1645
|
+
//!
|
1646
|
+
//! <b>Effects</b>: Finds an iterator to the first element whose key is
|
1647
|
+
//! "key" according to the given hasher and equality functor or end() if
|
1648
|
+
//! that element does not exist.
|
1649
|
+
//!
|
1650
|
+
//! <b>Complexity</b>: Average case O(1), worst case O(this->size()).
|
1651
|
+
//!
|
1652
|
+
//! <b>Throws</b>: If the internal hasher or the equality functor throws.
|
1653
|
+
//!
|
1654
|
+
//! <b>Note</b>: This function is used when constructing a value_type
|
1655
|
+
//! is expensive and the value_type can be compared with a cheaper
|
1656
|
+
//! key type. Usually this key is part of the value_type.
|
1657
|
+
template<class KeyType, class KeyHasher, class KeyValueEqual>
|
1658
|
+
const_iterator find(const KeyType& key, KeyHasher hash_func, KeyValueEqual equal_func) const
|
1659
|
+
{ return table_.find(key, hash_func, equal_func); }
|
1660
|
+
|
1661
|
+
//! <b>Effects</b>: Returns a range containing all elements with values equivalent
|
1662
|
+
//! to value. Returns std::make_pair(this->end(), this->end()) if no such
|
1663
|
+
//! elements exist.
|
1664
|
+
//!
|
1665
|
+
//! <b>Complexity</b>: Average case O(this->count(value)). Worst case O(this->size()).
|
1666
|
+
//!
|
1667
|
+
//! <b>Throws</b>: If the internal hasher or the equality functor throws.
|
1668
|
+
std::pair<iterator,iterator> equal_range(const_reference value)
|
1669
|
+
{ return table_.equal_range(value); }
|
1670
|
+
|
1671
|
+
//! <b>Requires</b>: "hash_func" must be a hash function that induces
|
1672
|
+
//! the same hash values as the stored hasher. The difference is that
|
1673
|
+
//! "hash_func" hashes the given key instead of the value_type.
|
1674
|
+
//!
|
1675
|
+
//! "key_value_equal" must be a equality function that induces
|
1676
|
+
//! the same equality as key_equal. The difference is that
|
1677
|
+
//! "key_value_equal" compares an arbitrary key with the contained values.
|
1678
|
+
//!
|
1679
|
+
//! <b>Effects</b>: Returns a range containing all elements with equivalent
|
1680
|
+
//! keys. Returns std::make_pair(this->end(), this->end()) if no such
|
1681
|
+
//! elements exist.
|
1682
|
+
//!
|
1683
|
+
//! <b>Complexity</b>: Average case O(this->count(key, hash_func, equal_func)).
|
1684
|
+
//! Worst case O(this->size()).
|
1685
|
+
//!
|
1686
|
+
//! <b>Throws</b>: If the internal hasher or the equality functor throws.
|
1687
|
+
//!
|
1688
|
+
//! <b>Note</b>: This function is used when constructing a value_type
|
1689
|
+
//! is expensive and the value_type can be compared with a cheaper
|
1690
|
+
//! key type. Usually this key is part of the value_type.
|
1691
|
+
template<class KeyType, class KeyHasher, class KeyValueEqual>
|
1692
|
+
std::pair<iterator,iterator> equal_range
|
1693
|
+
(const KeyType& key, KeyHasher hash_func, KeyValueEqual equal_func)
|
1694
|
+
{ return table_.equal_range(key, hash_func, equal_func); }
|
1695
|
+
|
1696
|
+
//! <b>Effects</b>: Returns a range containing all elements with values equivalent
|
1697
|
+
//! to value. Returns std::make_pair(this->end(), this->end()) if no such
|
1698
|
+
//! elements exist.
|
1699
|
+
//!
|
1700
|
+
//! <b>Complexity</b>: Average case O(this->count(value)). Worst case O(this->size()).
|
1701
|
+
//!
|
1702
|
+
//! <b>Throws</b>: If the internal hasher or the equality functor throws.
|
1703
|
+
std::pair<const_iterator, const_iterator>
|
1704
|
+
equal_range(const_reference value) const
|
1705
|
+
{ return table_.equal_range(value); }
|
1706
|
+
|
1707
|
+
//! <b>Requires</b>: "hash_func" must be a hash function that induces
|
1708
|
+
//! the same hash values as the stored hasher. The difference is that
|
1709
|
+
//! "hash_func" hashes the given key instead of the value_type.
|
1710
|
+
//!
|
1711
|
+
//! "key_value_equal" must be a equality function that induces
|
1712
|
+
//! the same equality as key_equal. The difference is that
|
1713
|
+
//! "key_value_equal" compares an arbitrary key with the contained values.
|
1714
|
+
//!
|
1715
|
+
//! <b>Effects</b>: Returns a range containing all elements with equivalent
|
1716
|
+
//! keys. Returns std::make_pair(this->end(), this->end()) if no such
|
1717
|
+
//! elements exist.
|
1718
|
+
//!
|
1719
|
+
//! <b>Complexity</b>: Average case O(this->count(key, hash_func, equal_func)).
|
1720
|
+
//! Worst case O(this->size()).
|
1721
|
+
//!
|
1722
|
+
//! <b>Throws</b>: If the internal hasher or the equality functor throws.
|
1723
|
+
//!
|
1724
|
+
//! <b>Note</b>: This function is used when constructing a value_type
|
1725
|
+
//! is expensive and the value_type can be compared with a cheaper
|
1726
|
+
//! key type. Usually this key is part of the value_type.
|
1727
|
+
template<class KeyType, class KeyHasher, class KeyValueEqual>
|
1728
|
+
std::pair<const_iterator, const_iterator>
|
1729
|
+
equal_range(const KeyType& key, KeyHasher hash_func, KeyValueEqual equal_func) const
|
1730
|
+
{ return table_.equal_range(key, hash_func, equal_func); }
|
1731
|
+
|
1732
|
+
//! <b>Requires</b>: value must be an lvalue and shall be in a unordered_multiset of
|
1733
|
+
//! appropriate type. Otherwise the behavior is undefined.
|
1734
|
+
//!
|
1735
|
+
//! <b>Effects</b>: Returns: a valid iterator belonging to the unordered_multiset
|
1736
|
+
//! that points to the value
|
1737
|
+
//!
|
1738
|
+
//! <b>Complexity</b>: Constant.
|
1739
|
+
//!
|
1740
|
+
//! <b>Throws</b>: If the hash function throws.
|
1741
|
+
iterator iterator_to(reference value)
|
1742
|
+
{ return table_.iterator_to(value); }
|
1743
|
+
|
1744
|
+
//! <b>Requires</b>: value must be an lvalue and shall be in a unordered_multiset of
|
1745
|
+
//! appropriate type. Otherwise the behavior is undefined.
|
1746
|
+
//!
|
1747
|
+
//! <b>Effects</b>: Returns: a valid const_iterator belonging to the
|
1748
|
+
//! unordered_multiset that points to the value
|
1749
|
+
//!
|
1750
|
+
//! <b>Complexity</b>: Constant.
|
1751
|
+
//!
|
1752
|
+
//! <b>Throws</b>: If the hash function throws.
|
1753
|
+
const_iterator iterator_to(const_reference value) const
|
1754
|
+
{ return table_.iterator_to(value); }
|
1755
|
+
|
1756
|
+
//! <b>Requires</b>: value must be an lvalue and shall be in a unordered_set of
|
1757
|
+
//! appropriate type. Otherwise the behavior is undefined.
|
1758
|
+
//!
|
1759
|
+
//! <b>Effects</b>: Returns: a valid local_iterator belonging to the unordered_set
|
1760
|
+
//! that points to the value
|
1761
|
+
//!
|
1762
|
+
//! <b>Complexity</b>: Constant.
|
1763
|
+
//!
|
1764
|
+
//! <b>Throws</b>: Nothing.
|
1765
|
+
//!
|
1766
|
+
//! <b>Note</b>: This static function is available only if the <i>value traits</i>
|
1767
|
+
//! is stateless.
|
1768
|
+
static local_iterator s_local_iterator_to(reference value)
|
1769
|
+
{ return table_type::s_local_iterator_to(value); }
|
1770
|
+
|
1771
|
+
//! <b>Requires</b>: value must be an lvalue and shall be in a unordered_set of
|
1772
|
+
//! appropriate type. Otherwise the behavior is undefined.
|
1773
|
+
//!
|
1774
|
+
//! <b>Effects</b>: Returns: a valid const_local_iterator belonging to
|
1775
|
+
//! the unordered_set that points to the value
|
1776
|
+
//!
|
1777
|
+
//! <b>Complexity</b>: Constant.
|
1778
|
+
//!
|
1779
|
+
//! <b>Throws</b>: Nothing.
|
1780
|
+
//!
|
1781
|
+
//! <b>Note</b>: This static function is available only if the <i>value traits</i>
|
1782
|
+
//! is stateless.
|
1783
|
+
static const_local_iterator s_local_iterator_to(const_reference value)
|
1784
|
+
{ return table_type::s_local_iterator_to(value); }
|
1785
|
+
|
1786
|
+
//! <b>Requires</b>: value must be an lvalue and shall be in a unordered_set of
|
1787
|
+
//! appropriate type. Otherwise the behavior is undefined.
|
1788
|
+
//!
|
1789
|
+
//! <b>Effects</b>: Returns: a valid local_iterator belonging to the unordered_set
|
1790
|
+
//! that points to the value
|
1791
|
+
//!
|
1792
|
+
//! <b>Complexity</b>: Constant.
|
1793
|
+
//!
|
1794
|
+
//! <b>Throws</b>: Nothing.
|
1795
|
+
local_iterator local_iterator_to(reference value)
|
1796
|
+
{ return table_.local_iterator_to(value); }
|
1797
|
+
|
1798
|
+
//! <b>Requires</b>: value must be an lvalue and shall be in a unordered_set of
|
1799
|
+
//! appropriate type. Otherwise the behavior is undefined.
|
1800
|
+
//!
|
1801
|
+
//! <b>Effects</b>: Returns: a valid const_local_iterator belonging to
|
1802
|
+
//! the unordered_set that points to the value
|
1803
|
+
//!
|
1804
|
+
//! <b>Complexity</b>: Constant.
|
1805
|
+
//!
|
1806
|
+
//! <b>Throws</b>: Nothing.
|
1807
|
+
const_local_iterator local_iterator_to(const_reference value) const
|
1808
|
+
{ return table_.local_iterator_to(value); }
|
1809
|
+
|
1810
|
+
//! <b>Effects</b>: Returns the number of buckets passed in the constructor
|
1811
|
+
//! or the last rehash function.
|
1812
|
+
//!
|
1813
|
+
//! <b>Complexity</b>: Constant.
|
1814
|
+
//!
|
1815
|
+
//! <b>Throws</b>: Nothing.
|
1816
|
+
size_type bucket_count() const
|
1817
|
+
{ return table_.bucket_count(); }
|
1818
|
+
|
1819
|
+
//! <b>Requires</b>: n is in the range [0, this->bucket_count()).
|
1820
|
+
//!
|
1821
|
+
//! <b>Effects</b>: Returns the number of elements in the nth bucket.
|
1822
|
+
//!
|
1823
|
+
//! <b>Complexity</b>: Constant.
|
1824
|
+
//!
|
1825
|
+
//! <b>Throws</b>: Nothing.
|
1826
|
+
size_type bucket_size(size_type n) const
|
1827
|
+
{ return table_.bucket_size(n); }
|
1828
|
+
|
1829
|
+
//! <b>Effects</b>: Returns the index of the bucket in which elements
|
1830
|
+
//! with keys equivalent to k would be found, if any such element existed.
|
1831
|
+
//!
|
1832
|
+
//! <b>Complexity</b>: Constant.
|
1833
|
+
//!
|
1834
|
+
//! <b>Throws</b>: If the hash functor throws.
|
1835
|
+
//!
|
1836
|
+
//! <b>Note</b>: the return value is in the range [0, this->bucket_count()).
|
1837
|
+
size_type bucket(const value_type& k) const
|
1838
|
+
{ return table_.bucket(k); }
|
1839
|
+
|
1840
|
+
//! <b>Requires</b>: "hash_func" must be a hash function that induces
|
1841
|
+
//! the same hash values as the stored hasher. The difference is that
|
1842
|
+
//! "hash_func" hashes the given key instead of the value_type.
|
1843
|
+
//!
|
1844
|
+
//! <b>Effects</b>: Returns the index of the bucket in which elements
|
1845
|
+
//! with keys equivalent to k would be found, if any such element existed.
|
1846
|
+
//!
|
1847
|
+
//! <b>Complexity</b>: Constant.
|
1848
|
+
//!
|
1849
|
+
//! <b>Throws</b>: If the hash functor throws.
|
1850
|
+
//!
|
1851
|
+
//! <b>Note</b>: the return value is in the range [0, this->bucket_count()).
|
1852
|
+
template<class KeyType, class KeyHasher>
|
1853
|
+
size_type bucket(const KeyType& k, const KeyHasher &hash_func) const
|
1854
|
+
{ return table_.bucket(k, hash_func); }
|
1855
|
+
|
1856
|
+
//! <b>Effects</b>: Returns the bucket array pointer passed in the constructor
|
1857
|
+
//! or the last rehash function.
|
1858
|
+
//!
|
1859
|
+
//! <b>Complexity</b>: Constant.
|
1860
|
+
//!
|
1861
|
+
//! <b>Throws</b>: Nothing.
|
1862
|
+
bucket_ptr bucket_pointer() const
|
1863
|
+
{ return table_.bucket_pointer(); }
|
1864
|
+
|
1865
|
+
//! <b>Requires</b>: n is in the range [0, this->bucket_count()).
|
1866
|
+
//!
|
1867
|
+
//! <b>Effects</b>: Returns a local_iterator pointing to the beginning
|
1868
|
+
//! of the sequence stored in the bucket n.
|
1869
|
+
//!
|
1870
|
+
//! <b>Complexity</b>: Constant.
|
1871
|
+
//!
|
1872
|
+
//! <b>Throws</b>: Nothing.
|
1873
|
+
//!
|
1874
|
+
//! <b>Note</b>: [this->begin(n), this->end(n)) is a valid range
|
1875
|
+
//! containing all of the elements in the nth bucket.
|
1876
|
+
local_iterator begin(size_type n)
|
1877
|
+
{ return table_.begin(n); }
|
1878
|
+
|
1879
|
+
//! <b>Requires</b>: n is in the range [0, this->bucket_count()).
|
1880
|
+
//!
|
1881
|
+
//! <b>Effects</b>: Returns a const_local_iterator pointing to the beginning
|
1882
|
+
//! of the sequence stored in the bucket n.
|
1883
|
+
//!
|
1884
|
+
//! <b>Complexity</b>: Constant.
|
1885
|
+
//!
|
1886
|
+
//! <b>Throws</b>: Nothing.
|
1887
|
+
//!
|
1888
|
+
//! <b>Note</b>: [this->begin(n), this->end(n)) is a valid range
|
1889
|
+
//! containing all of the elements in the nth bucket.
|
1890
|
+
const_local_iterator begin(size_type n) const
|
1891
|
+
{ return table_.begin(n); }
|
1892
|
+
|
1893
|
+
//! <b>Requires</b>: n is in the range [0, this->bucket_count()).
|
1894
|
+
//!
|
1895
|
+
//! <b>Effects</b>: Returns a const_local_iterator pointing to the beginning
|
1896
|
+
//! of the sequence stored in the bucket n.
|
1897
|
+
//!
|
1898
|
+
//! <b>Complexity</b>: Constant.
|
1899
|
+
//!
|
1900
|
+
//! <b>Throws</b>: Nothing.
|
1901
|
+
//!
|
1902
|
+
//! <b>Note</b>: [this->begin(n), this->end(n)) is a valid range
|
1903
|
+
//! containing all of the elements in the nth bucket.
|
1904
|
+
const_local_iterator cbegin(size_type n) const
|
1905
|
+
{ return table_.cbegin(n); }
|
1906
|
+
|
1907
|
+
//! <b>Requires</b>: n is in the range [0, this->bucket_count()).
|
1908
|
+
//!
|
1909
|
+
//! <b>Effects</b>: Returns a local_iterator pointing to the end
|
1910
|
+
//! of the sequence stored in the bucket n.
|
1911
|
+
//!
|
1912
|
+
//! <b>Complexity</b>: Constant.
|
1913
|
+
//!
|
1914
|
+
//! <b>Throws</b>: Nothing.
|
1915
|
+
//!
|
1916
|
+
//! <b>Note</b>: [this->begin(n), this->end(n)) is a valid range
|
1917
|
+
//! containing all of the elements in the nth bucket.
|
1918
|
+
local_iterator end(size_type n)
|
1919
|
+
{ return table_.end(n); }
|
1920
|
+
|
1921
|
+
//! <b>Requires</b>: n is in the range [0, this->bucket_count()).
|
1922
|
+
//!
|
1923
|
+
//! <b>Effects</b>: Returns a const_local_iterator pointing to the end
|
1924
|
+
//! of the sequence stored in the bucket n.
|
1925
|
+
//!
|
1926
|
+
//! <b>Complexity</b>: Constant.
|
1927
|
+
//!
|
1928
|
+
//! <b>Throws</b>: Nothing.
|
1929
|
+
//!
|
1930
|
+
//! <b>Note</b>: [this->begin(n), this->end(n)) is a valid range
|
1931
|
+
//! containing all of the elements in the nth bucket.
|
1932
|
+
const_local_iterator end(size_type n) const
|
1933
|
+
{ return table_.end(n); }
|
1934
|
+
|
1935
|
+
//! <b>Requires</b>: n is in the range [0, this->bucket_count()).
|
1936
|
+
//!
|
1937
|
+
//! <b>Effects</b>: Returns a const_local_iterator pointing to the end
|
1938
|
+
//! of the sequence stored in the bucket n.
|
1939
|
+
//!
|
1940
|
+
//! <b>Complexity</b>: Constant.
|
1941
|
+
//!
|
1942
|
+
//! <b>Throws</b>: Nothing.
|
1943
|
+
//!
|
1944
|
+
//! <b>Note</b>: [this->begin(n), this->end(n)) is a valid range
|
1945
|
+
//! containing all of the elements in the nth bucket.
|
1946
|
+
const_local_iterator cend(size_type n) const
|
1947
|
+
{ return table_.cend(n); }
|
1948
|
+
|
1949
|
+
//! <b>Requires</b>: new_buckets must be a pointer to a new bucket array
|
1950
|
+
//! or the same as the old bucket array. new_size is the length of the
|
1951
|
+
//! the array pointed by new_buckets. If new_buckets == this->bucket_pointer()
|
1952
|
+
//! n can be bigger or smaller than this->bucket_count().
|
1953
|
+
//!
|
1954
|
+
//! <b>Effects</b>: Updates the internal reference with the new bucket erases
|
1955
|
+
//! the values from the old bucket and inserts then in the new one.
|
1956
|
+
//!
|
1957
|
+
//! If store_hash option is true, this method does not use the hash function.
|
1958
|
+
//!
|
1959
|
+
//! <b>Complexity</b>: Average case linear in this->size(), worst case quadratic.
|
1960
|
+
//!
|
1961
|
+
//! <b>Throws</b>: If the hasher functor throws.
|
1962
|
+
void rehash(const bucket_traits &new_bucket_traits)
|
1963
|
+
{ table_.rehash(new_bucket_traits); }
|
1964
|
+
|
1965
|
+
//! <b>Requires</b>:
|
1966
|
+
//!
|
1967
|
+
//! <b>Effects</b>:
|
1968
|
+
//!
|
1969
|
+
//! <b>Complexity</b>:
|
1970
|
+
//!
|
1971
|
+
//! <b>Throws</b>:
|
1972
|
+
//!
|
1973
|
+
//! <b>Note</b>: this method is only available if incremental<true> option is activated.
|
1974
|
+
bool incremental_rehash(bool grow = true)
|
1975
|
+
{ return table_.incremental_rehash(grow); }
|
1976
|
+
|
1977
|
+
//! <b>Note</b>: this method is only available if incremental<true> option is activated.
|
1978
|
+
bool incremental_rehash(const bucket_traits &new_bucket_traits)
|
1979
|
+
{ return table_.incremental_rehash(new_bucket_traits); }
|
1980
|
+
|
1981
|
+
//! <b>Requires</b>:
|
1982
|
+
//!
|
1983
|
+
//! <b>Effects</b>:
|
1984
|
+
//!
|
1985
|
+
//! <b>Complexity</b>:
|
1986
|
+
//!
|
1987
|
+
//! <b>Throws</b>:
|
1988
|
+
size_type split_count() const
|
1989
|
+
{ return table_.split_count(); }
|
1990
|
+
|
1991
|
+
//! <b>Effects</b>: Returns the nearest new bucket count optimized for
|
1992
|
+
//! the container that is bigger than n. This suggestion can be used
|
1993
|
+
//! to create bucket arrays with a size that will usually improve
|
1994
|
+
//! container's performance. If such value does not exist, the
|
1995
|
+
//! higher possible value is returned.
|
1996
|
+
//!
|
1997
|
+
//! <b>Complexity</b>: Amortized constant time.
|
1998
|
+
//!
|
1999
|
+
//! <b>Throws</b>: Nothing.
|
2000
|
+
static size_type suggested_upper_bucket_count(size_type n)
|
2001
|
+
{ return table_type::suggested_upper_bucket_count(n); }
|
2002
|
+
|
2003
|
+
//! <b>Effects</b>: Returns the nearest new bucket count optimized for
|
2004
|
+
//! the container that is smaller than n. This suggestion can be used
|
2005
|
+
//! to create bucket arrays with a size that will usually improve
|
2006
|
+
//! container's performance. If such value does not exist, the
|
2007
|
+
//! lower possible value is returned.
|
2008
|
+
//!
|
2009
|
+
//! <b>Complexity</b>: Amortized constant time.
|
2010
|
+
//!
|
2011
|
+
//! <b>Throws</b>: Nothing.
|
2012
|
+
static size_type suggested_lower_bucket_count(size_type n)
|
2013
|
+
{ return table_type::suggested_lower_bucket_count(n); }
|
2014
|
+
};
|
2015
|
+
|
2016
|
+
//! Helper metafunction to define an \c unordered_multiset that yields to the same type when the
|
2017
|
+
//! same options (either explicitly or implicitly) are used.
|
2018
|
+
#if defined(BOOST_INTRUSIVE_DOXYGEN_INVOKED) || defined(BOOST_INTRUSIVE_VARIADIC_TEMPLATES)
|
2019
|
+
template<class T, class ...Options>
|
2020
|
+
#else
|
2021
|
+
template<class T, class O1 = none, class O2 = none
|
2022
|
+
, class O3 = none, class O4 = none
|
2023
|
+
, class O5 = none, class O6 = none
|
2024
|
+
, class O7 = none, class O8 = none
|
2025
|
+
, class O9 = none, class O10= none
|
2026
|
+
>
|
2027
|
+
#endif
|
2028
|
+
struct make_unordered_multiset
|
2029
|
+
{
|
2030
|
+
/// @cond
|
2031
|
+
typedef unordered_multiset_impl
|
2032
|
+
< typename make_hashtable_opt
|
2033
|
+
<T, false,
|
2034
|
+
#if !defined(BOOST_INTRUSIVE_VARIADIC_TEMPLATES)
|
2035
|
+
O1, O2, O3, O4, O5, O6, O7, O8, O9, O10
|
2036
|
+
#else
|
2037
|
+
Options...
|
2038
|
+
#endif
|
2039
|
+
>::type
|
2040
|
+
> implementation_defined;
|
2041
|
+
/// @endcond
|
2042
|
+
typedef implementation_defined type;
|
2043
|
+
};
|
2044
|
+
|
2045
|
+
#ifndef BOOST_INTRUSIVE_DOXYGEN_INVOKED
|
2046
|
+
|
2047
|
+
#if !defined(BOOST_INTRUSIVE_VARIADIC_TEMPLATES)
|
2048
|
+
template<class T, class O1, class O2, class O3, class O4, class O5, class O6, class O7, class O8, class O9, class O10>
|
2049
|
+
#else
|
2050
|
+
template<class T, class ...Options>
|
2051
|
+
#endif
|
2052
|
+
class unordered_multiset
|
2053
|
+
: public make_unordered_multiset<T,
|
2054
|
+
#if !defined(BOOST_INTRUSIVE_VARIADIC_TEMPLATES)
|
2055
|
+
O1, O2, O3, O4, O5, O6, O7, O8, O9, O10
|
2056
|
+
#else
|
2057
|
+
Options...
|
2058
|
+
#endif
|
2059
|
+
>::type
|
2060
|
+
{
|
2061
|
+
typedef typename make_unordered_multiset
|
2062
|
+
<T,
|
2063
|
+
#if !defined(BOOST_INTRUSIVE_VARIADIC_TEMPLATES)
|
2064
|
+
O1, O2, O3, O4, O5, O6, O7, O8, O9, O10
|
2065
|
+
#else
|
2066
|
+
Options...
|
2067
|
+
#endif
|
2068
|
+
>::type Base;
|
2069
|
+
//Assert if passed value traits are compatible with the type
|
2070
|
+
BOOST_STATIC_ASSERT((detail::is_same<typename Base::value_traits::value_type, T>::value));
|
2071
|
+
BOOST_MOVABLE_BUT_NOT_COPYABLE(unordered_multiset)
|
2072
|
+
|
2073
|
+
public:
|
2074
|
+
typedef typename Base::value_traits value_traits;
|
2075
|
+
typedef typename Base::bucket_traits bucket_traits;
|
2076
|
+
typedef typename Base::iterator iterator;
|
2077
|
+
typedef typename Base::const_iterator const_iterator;
|
2078
|
+
typedef typename Base::bucket_ptr bucket_ptr;
|
2079
|
+
typedef typename Base::size_type size_type;
|
2080
|
+
typedef typename Base::hasher hasher;
|
2081
|
+
typedef typename Base::key_equal key_equal;
|
2082
|
+
|
2083
|
+
unordered_multiset( const bucket_traits &b_traits
|
2084
|
+
, const hasher & hash_func = hasher()
|
2085
|
+
, const key_equal &equal_func = key_equal()
|
2086
|
+
, const value_traits &v_traits = value_traits())
|
2087
|
+
: Base(b_traits, hash_func, equal_func, v_traits)
|
2088
|
+
{}
|
2089
|
+
|
2090
|
+
template<class Iterator>
|
2091
|
+
unordered_multiset( Iterator b
|
2092
|
+
, Iterator e
|
2093
|
+
, const bucket_traits &b_traits
|
2094
|
+
, const hasher & hash_func = hasher()
|
2095
|
+
, const key_equal &equal_func = key_equal()
|
2096
|
+
, const value_traits &v_traits = value_traits())
|
2097
|
+
: Base(b, e, b_traits, hash_func, equal_func, v_traits)
|
2098
|
+
{}
|
2099
|
+
|
2100
|
+
unordered_multiset(BOOST_RV_REF(unordered_multiset) x)
|
2101
|
+
: Base(::boost::move(static_cast<Base&>(x)))
|
2102
|
+
{}
|
2103
|
+
|
2104
|
+
unordered_multiset& operator=(BOOST_RV_REF(unordered_multiset) x)
|
2105
|
+
{ this->Base::operator=(::boost::move(static_cast<Base&>(x))); return *this; }
|
2106
|
+
};
|
2107
|
+
|
2108
|
+
#endif
|
2109
|
+
|
2110
|
+
} //namespace intrusive
|
2111
|
+
} //namespace boost
|
2112
|
+
|
2113
|
+
#include <boost/intrusive/detail/config_end.hpp>
|
2114
|
+
|
2115
|
+
#endif //BOOST_INTRUSIVE_UNORDERED_SET_HPP
|