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,1742 @@
|
|
1
|
+
/////////////////////////////////////////////////////////////////////////////
|
2
|
+
//
|
3
|
+
// (C) Copyright Ion Gaztanaga 2007-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_TREE_ALGORITHMS_HPP
|
14
|
+
#define BOOST_INTRUSIVE_TREE_ALGORITHMS_HPP
|
15
|
+
|
16
|
+
#include <boost/intrusive/detail/config_begin.hpp>
|
17
|
+
#include <boost/intrusive/detail/assert.hpp>
|
18
|
+
#include <boost/intrusive/intrusive_fwd.hpp>
|
19
|
+
#include <cstddef>
|
20
|
+
#include <boost/intrusive/detail/utilities.hpp>
|
21
|
+
#include <boost/intrusive/pointer_traits.hpp>
|
22
|
+
|
23
|
+
namespace boost {
|
24
|
+
namespace intrusive {
|
25
|
+
namespace detail {
|
26
|
+
|
27
|
+
//! This is an implementation of a binary search tree.
|
28
|
+
//! A node in the search tree has references to its children and its parent. This
|
29
|
+
//! is to allow traversal of the whole tree from a given node making the
|
30
|
+
//! implementation of iterator a pointer to a node.
|
31
|
+
//! At the top of the tree a node is used specially. This node's parent pointer
|
32
|
+
//! is pointing to the root of the tree. Its left pointer points to the
|
33
|
+
//! leftmost node in the tree and the right pointer to the rightmost one.
|
34
|
+
//! This node is used to represent the end-iterator.
|
35
|
+
//!
|
36
|
+
//! +---------+
|
37
|
+
//! header------------------------------>| |
|
38
|
+
//! | |
|
39
|
+
//! +----------(left)--------| |--------(right)---------+
|
40
|
+
//! | +---------+ |
|
41
|
+
//! | | |
|
42
|
+
//! | | (parent) |
|
43
|
+
//! | | |
|
44
|
+
//! | | |
|
45
|
+
//! | +---------+ |
|
46
|
+
//! root of tree ..|......................> | | |
|
47
|
+
//! | | D | |
|
48
|
+
//! | | | |
|
49
|
+
//! | +-------+---------+-------+ |
|
50
|
+
//! | | | |
|
51
|
+
//! | | | |
|
52
|
+
//! | | | |
|
53
|
+
//! | | | |
|
54
|
+
//! | | | |
|
55
|
+
//! | +---------+ +---------+ |
|
56
|
+
//! | | | | | |
|
57
|
+
//! | | B | | F | |
|
58
|
+
//! | | | | | |
|
59
|
+
//! | +--+---------+--+ +--+---------+--+ |
|
60
|
+
//! | | | | | |
|
61
|
+
//! | | | | | |
|
62
|
+
//! | | | | | |
|
63
|
+
//! | +---+-----+ +-----+---+ +---+-----+ +-----+---+ |
|
64
|
+
//! +-->| | | | | | | |<--+
|
65
|
+
//! | A | | C | | E | | G |
|
66
|
+
//! | | | | | | | |
|
67
|
+
//! +---------+ +---------+ +---------+ +---------+
|
68
|
+
//!
|
69
|
+
|
70
|
+
//! tree_algorithms is configured with a NodeTraits class, which encapsulates the
|
71
|
+
//! information about the node to be manipulated. NodeTraits must support the
|
72
|
+
//! following interface:
|
73
|
+
//!
|
74
|
+
//! <b>Typedefs</b>:
|
75
|
+
//!
|
76
|
+
//! <tt>node</tt>: The type of the node that forms the circular list
|
77
|
+
//!
|
78
|
+
//! <tt>node_ptr</tt>: A pointer to a node
|
79
|
+
//!
|
80
|
+
//! <tt>const_node_ptr</tt>: A pointer to a const node
|
81
|
+
//!
|
82
|
+
//! <b>Static functions</b>:
|
83
|
+
//!
|
84
|
+
//! <tt>static node_ptr get_parent(const_node_ptr n);</tt>
|
85
|
+
//!
|
86
|
+
//! <tt>static void set_parent(node_ptr n, node_ptr parent);</tt>
|
87
|
+
//!
|
88
|
+
//! <tt>static node_ptr get_left(const_node_ptr n);</tt>
|
89
|
+
//!
|
90
|
+
//! <tt>static void set_left(node_ptr n, node_ptr left);</tt>
|
91
|
+
//!
|
92
|
+
//! <tt>static node_ptr get_right(const_node_ptr n);</tt>
|
93
|
+
//!
|
94
|
+
//! <tt>static void set_right(node_ptr n, node_ptr right);</tt>
|
95
|
+
template<class NodeTraits>
|
96
|
+
class tree_algorithms
|
97
|
+
{
|
98
|
+
public:
|
99
|
+
typedef typename NodeTraits::node node;
|
100
|
+
typedef NodeTraits node_traits;
|
101
|
+
typedef typename NodeTraits::node_ptr node_ptr;
|
102
|
+
typedef typename NodeTraits::const_node_ptr const_node_ptr;
|
103
|
+
|
104
|
+
//! This type is the information that will be filled by insert_unique_check
|
105
|
+
struct insert_commit_data
|
106
|
+
{
|
107
|
+
insert_commit_data()
|
108
|
+
: link_left(false)
|
109
|
+
, node()
|
110
|
+
{}
|
111
|
+
bool link_left;
|
112
|
+
node_ptr node;
|
113
|
+
};
|
114
|
+
|
115
|
+
struct nop_erase_fixup
|
116
|
+
{
|
117
|
+
void operator()(const node_ptr&, const node_ptr&){}
|
118
|
+
};
|
119
|
+
|
120
|
+
/// @cond
|
121
|
+
private:
|
122
|
+
template<class Disposer>
|
123
|
+
struct dispose_subtree_disposer
|
124
|
+
{
|
125
|
+
dispose_subtree_disposer(Disposer &disp, const node_ptr & subtree)
|
126
|
+
: disposer_(&disp), subtree_(subtree)
|
127
|
+
{}
|
128
|
+
|
129
|
+
void release()
|
130
|
+
{ disposer_ = 0; }
|
131
|
+
|
132
|
+
~dispose_subtree_disposer()
|
133
|
+
{
|
134
|
+
if(disposer_){
|
135
|
+
dispose_subtree(subtree_, *disposer_);
|
136
|
+
}
|
137
|
+
}
|
138
|
+
Disposer *disposer_;
|
139
|
+
node_ptr subtree_;
|
140
|
+
};
|
141
|
+
|
142
|
+
static node_ptr uncast(const const_node_ptr & ptr)
|
143
|
+
{ return pointer_traits<node_ptr>::const_cast_from(ptr); }
|
144
|
+
|
145
|
+
/// @endcond
|
146
|
+
|
147
|
+
public:
|
148
|
+
static node_ptr begin_node(const const_node_ptr & header)
|
149
|
+
{ return node_traits::get_left(header); }
|
150
|
+
|
151
|
+
static node_ptr end_node(const const_node_ptr & header)
|
152
|
+
{ return uncast(header); }
|
153
|
+
|
154
|
+
//! <b>Requires</b>: 'node' is a node of the tree or an node initialized
|
155
|
+
//! by init(...) or init_node.
|
156
|
+
//!
|
157
|
+
//! <b>Effects</b>: Returns true if the node is initialized by init() or init_node().
|
158
|
+
//!
|
159
|
+
//! <b>Complexity</b>: Constant time.
|
160
|
+
//!
|
161
|
+
//! <b>Throws</b>: Nothing.
|
162
|
+
static bool unique(const const_node_ptr & node)
|
163
|
+
{ return !NodeTraits::get_parent(node); }
|
164
|
+
|
165
|
+
static node_ptr get_header(const const_node_ptr & node)
|
166
|
+
{
|
167
|
+
node_ptr h = uncast(node);
|
168
|
+
if(NodeTraits::get_parent(node)){
|
169
|
+
h = NodeTraits::get_parent(node);
|
170
|
+
while(!is_header(h))
|
171
|
+
h = NodeTraits::get_parent(h);
|
172
|
+
}
|
173
|
+
return h;
|
174
|
+
}
|
175
|
+
|
176
|
+
//! <b>Requires</b>: node1 and node2 can't be header nodes
|
177
|
+
//! of two trees.
|
178
|
+
//!
|
179
|
+
//! <b>Effects</b>: Swaps two nodes. After the function node1 will be inserted
|
180
|
+
//! in the position node2 before the function. node2 will be inserted in the
|
181
|
+
//! position node1 had before the function.
|
182
|
+
//!
|
183
|
+
//! <b>Complexity</b>: Logarithmic.
|
184
|
+
//!
|
185
|
+
//! <b>Throws</b>: Nothing.
|
186
|
+
//!
|
187
|
+
//! <b>Note</b>: This function will break container ordering invariants if
|
188
|
+
//! node1 and node2 are not equivalent according to the ordering rules.
|
189
|
+
//!
|
190
|
+
//!Experimental function
|
191
|
+
static void swap_nodes(const node_ptr & node1, const node_ptr & node2)
|
192
|
+
{
|
193
|
+
if(node1 == node2)
|
194
|
+
return;
|
195
|
+
|
196
|
+
node_ptr header1(get_header(node1)), header2(get_header(node2));
|
197
|
+
swap_nodes(node1, header1, node2, header2);
|
198
|
+
}
|
199
|
+
|
200
|
+
//! <b>Requires</b>: node1 and node2 can't be header nodes
|
201
|
+
//! of two trees with header header1 and header2.
|
202
|
+
//!
|
203
|
+
//! <b>Effects</b>: Swaps two nodes. After the function node1 will be inserted
|
204
|
+
//! in the position node2 before the function. node2 will be inserted in the
|
205
|
+
//! position node1 had before the function.
|
206
|
+
//!
|
207
|
+
//! <b>Complexity</b>: Constant.
|
208
|
+
//!
|
209
|
+
//! <b>Throws</b>: Nothing.
|
210
|
+
//!
|
211
|
+
//! <b>Note</b>: This function will break container ordering invariants if
|
212
|
+
//! node1 and node2 are not equivalent according to the ordering rules.
|
213
|
+
//!
|
214
|
+
//!Experimental function
|
215
|
+
static void swap_nodes(const node_ptr & node1, const node_ptr & header1, const node_ptr & node2, const node_ptr & header2)
|
216
|
+
{
|
217
|
+
if(node1 == node2)
|
218
|
+
return;
|
219
|
+
|
220
|
+
//node1 and node2 must not be header nodes
|
221
|
+
//BOOST_INTRUSIVE_INVARIANT_ASSERT((header1 != node1 && header2 != node2));
|
222
|
+
if(header1 != header2){
|
223
|
+
//Update header1 if necessary
|
224
|
+
if(node1 == NodeTraits::get_left(header1)){
|
225
|
+
NodeTraits::set_left(header1, node2);
|
226
|
+
}
|
227
|
+
|
228
|
+
if(node1 == NodeTraits::get_right(header1)){
|
229
|
+
NodeTraits::set_right(header1, node2);
|
230
|
+
}
|
231
|
+
|
232
|
+
if(node1 == NodeTraits::get_parent(header1)){
|
233
|
+
NodeTraits::set_parent(header1, node2);
|
234
|
+
}
|
235
|
+
|
236
|
+
//Update header2 if necessary
|
237
|
+
if(node2 == NodeTraits::get_left(header2)){
|
238
|
+
NodeTraits::set_left(header2, node1);
|
239
|
+
}
|
240
|
+
|
241
|
+
if(node2 == NodeTraits::get_right(header2)){
|
242
|
+
NodeTraits::set_right(header2, node1);
|
243
|
+
}
|
244
|
+
|
245
|
+
if(node2 == NodeTraits::get_parent(header2)){
|
246
|
+
NodeTraits::set_parent(header2, node1);
|
247
|
+
}
|
248
|
+
}
|
249
|
+
else{
|
250
|
+
//If both nodes are from the same tree
|
251
|
+
//Update header if necessary
|
252
|
+
if(node1 == NodeTraits::get_left(header1)){
|
253
|
+
NodeTraits::set_left(header1, node2);
|
254
|
+
}
|
255
|
+
else if(node2 == NodeTraits::get_left(header2)){
|
256
|
+
NodeTraits::set_left(header2, node1);
|
257
|
+
}
|
258
|
+
|
259
|
+
if(node1 == NodeTraits::get_right(header1)){
|
260
|
+
NodeTraits::set_right(header1, node2);
|
261
|
+
}
|
262
|
+
else if(node2 == NodeTraits::get_right(header2)){
|
263
|
+
NodeTraits::set_right(header2, node1);
|
264
|
+
}
|
265
|
+
|
266
|
+
if(node1 == NodeTraits::get_parent(header1)){
|
267
|
+
NodeTraits::set_parent(header1, node2);
|
268
|
+
}
|
269
|
+
else if(node2 == NodeTraits::get_parent(header2)){
|
270
|
+
NodeTraits::set_parent(header2, node1);
|
271
|
+
}
|
272
|
+
|
273
|
+
//Adjust data in nodes to be swapped
|
274
|
+
//so that final link swap works as expected
|
275
|
+
if(node1 == NodeTraits::get_parent(node2)){
|
276
|
+
NodeTraits::set_parent(node2, node2);
|
277
|
+
|
278
|
+
if(node2 == NodeTraits::get_right(node1)){
|
279
|
+
NodeTraits::set_right(node1, node1);
|
280
|
+
}
|
281
|
+
else{
|
282
|
+
NodeTraits::set_left(node1, node1);
|
283
|
+
}
|
284
|
+
}
|
285
|
+
else if(node2 == NodeTraits::get_parent(node1)){
|
286
|
+
NodeTraits::set_parent(node1, node1);
|
287
|
+
|
288
|
+
if(node1 == NodeTraits::get_right(node2)){
|
289
|
+
NodeTraits::set_right(node2, node2);
|
290
|
+
}
|
291
|
+
else{
|
292
|
+
NodeTraits::set_left(node2, node2);
|
293
|
+
}
|
294
|
+
}
|
295
|
+
}
|
296
|
+
|
297
|
+
//Now swap all the links
|
298
|
+
node_ptr temp;
|
299
|
+
//swap left link
|
300
|
+
temp = NodeTraits::get_left(node1);
|
301
|
+
NodeTraits::set_left(node1, NodeTraits::get_left(node2));
|
302
|
+
NodeTraits::set_left(node2, temp);
|
303
|
+
//swap right link
|
304
|
+
temp = NodeTraits::get_right(node1);
|
305
|
+
NodeTraits::set_right(node1, NodeTraits::get_right(node2));
|
306
|
+
NodeTraits::set_right(node2, temp);
|
307
|
+
//swap parent link
|
308
|
+
temp = NodeTraits::get_parent(node1);
|
309
|
+
NodeTraits::set_parent(node1, NodeTraits::get_parent(node2));
|
310
|
+
NodeTraits::set_parent(node2, temp);
|
311
|
+
|
312
|
+
//Now adjust adjacent nodes for newly inserted node 1
|
313
|
+
if((temp = NodeTraits::get_left(node1))){
|
314
|
+
NodeTraits::set_parent(temp, node1);
|
315
|
+
}
|
316
|
+
if((temp = NodeTraits::get_right(node1))){
|
317
|
+
NodeTraits::set_parent(temp, node1);
|
318
|
+
}
|
319
|
+
if((temp = NodeTraits::get_parent(node1)) &&
|
320
|
+
//The header has been already updated so avoid it
|
321
|
+
temp != header2){
|
322
|
+
if(NodeTraits::get_left(temp) == node2){
|
323
|
+
NodeTraits::set_left(temp, node1);
|
324
|
+
}
|
325
|
+
if(NodeTraits::get_right(temp) == node2){
|
326
|
+
NodeTraits::set_right(temp, node1);
|
327
|
+
}
|
328
|
+
}
|
329
|
+
//Now adjust adjacent nodes for newly inserted node 2
|
330
|
+
if((temp = NodeTraits::get_left(node2))){
|
331
|
+
NodeTraits::set_parent(temp, node2);
|
332
|
+
}
|
333
|
+
if((temp = NodeTraits::get_right(node2))){
|
334
|
+
NodeTraits::set_parent(temp, node2);
|
335
|
+
}
|
336
|
+
if((temp = NodeTraits::get_parent(node2)) &&
|
337
|
+
//The header has been already updated so avoid it
|
338
|
+
temp != header1){
|
339
|
+
if(NodeTraits::get_left(temp) == node1){
|
340
|
+
NodeTraits::set_left(temp, node2);
|
341
|
+
}
|
342
|
+
if(NodeTraits::get_right(temp) == node1){
|
343
|
+
NodeTraits::set_right(temp, node2);
|
344
|
+
}
|
345
|
+
}
|
346
|
+
}
|
347
|
+
|
348
|
+
//! <b>Requires</b>: node_to_be_replaced must be inserted in a tree
|
349
|
+
//! and new_node must not be inserted in a tree.
|
350
|
+
//!
|
351
|
+
//! <b>Effects</b>: Replaces node_to_be_replaced in its position in the
|
352
|
+
//! tree with new_node. The tree does not need to be rebalanced
|
353
|
+
//!
|
354
|
+
//! <b>Complexity</b>: Logarithmic.
|
355
|
+
//!
|
356
|
+
//! <b>Throws</b>: Nothing.
|
357
|
+
//!
|
358
|
+
//! <b>Note</b>: This function will break container ordering invariants if
|
359
|
+
//! new_node is not equivalent to node_to_be_replaced according to the
|
360
|
+
//! ordering rules. This function is faster than erasing and inserting
|
361
|
+
//! the node, since no rebalancing and comparison is needed.
|
362
|
+
//!
|
363
|
+
//!Experimental function
|
364
|
+
static void replace_node(const node_ptr & node_to_be_replaced, const node_ptr & new_node)
|
365
|
+
{
|
366
|
+
if(node_to_be_replaced == new_node)
|
367
|
+
return;
|
368
|
+
replace_node(node_to_be_replaced, get_header(node_to_be_replaced), new_node);
|
369
|
+
}
|
370
|
+
|
371
|
+
//! <b>Requires</b>: node_to_be_replaced must be inserted in a tree
|
372
|
+
//! with header "header" and new_node must not be inserted in a tree.
|
373
|
+
//!
|
374
|
+
//! <b>Effects</b>: Replaces node_to_be_replaced in its position in the
|
375
|
+
//! tree with new_node. The tree does not need to be rebalanced
|
376
|
+
//!
|
377
|
+
//! <b>Complexity</b>: Constant.
|
378
|
+
//!
|
379
|
+
//! <b>Throws</b>: Nothing.
|
380
|
+
//!
|
381
|
+
//! <b>Note</b>: This function will break container ordering invariants if
|
382
|
+
//! new_node is not equivalent to node_to_be_replaced according to the
|
383
|
+
//! ordering rules. This function is faster than erasing and inserting
|
384
|
+
//! the node, since no rebalancing or comparison is needed.
|
385
|
+
//!
|
386
|
+
//!Experimental function
|
387
|
+
static void replace_node(const node_ptr & node_to_be_replaced, const node_ptr & header, const node_ptr & new_node)
|
388
|
+
{
|
389
|
+
if(node_to_be_replaced == new_node)
|
390
|
+
return;
|
391
|
+
|
392
|
+
//Update header if necessary
|
393
|
+
if(node_to_be_replaced == NodeTraits::get_left(header)){
|
394
|
+
NodeTraits::set_left(header, new_node);
|
395
|
+
}
|
396
|
+
|
397
|
+
if(node_to_be_replaced == NodeTraits::get_right(header)){
|
398
|
+
NodeTraits::set_right(header, new_node);
|
399
|
+
}
|
400
|
+
|
401
|
+
if(node_to_be_replaced == NodeTraits::get_parent(header)){
|
402
|
+
NodeTraits::set_parent(header, new_node);
|
403
|
+
}
|
404
|
+
|
405
|
+
//Now set data from the original node
|
406
|
+
node_ptr temp;
|
407
|
+
NodeTraits::set_left(new_node, NodeTraits::get_left(node_to_be_replaced));
|
408
|
+
NodeTraits::set_right(new_node, NodeTraits::get_right(node_to_be_replaced));
|
409
|
+
NodeTraits::set_parent(new_node, NodeTraits::get_parent(node_to_be_replaced));
|
410
|
+
|
411
|
+
//Now adjust adjacent nodes for newly inserted node
|
412
|
+
if((temp = NodeTraits::get_left(new_node))){
|
413
|
+
NodeTraits::set_parent(temp, new_node);
|
414
|
+
}
|
415
|
+
if((temp = NodeTraits::get_right(new_node))){
|
416
|
+
NodeTraits::set_parent(temp, new_node);
|
417
|
+
}
|
418
|
+
if((temp = NodeTraits::get_parent(new_node)) &&
|
419
|
+
//The header has been already updated so avoid it
|
420
|
+
temp != header){
|
421
|
+
if(NodeTraits::get_left(temp) == node_to_be_replaced){
|
422
|
+
NodeTraits::set_left(temp, new_node);
|
423
|
+
}
|
424
|
+
if(NodeTraits::get_right(temp) == node_to_be_replaced){
|
425
|
+
NodeTraits::set_right(temp, new_node);
|
426
|
+
}
|
427
|
+
}
|
428
|
+
}
|
429
|
+
|
430
|
+
//! <b>Requires</b>: 'node' is a node from the tree except the header.
|
431
|
+
//!
|
432
|
+
//! <b>Effects</b>: Returns the next node of the tree.
|
433
|
+
//!
|
434
|
+
//! <b>Complexity</b>: Average constant time.
|
435
|
+
//!
|
436
|
+
//! <b>Throws</b>: Nothing.
|
437
|
+
static node_ptr next_node(const node_ptr & node)
|
438
|
+
{
|
439
|
+
node_ptr p_right(NodeTraits::get_right(node));
|
440
|
+
if(p_right){
|
441
|
+
return minimum(p_right);
|
442
|
+
}
|
443
|
+
else {
|
444
|
+
node_ptr p(node);
|
445
|
+
node_ptr x = NodeTraits::get_parent(p);
|
446
|
+
while(p == NodeTraits::get_right(x)){
|
447
|
+
p = x;
|
448
|
+
x = NodeTraits::get_parent(x);
|
449
|
+
}
|
450
|
+
return NodeTraits::get_right(p) != x ? x : uncast(p);
|
451
|
+
}
|
452
|
+
}
|
453
|
+
|
454
|
+
//! <b>Requires</b>: 'node' is a node from the tree except the leftmost node.
|
455
|
+
//!
|
456
|
+
//! <b>Effects</b>: Returns the previous node of the tree.
|
457
|
+
//!
|
458
|
+
//! <b>Complexity</b>: Average constant time.
|
459
|
+
//!
|
460
|
+
//! <b>Throws</b>: Nothing.
|
461
|
+
static node_ptr prev_node(const node_ptr & node)
|
462
|
+
{
|
463
|
+
if(is_header(node)){
|
464
|
+
return NodeTraits::get_right(node);
|
465
|
+
//return maximum(NodeTraits::get_parent(node));
|
466
|
+
}
|
467
|
+
else if(NodeTraits::get_left(node)){
|
468
|
+
return maximum(NodeTraits::get_left(node));
|
469
|
+
}
|
470
|
+
else {
|
471
|
+
node_ptr p(node);
|
472
|
+
node_ptr x = NodeTraits::get_parent(p);
|
473
|
+
while(p == NodeTraits::get_left(x)){
|
474
|
+
p = x;
|
475
|
+
x = NodeTraits::get_parent(x);
|
476
|
+
}
|
477
|
+
return x;
|
478
|
+
}
|
479
|
+
}
|
480
|
+
|
481
|
+
//! <b>Requires</b>: 'node' is a node of a tree but not the header.
|
482
|
+
//!
|
483
|
+
//! <b>Effects</b>: Returns the minimum node of the subtree starting at p.
|
484
|
+
//!
|
485
|
+
//! <b>Complexity</b>: Logarithmic to the size of the subtree.
|
486
|
+
//!
|
487
|
+
//! <b>Throws</b>: Nothing.
|
488
|
+
static node_ptr minimum (node_ptr node)
|
489
|
+
{
|
490
|
+
for(node_ptr p_left = NodeTraits::get_left(node)
|
491
|
+
;p_left
|
492
|
+
;p_left = NodeTraits::get_left(node)){
|
493
|
+
node = p_left;
|
494
|
+
}
|
495
|
+
return node;
|
496
|
+
}
|
497
|
+
|
498
|
+
//! <b>Requires</b>: 'node' is a node of a tree but not the header.
|
499
|
+
//!
|
500
|
+
//! <b>Effects</b>: Returns the maximum node of the subtree starting at p.
|
501
|
+
//!
|
502
|
+
//! <b>Complexity</b>: Logarithmic to the size of the subtree.
|
503
|
+
//!
|
504
|
+
//! <b>Throws</b>: Nothing.
|
505
|
+
static node_ptr maximum(node_ptr node)
|
506
|
+
{
|
507
|
+
for(node_ptr p_right = NodeTraits::get_right(node)
|
508
|
+
;p_right
|
509
|
+
;p_right = NodeTraits::get_right(node)){
|
510
|
+
node = p_right;
|
511
|
+
}
|
512
|
+
return node;
|
513
|
+
}
|
514
|
+
|
515
|
+
//! <b>Requires</b>: 'node' must not be part of any tree.
|
516
|
+
//!
|
517
|
+
//! <b>Effects</b>: After the function unique(node) == true.
|
518
|
+
//!
|
519
|
+
//! <b>Complexity</b>: Constant.
|
520
|
+
//!
|
521
|
+
//! <b>Throws</b>: Nothing.
|
522
|
+
//!
|
523
|
+
//! <b>Nodes</b>: If node is inserted in a tree, this function corrupts the tree.
|
524
|
+
static void init(const node_ptr & node)
|
525
|
+
{
|
526
|
+
NodeTraits::set_parent(node, node_ptr());
|
527
|
+
NodeTraits::set_left(node, node_ptr());
|
528
|
+
NodeTraits::set_right(node, node_ptr());
|
529
|
+
};
|
530
|
+
|
531
|
+
//! <b>Effects</b>: Returns true if node is in the same state as if called init(node)
|
532
|
+
//!
|
533
|
+
//! <b>Complexity</b>: Constant.
|
534
|
+
//!
|
535
|
+
//! <b>Throws</b>: Nothing.
|
536
|
+
static bool inited(const const_node_ptr & node)
|
537
|
+
{
|
538
|
+
return !NodeTraits::get_parent(node) &&
|
539
|
+
!NodeTraits::get_left(node) &&
|
540
|
+
!NodeTraits::get_right(node) ;
|
541
|
+
};
|
542
|
+
|
543
|
+
//! <b>Requires</b>: node must not be part of any tree.
|
544
|
+
//!
|
545
|
+
//! <b>Effects</b>: Initializes the header to represent an empty tree.
|
546
|
+
//! unique(header) == true.
|
547
|
+
//!
|
548
|
+
//! <b>Complexity</b>: Constant.
|
549
|
+
//!
|
550
|
+
//! <b>Throws</b>: Nothing.
|
551
|
+
//!
|
552
|
+
//! <b>Nodes</b>: If node is inserted in a tree, this function corrupts the tree.
|
553
|
+
static void init_header(const node_ptr & header)
|
554
|
+
{
|
555
|
+
NodeTraits::set_parent(header, node_ptr());
|
556
|
+
NodeTraits::set_left(header, header);
|
557
|
+
NodeTraits::set_right(header, header);
|
558
|
+
}
|
559
|
+
|
560
|
+
//! <b>Requires</b>: "disposer" must be an object function
|
561
|
+
//! taking a node_ptr parameter and shouldn't throw.
|
562
|
+
//!
|
563
|
+
//! <b>Effects</b>: Empties the target tree calling
|
564
|
+
//! <tt>void disposer::operator()(const node_ptr &)</tt> for every node of the tree
|
565
|
+
//! except the header.
|
566
|
+
//!
|
567
|
+
//! <b>Complexity</b>: Linear to the number of element of the source tree plus the.
|
568
|
+
//! number of elements of tree target tree when calling this function.
|
569
|
+
//!
|
570
|
+
//! <b>Throws</b>: If cloner functor throws. If this happens target nodes are disposed.
|
571
|
+
template<class Disposer>
|
572
|
+
static void clear_and_dispose(const node_ptr & header, Disposer disposer)
|
573
|
+
{
|
574
|
+
node_ptr source_root = NodeTraits::get_parent(header);
|
575
|
+
if(!source_root)
|
576
|
+
return;
|
577
|
+
dispose_subtree(source_root, disposer);
|
578
|
+
init_header(header);
|
579
|
+
}
|
580
|
+
|
581
|
+
//! <b>Requires</b>: header is the header of a tree.
|
582
|
+
//!
|
583
|
+
//! <b>Effects</b>: Unlinks the leftmost node from the tree, and
|
584
|
+
//! updates the header link to the new leftmost node.
|
585
|
+
//!
|
586
|
+
//! <b>Complexity</b>: Average complexity is constant time.
|
587
|
+
//!
|
588
|
+
//! <b>Throws</b>: Nothing.
|
589
|
+
//!
|
590
|
+
//! <b>Notes</b>: This function breaks the tree and the tree can
|
591
|
+
//! only be used for more unlink_leftmost_without_rebalance calls.
|
592
|
+
//! This function is normally used to achieve a step by step
|
593
|
+
//! controlled destruction of the tree.
|
594
|
+
static node_ptr unlink_leftmost_without_rebalance(const node_ptr & header)
|
595
|
+
{
|
596
|
+
node_ptr leftmost = NodeTraits::get_left(header);
|
597
|
+
if (leftmost == header)
|
598
|
+
return node_ptr();
|
599
|
+
node_ptr leftmost_parent(NodeTraits::get_parent(leftmost));
|
600
|
+
node_ptr leftmost_right (NodeTraits::get_right(leftmost));
|
601
|
+
bool is_root = leftmost_parent == header;
|
602
|
+
|
603
|
+
if (leftmost_right){
|
604
|
+
NodeTraits::set_parent(leftmost_right, leftmost_parent);
|
605
|
+
NodeTraits::set_left(header, tree_algorithms::minimum(leftmost_right));
|
606
|
+
|
607
|
+
if (is_root)
|
608
|
+
NodeTraits::set_parent(header, leftmost_right);
|
609
|
+
else
|
610
|
+
NodeTraits::set_left(NodeTraits::get_parent(header), leftmost_right);
|
611
|
+
}
|
612
|
+
else if (is_root){
|
613
|
+
NodeTraits::set_parent(header, node_ptr());
|
614
|
+
NodeTraits::set_left(header, header);
|
615
|
+
NodeTraits::set_right(header, header);
|
616
|
+
}
|
617
|
+
else{
|
618
|
+
NodeTraits::set_left(leftmost_parent, node_ptr());
|
619
|
+
NodeTraits::set_left(header, leftmost_parent);
|
620
|
+
}
|
621
|
+
return leftmost;
|
622
|
+
}
|
623
|
+
|
624
|
+
//! <b>Requires</b>: node is a node of the tree but it's not the header.
|
625
|
+
//!
|
626
|
+
//! <b>Effects</b>: Returns the number of nodes of the subtree.
|
627
|
+
//!
|
628
|
+
//! <b>Complexity</b>: Linear time.
|
629
|
+
//!
|
630
|
+
//! <b>Throws</b>: Nothing.
|
631
|
+
static std::size_t count(const const_node_ptr & subtree)
|
632
|
+
{
|
633
|
+
if(!subtree) return 0;
|
634
|
+
std::size_t count = 0;
|
635
|
+
node_ptr p = minimum(uncast(subtree));
|
636
|
+
bool continue_looping = true;
|
637
|
+
while(continue_looping){
|
638
|
+
++count;
|
639
|
+
node_ptr p_right(NodeTraits::get_right(p));
|
640
|
+
if(p_right){
|
641
|
+
p = minimum(p_right);
|
642
|
+
}
|
643
|
+
else {
|
644
|
+
for(;;){
|
645
|
+
node_ptr q;
|
646
|
+
if (p == subtree){
|
647
|
+
continue_looping = false;
|
648
|
+
break;
|
649
|
+
}
|
650
|
+
q = p;
|
651
|
+
p = NodeTraits::get_parent(p);
|
652
|
+
if (NodeTraits::get_left(p) == q)
|
653
|
+
break;
|
654
|
+
}
|
655
|
+
}
|
656
|
+
}
|
657
|
+
return count;
|
658
|
+
}
|
659
|
+
|
660
|
+
//! <b>Requires</b>: node is a node of the tree but it's not the header.
|
661
|
+
//!
|
662
|
+
//! <b>Effects</b>: Returns the number of nodes of the subtree.
|
663
|
+
//!
|
664
|
+
//! <b>Complexity</b>: Linear time.
|
665
|
+
//!
|
666
|
+
//! <b>Throws</b>: Nothing.
|
667
|
+
static std::size_t size(const const_node_ptr & header)
|
668
|
+
{
|
669
|
+
node_ptr beg(begin_node(header));
|
670
|
+
node_ptr end(end_node(header));
|
671
|
+
std::size_t i = 0;
|
672
|
+
for(;beg != end; beg = next_node(beg)) ++i;
|
673
|
+
return i;
|
674
|
+
}
|
675
|
+
|
676
|
+
//! <b>Requires</b>: header1 and header2 must be the header nodes
|
677
|
+
//! of two trees.
|
678
|
+
//!
|
679
|
+
//! <b>Effects</b>: Swaps two trees. After the function header1 will contain
|
680
|
+
//! links to the second tree and header2 will have links to the first tree.
|
681
|
+
//!
|
682
|
+
//! <b>Complexity</b>: Constant.
|
683
|
+
//!
|
684
|
+
//! <b>Throws</b>: Nothing.
|
685
|
+
static void swap_tree(const node_ptr & header1, const node_ptr & header2)
|
686
|
+
{
|
687
|
+
if(header1 == header2)
|
688
|
+
return;
|
689
|
+
|
690
|
+
node_ptr tmp;
|
691
|
+
|
692
|
+
//Parent swap
|
693
|
+
tmp = NodeTraits::get_parent(header1);
|
694
|
+
NodeTraits::set_parent(header1, NodeTraits::get_parent(header2));
|
695
|
+
NodeTraits::set_parent(header2, tmp);
|
696
|
+
//Left swap
|
697
|
+
tmp = NodeTraits::get_left(header1);
|
698
|
+
NodeTraits::set_left(header1, NodeTraits::get_left(header2));
|
699
|
+
NodeTraits::set_left(header2, tmp);
|
700
|
+
//Right swap
|
701
|
+
tmp = NodeTraits::get_right(header1);
|
702
|
+
NodeTraits::set_right(header1, NodeTraits::get_right(header2));
|
703
|
+
NodeTraits::set_right(header2, tmp);
|
704
|
+
|
705
|
+
//Now test parent
|
706
|
+
node_ptr h1_parent(NodeTraits::get_parent(header1));
|
707
|
+
if(h1_parent){
|
708
|
+
NodeTraits::set_parent(h1_parent, header1);
|
709
|
+
}
|
710
|
+
else{
|
711
|
+
NodeTraits::set_left(header1, header1);
|
712
|
+
NodeTraits::set_right(header1, header1);
|
713
|
+
}
|
714
|
+
|
715
|
+
node_ptr h2_parent(NodeTraits::get_parent(header2));
|
716
|
+
if(h2_parent){
|
717
|
+
NodeTraits::set_parent(h2_parent, header2);
|
718
|
+
}
|
719
|
+
else{
|
720
|
+
NodeTraits::set_left(header2, header2);
|
721
|
+
NodeTraits::set_right(header2, header2);
|
722
|
+
}
|
723
|
+
}
|
724
|
+
|
725
|
+
static bool is_header(const const_node_ptr & p)
|
726
|
+
{
|
727
|
+
node_ptr p_left (NodeTraits::get_left(p));
|
728
|
+
node_ptr p_right(NodeTraits::get_right(p));
|
729
|
+
if(!NodeTraits::get_parent(p) || //Header condition when empty tree
|
730
|
+
(p_left && p_right && //Header always has leftmost and rightmost
|
731
|
+
(p_left == p_right || //Header condition when only node
|
732
|
+
(NodeTraits::get_parent(p_left) != p ||
|
733
|
+
NodeTraits::get_parent(p_right) != p ))
|
734
|
+
//When tree size > 1 headers can't be leftmost's
|
735
|
+
//and rightmost's parent
|
736
|
+
)){
|
737
|
+
return true;
|
738
|
+
}
|
739
|
+
return false;
|
740
|
+
}
|
741
|
+
|
742
|
+
//! <b>Requires</b>: "header" must be the header node of a tree.
|
743
|
+
//! KeyNodePtrCompare is a function object that induces a strict weak
|
744
|
+
//! ordering compatible with the strict weak ordering used to create the
|
745
|
+
//! the tree. KeyNodePtrCompare can compare KeyType with tree's node_ptrs.
|
746
|
+
//!
|
747
|
+
//! <b>Effects</b>: Returns an node_ptr to the element that is equivalent to
|
748
|
+
//! "key" according to "comp" or "header" if that element does not exist.
|
749
|
+
//!
|
750
|
+
//! <b>Complexity</b>: Logarithmic.
|
751
|
+
//!
|
752
|
+
//! <b>Throws</b>: If "comp" throws.
|
753
|
+
template<class KeyType, class KeyNodePtrCompare>
|
754
|
+
static node_ptr find
|
755
|
+
(const const_node_ptr & header, const KeyType &key, KeyNodePtrCompare comp)
|
756
|
+
{
|
757
|
+
node_ptr end = uncast(header);
|
758
|
+
node_ptr y = lower_bound(header, key, comp);
|
759
|
+
return (y == end || comp(key, y)) ? end : y;
|
760
|
+
}
|
761
|
+
|
762
|
+
//! <b>Requires</b>: "header" must be the header node of a tree.
|
763
|
+
//! KeyNodePtrCompare is a function object that induces a strict weak
|
764
|
+
//! ordering compatible with the strict weak ordering used to create the
|
765
|
+
//! the tree. KeyNodePtrCompare can compare KeyType with tree's node_ptrs.
|
766
|
+
//! 'lower_key' must not be greater than 'upper_key' according to 'comp'. If
|
767
|
+
//! 'lower_key' == 'upper_key', ('left_closed' || 'right_closed') must be false.
|
768
|
+
//!
|
769
|
+
//! <b>Effects</b>: Returns an a pair with the following criteria:
|
770
|
+
//!
|
771
|
+
//! first = lower_bound(lower_key) if left_closed, upper_bound(lower_key) otherwise
|
772
|
+
//!
|
773
|
+
//! second = upper_bound(upper_key) if right_closed, lower_bound(upper_key) otherwise
|
774
|
+
//!
|
775
|
+
//! <b>Complexity</b>: Logarithmic.
|
776
|
+
//!
|
777
|
+
//! <b>Throws</b>: If "comp" throws.
|
778
|
+
//!
|
779
|
+
//! <b>Note</b>: This function can be more efficient than calling upper_bound
|
780
|
+
//! and lower_bound for lower_key and upper_key.
|
781
|
+
template< class KeyType, class KeyNodePtrCompare>
|
782
|
+
static std::pair<node_ptr, node_ptr> bounded_range
|
783
|
+
( const const_node_ptr & header
|
784
|
+
, const KeyType &lower_key
|
785
|
+
, const KeyType &upper_key
|
786
|
+
, KeyNodePtrCompare comp
|
787
|
+
, bool left_closed
|
788
|
+
, bool right_closed)
|
789
|
+
{
|
790
|
+
node_ptr y = uncast(header);
|
791
|
+
node_ptr x = NodeTraits::get_parent(header);
|
792
|
+
|
793
|
+
while(x){
|
794
|
+
//If x is less than lower_key the target
|
795
|
+
//range is on the right part
|
796
|
+
if(comp(x, lower_key)){
|
797
|
+
//Check for invalid input range
|
798
|
+
BOOST_INTRUSIVE_INVARIANT_ASSERT(comp(x, upper_key));
|
799
|
+
x = NodeTraits::get_right(x);
|
800
|
+
}
|
801
|
+
//If the upper_key is less than x, the target
|
802
|
+
//range is on the left part
|
803
|
+
else if(comp(upper_key, x)){
|
804
|
+
//y > upper_key
|
805
|
+
y = x;
|
806
|
+
x = NodeTraits::get_left(x);
|
807
|
+
}
|
808
|
+
else{
|
809
|
+
//x is inside the bounded range( x >= lower_key && x <= upper_key),
|
810
|
+
//so we must split lower and upper searches
|
811
|
+
//
|
812
|
+
//Sanity check: if lower_key and upper_key are equal, then both left_closed and right_closed can't be false
|
813
|
+
BOOST_INTRUSIVE_INVARIANT_ASSERT(left_closed || right_closed || comp(lower_key, x) || comp(x, upper_key));
|
814
|
+
return std::pair<node_ptr,node_ptr>(
|
815
|
+
left_closed
|
816
|
+
//If left_closed, then comp(x, lower_key) is already the lower_bound
|
817
|
+
//condition so we save one comparison and go to the next level
|
818
|
+
//following traditional lower_bound algo
|
819
|
+
? lower_bound_loop(NodeTraits::get_left(x), x, lower_key, comp)
|
820
|
+
//If left-open, comp(x, lower_key) is not the upper_bound algo
|
821
|
+
//condition so we must recheck current 'x' node with upper_bound algo
|
822
|
+
: upper_bound_loop(x, y, lower_key, comp)
|
823
|
+
,
|
824
|
+
right_closed
|
825
|
+
//If right_closed, then comp(upper_key, x) is already the upper_bound
|
826
|
+
//condition so we can save one comparison and go to the next level
|
827
|
+
//following lower_bound algo
|
828
|
+
? upper_bound_loop(NodeTraits::get_right(x), y, upper_key, comp)
|
829
|
+
//If right-open, comp(upper_key, x) is not the lower_bound algo
|
830
|
+
//condition so we must recheck current 'x' node with lower_bound algo
|
831
|
+
: lower_bound_loop(x, y, upper_key, comp)
|
832
|
+
);
|
833
|
+
}
|
834
|
+
}
|
835
|
+
return std::pair<node_ptr,node_ptr> (y, y);
|
836
|
+
}
|
837
|
+
|
838
|
+
//! <b>Requires</b>: "header" must be the header node of a tree.
|
839
|
+
//! KeyNodePtrCompare is a function object that induces a strict weak
|
840
|
+
//! ordering compatible with the strict weak ordering used to create the
|
841
|
+
//! the tree. KeyNodePtrCompare can compare KeyType with tree's node_ptrs.
|
842
|
+
//!
|
843
|
+
//! <b>Effects</b>: Returns an a pair of node_ptr delimiting a range containing
|
844
|
+
//! all elements that are equivalent to "key" according to "comp" or an
|
845
|
+
//! empty range that indicates the position where those elements would be
|
846
|
+
//! if there are no equivalent elements.
|
847
|
+
//!
|
848
|
+
//! <b>Complexity</b>: Logarithmic.
|
849
|
+
//!
|
850
|
+
//! <b>Throws</b>: If "comp" throws.
|
851
|
+
template<class KeyType, class KeyNodePtrCompare>
|
852
|
+
static std::pair<node_ptr, node_ptr> equal_range
|
853
|
+
(const const_node_ptr & header, const KeyType &key, KeyNodePtrCompare comp)
|
854
|
+
{
|
855
|
+
return bounded_range(header, key, key, comp, true, true);
|
856
|
+
}
|
857
|
+
|
858
|
+
//! <b>Requires</b>: "header" must be the header node of a tree.
|
859
|
+
//! KeyNodePtrCompare is a function object that induces a strict weak
|
860
|
+
//! ordering compatible with the strict weak ordering used to create the
|
861
|
+
//! the tree. KeyNodePtrCompare can compare KeyType with tree's node_ptrs.
|
862
|
+
//!
|
863
|
+
//! <b>Effects</b>: Returns an node_ptr to the first element that is
|
864
|
+
//! not less than "key" according to "comp" or "header" if that element does
|
865
|
+
//! not exist.
|
866
|
+
//!
|
867
|
+
//! <b>Complexity</b>: Logarithmic.
|
868
|
+
//!
|
869
|
+
//! <b>Throws</b>: If "comp" throws.
|
870
|
+
template<class KeyType, class KeyNodePtrCompare>
|
871
|
+
static node_ptr lower_bound
|
872
|
+
(const const_node_ptr & header, const KeyType &key, KeyNodePtrCompare comp)
|
873
|
+
{
|
874
|
+
return lower_bound_loop(NodeTraits::get_parent(header), uncast(header), key, comp);
|
875
|
+
}
|
876
|
+
|
877
|
+
//! <b>Requires</b>: "header" must be the header node of a tree.
|
878
|
+
//! KeyNodePtrCompare is a function object that induces a strict weak
|
879
|
+
//! ordering compatible with the strict weak ordering used to create the
|
880
|
+
//! the tree. KeyNodePtrCompare can compare KeyType with tree's node_ptrs.
|
881
|
+
//!
|
882
|
+
//! <b>Effects</b>: Returns an node_ptr to the first element that is greater
|
883
|
+
//! than "key" according to "comp" or "header" if that element does not exist.
|
884
|
+
//!
|
885
|
+
//! <b>Complexity</b>: Logarithmic.
|
886
|
+
//!
|
887
|
+
//! <b>Throws</b>: If "comp" throws.
|
888
|
+
template<class KeyType, class KeyNodePtrCompare>
|
889
|
+
static node_ptr upper_bound
|
890
|
+
(const const_node_ptr & header, const KeyType &key, KeyNodePtrCompare comp)
|
891
|
+
{
|
892
|
+
return upper_bound_loop(NodeTraits::get_parent(header), uncast(header), key, comp);
|
893
|
+
}
|
894
|
+
|
895
|
+
//! <b>Requires</b>: "header" must be the header node of a tree.
|
896
|
+
//! "commit_data" must have been obtained from a previous call to
|
897
|
+
//! "insert_unique_check". No objects should have been inserted or erased
|
898
|
+
//! from the set between the "insert_unique_check" that filled "commit_data"
|
899
|
+
//! and the call to "insert_commit".
|
900
|
+
//!
|
901
|
+
//!
|
902
|
+
//! <b>Effects</b>: Inserts new_node in the set using the information obtained
|
903
|
+
//! from the "commit_data" that a previous "insert_check" filled.
|
904
|
+
//!
|
905
|
+
//! <b>Complexity</b>: Constant time.
|
906
|
+
//!
|
907
|
+
//! <b>Throws</b>: Nothing.
|
908
|
+
//!
|
909
|
+
//! <b>Notes</b>: This function has only sense if a "insert_unique_check" has been
|
910
|
+
//! previously executed to fill "commit_data". No value should be inserted or
|
911
|
+
//! erased between the "insert_check" and "insert_commit" calls.
|
912
|
+
static void insert_unique_commit
|
913
|
+
(const node_ptr & header, const node_ptr & new_value, const insert_commit_data &commit_data)
|
914
|
+
{ return insert_commit(header, new_value, commit_data); }
|
915
|
+
|
916
|
+
static void insert_commit
|
917
|
+
(const node_ptr & header, const node_ptr & new_node, const insert_commit_data &commit_data)
|
918
|
+
{
|
919
|
+
//Check if commit_data has not been initialized by a insert_unique_check call.
|
920
|
+
BOOST_INTRUSIVE_INVARIANT_ASSERT(commit_data.node != node_ptr());
|
921
|
+
node_ptr parent_node(commit_data.node);
|
922
|
+
if(parent_node == header){
|
923
|
+
NodeTraits::set_parent(header, new_node);
|
924
|
+
NodeTraits::set_right(header, new_node);
|
925
|
+
NodeTraits::set_left(header, new_node);
|
926
|
+
}
|
927
|
+
else if(commit_data.link_left){
|
928
|
+
NodeTraits::set_left(parent_node, new_node);
|
929
|
+
if(parent_node == NodeTraits::get_left(header))
|
930
|
+
NodeTraits::set_left(header, new_node);
|
931
|
+
}
|
932
|
+
else{
|
933
|
+
NodeTraits::set_right(parent_node, new_node);
|
934
|
+
if(parent_node == NodeTraits::get_right(header))
|
935
|
+
NodeTraits::set_right(header, new_node);
|
936
|
+
}
|
937
|
+
NodeTraits::set_parent(new_node, parent_node);
|
938
|
+
NodeTraits::set_right(new_node, node_ptr());
|
939
|
+
NodeTraits::set_left(new_node, node_ptr());
|
940
|
+
}
|
941
|
+
|
942
|
+
//! <b>Requires</b>: "header" must be the header node of a tree.
|
943
|
+
//! KeyNodePtrCompare is a function object that induces a strict weak
|
944
|
+
//! ordering compatible with the strict weak ordering used to create the
|
945
|
+
//! the tree. NodePtrCompare compares KeyType with a node_ptr.
|
946
|
+
//!
|
947
|
+
//! <b>Effects</b>: Checks if there is an equivalent node to "key" in the
|
948
|
+
//! tree according to "comp" and obtains the needed information to realize
|
949
|
+
//! a constant-time node insertion if there is no equivalent node.
|
950
|
+
//!
|
951
|
+
//! <b>Returns</b>: If there is an equivalent value
|
952
|
+
//! returns a pair containing a node_ptr to the already present node
|
953
|
+
//! and false. If there is not equivalent key can be inserted returns true
|
954
|
+
//! in the returned pair's boolean and fills "commit_data" that is meant to
|
955
|
+
//! be used with the "insert_commit" function to achieve a constant-time
|
956
|
+
//! insertion function.
|
957
|
+
//!
|
958
|
+
//! <b>Complexity</b>: Average complexity is at most logarithmic.
|
959
|
+
//!
|
960
|
+
//! <b>Throws</b>: If "comp" throws.
|
961
|
+
//!
|
962
|
+
//! <b>Notes</b>: This function is used to improve performance when constructing
|
963
|
+
//! a node is expensive and the user does not want to have two equivalent nodes
|
964
|
+
//! in the tree: if there is an equivalent value
|
965
|
+
//! the constructed object must be discarded. Many times, the part of the
|
966
|
+
//! node that is used to impose the order is much cheaper to construct
|
967
|
+
//! than the node and this function offers the possibility to use that part
|
968
|
+
//! to check if the insertion will be successful.
|
969
|
+
//!
|
970
|
+
//! If the check is successful, the user can construct the node and use
|
971
|
+
//! "insert_commit" to insert the node in constant-time. This gives a total
|
972
|
+
//! logarithmic complexity to the insertion: check(O(log(N)) + commit(O(1)).
|
973
|
+
//!
|
974
|
+
//! "commit_data" remains valid for a subsequent "insert_unique_commit" only
|
975
|
+
//! if no more objects are inserted or erased from the set.
|
976
|
+
template<class KeyType, class KeyNodePtrCompare>
|
977
|
+
static std::pair<node_ptr, bool> insert_unique_check
|
978
|
+
(const const_node_ptr & header, const KeyType &key
|
979
|
+
,KeyNodePtrCompare comp, insert_commit_data &commit_data, std::size_t *pdepth = 0)
|
980
|
+
{
|
981
|
+
std::size_t depth = 0;
|
982
|
+
node_ptr h(uncast(header));
|
983
|
+
node_ptr y(h);
|
984
|
+
node_ptr x(NodeTraits::get_parent(y));
|
985
|
+
node_ptr prev = node_ptr();
|
986
|
+
|
987
|
+
//Find the upper bound, cache the previous value and if we should
|
988
|
+
//store it in the left or right node
|
989
|
+
bool left_child = true;
|
990
|
+
while(x){
|
991
|
+
++depth;
|
992
|
+
y = x;
|
993
|
+
x = (left_child = comp(key, x)) ?
|
994
|
+
NodeTraits::get_left(x) : (prev = y, NodeTraits::get_right(x));
|
995
|
+
}
|
996
|
+
|
997
|
+
if(pdepth) *pdepth = depth;
|
998
|
+
|
999
|
+
//Since we've found the upper bound there is no other value with the same key if:
|
1000
|
+
// - There is no previous node
|
1001
|
+
// - The previous node is less than the key
|
1002
|
+
if(!prev || comp(prev, key)){
|
1003
|
+
commit_data.link_left = left_child;
|
1004
|
+
commit_data.node = y;
|
1005
|
+
return std::pair<node_ptr, bool>(node_ptr(), true);
|
1006
|
+
}
|
1007
|
+
//If the previous value was not less than key, it means that it's equal
|
1008
|
+
//(because we've checked the upper bound)
|
1009
|
+
else{
|
1010
|
+
return std::pair<node_ptr, bool>(prev, false);
|
1011
|
+
}
|
1012
|
+
}
|
1013
|
+
|
1014
|
+
template<class KeyType, class KeyNodePtrCompare>
|
1015
|
+
static std::pair<node_ptr, bool> insert_unique_check
|
1016
|
+
(const const_node_ptr & header, const node_ptr &hint, const KeyType &key
|
1017
|
+
,KeyNodePtrCompare comp, insert_commit_data &commit_data, std::size_t *pdepth = 0)
|
1018
|
+
{
|
1019
|
+
//hint must be bigger than the key
|
1020
|
+
if(hint == header || comp(key, hint)){
|
1021
|
+
node_ptr prev(hint);
|
1022
|
+
//Previous value should be less than the key
|
1023
|
+
if(hint == begin_node(header) || comp((prev = prev_node(hint)), key)){
|
1024
|
+
commit_data.link_left = unique(header) || !NodeTraits::get_left(hint);
|
1025
|
+
commit_data.node = commit_data.link_left ? hint : prev;
|
1026
|
+
if(pdepth){
|
1027
|
+
*pdepth = commit_data.node == header ? 0 : depth(commit_data.node) + 1;
|
1028
|
+
}
|
1029
|
+
return std::pair<node_ptr, bool>(node_ptr(), true);
|
1030
|
+
}
|
1031
|
+
}
|
1032
|
+
//Hint was wrong, use hintless insertion
|
1033
|
+
return insert_unique_check(header, key, comp, commit_data, pdepth);
|
1034
|
+
}
|
1035
|
+
|
1036
|
+
template<class NodePtrCompare>
|
1037
|
+
static void insert_equal_check
|
1038
|
+
(const node_ptr &header, const node_ptr & hint, const node_ptr & new_node, NodePtrCompare comp
|
1039
|
+
, insert_commit_data &commit_data, std::size_t *pdepth = 0)
|
1040
|
+
{
|
1041
|
+
if(hint == header || !comp(hint, new_node)){
|
1042
|
+
node_ptr prev(hint);
|
1043
|
+
if(hint == NodeTraits::get_left(header) ||
|
1044
|
+
!comp(new_node, (prev = prev_node(hint)))){
|
1045
|
+
bool link_left = unique(header) || !NodeTraits::get_left(hint);
|
1046
|
+
commit_data.link_left = link_left;
|
1047
|
+
commit_data.node = link_left ? hint : prev;
|
1048
|
+
if(pdepth){
|
1049
|
+
*pdepth = commit_data.node == header ? 0 : depth(commit_data.node) + 1;
|
1050
|
+
}
|
1051
|
+
}
|
1052
|
+
else{
|
1053
|
+
insert_equal_upper_bound_check(header, new_node, comp, commit_data, pdepth);
|
1054
|
+
}
|
1055
|
+
}
|
1056
|
+
else{
|
1057
|
+
insert_equal_lower_bound_check(header, new_node, comp, commit_data, pdepth);
|
1058
|
+
}
|
1059
|
+
}
|
1060
|
+
|
1061
|
+
template<class NodePtrCompare>
|
1062
|
+
static void insert_equal_upper_bound_check
|
1063
|
+
(const node_ptr & h, const node_ptr & new_node, NodePtrCompare comp, insert_commit_data & commit_data, std::size_t *pdepth = 0)
|
1064
|
+
{ insert_equal_check_impl(true, h, new_node, comp, commit_data, pdepth); }
|
1065
|
+
|
1066
|
+
template<class NodePtrCompare>
|
1067
|
+
static void insert_equal_lower_bound_check
|
1068
|
+
(const node_ptr & h, const node_ptr & new_node, NodePtrCompare comp, insert_commit_data & commit_data, std::size_t *pdepth = 0)
|
1069
|
+
{ insert_equal_check_impl(false, h, new_node, comp, commit_data, pdepth); }
|
1070
|
+
|
1071
|
+
template<class NodePtrCompare>
|
1072
|
+
static node_ptr insert_equal
|
1073
|
+
(const node_ptr & h, const node_ptr & hint, const node_ptr & new_node, NodePtrCompare comp, std::size_t *pdepth = 0)
|
1074
|
+
{
|
1075
|
+
insert_commit_data commit_data;
|
1076
|
+
insert_equal_check(h, hint, new_node, comp, commit_data, pdepth);
|
1077
|
+
insert_commit(h, new_node, commit_data);
|
1078
|
+
return new_node;
|
1079
|
+
}
|
1080
|
+
|
1081
|
+
template<class NodePtrCompare>
|
1082
|
+
static node_ptr insert_equal_upper_bound
|
1083
|
+
(const node_ptr & h, const node_ptr & new_node, NodePtrCompare comp, std::size_t *pdepth = 0)
|
1084
|
+
{
|
1085
|
+
insert_commit_data commit_data;
|
1086
|
+
insert_equal_upper_bound_check(h, new_node, comp, commit_data, pdepth);
|
1087
|
+
insert_commit(h, new_node, commit_data);
|
1088
|
+
return new_node;
|
1089
|
+
}
|
1090
|
+
|
1091
|
+
template<class NodePtrCompare>
|
1092
|
+
static node_ptr insert_equal_lower_bound
|
1093
|
+
(const node_ptr & h, const node_ptr & new_node, NodePtrCompare comp, std::size_t *pdepth = 0)
|
1094
|
+
{
|
1095
|
+
insert_commit_data commit_data;
|
1096
|
+
insert_equal_lower_bound_check(h, new_node, comp, commit_data, pdepth);
|
1097
|
+
insert_commit(h, new_node, commit_data);
|
1098
|
+
return new_node;
|
1099
|
+
}
|
1100
|
+
|
1101
|
+
static node_ptr insert_before
|
1102
|
+
(const node_ptr & header, const node_ptr & pos, const node_ptr & new_node, std::size_t *pdepth = 0)
|
1103
|
+
{
|
1104
|
+
insert_commit_data commit_data;
|
1105
|
+
insert_before_check(header, pos, commit_data, pdepth);
|
1106
|
+
insert_commit(header, new_node, commit_data);
|
1107
|
+
return new_node;
|
1108
|
+
}
|
1109
|
+
|
1110
|
+
static void insert_before_check
|
1111
|
+
(const node_ptr &header, const node_ptr & pos
|
1112
|
+
, insert_commit_data &commit_data, std::size_t *pdepth = 0)
|
1113
|
+
{
|
1114
|
+
node_ptr prev(pos);
|
1115
|
+
if(pos != NodeTraits::get_left(header))
|
1116
|
+
prev = prev_node(pos);
|
1117
|
+
bool link_left = unique(header) || !NodeTraits::get_left(pos);
|
1118
|
+
commit_data.link_left = link_left;
|
1119
|
+
commit_data.node = link_left ? pos : prev;
|
1120
|
+
if(pdepth){
|
1121
|
+
*pdepth = commit_data.node == header ? 0 : depth(commit_data.node) + 1;
|
1122
|
+
}
|
1123
|
+
}
|
1124
|
+
|
1125
|
+
static void push_back
|
1126
|
+
(const node_ptr & header, const node_ptr & new_node, std::size_t *pdepth = 0)
|
1127
|
+
{
|
1128
|
+
insert_commit_data commit_data;
|
1129
|
+
push_back_check(header, commit_data, pdepth);
|
1130
|
+
insert_commit(header, new_node, commit_data);
|
1131
|
+
}
|
1132
|
+
|
1133
|
+
static void push_back_check
|
1134
|
+
(const node_ptr & header, insert_commit_data &commit_data, std::size_t *pdepth = 0)
|
1135
|
+
{
|
1136
|
+
node_ptr prev(NodeTraits::get_right(header));
|
1137
|
+
if(pdepth){
|
1138
|
+
*pdepth = prev == header ? 0 : depth(prev) + 1;
|
1139
|
+
}
|
1140
|
+
commit_data.link_left = false;
|
1141
|
+
commit_data.node = prev;
|
1142
|
+
}
|
1143
|
+
|
1144
|
+
static void push_front
|
1145
|
+
(const node_ptr & header, const node_ptr & new_node, std::size_t *pdepth = 0)
|
1146
|
+
{
|
1147
|
+
insert_commit_data commit_data;
|
1148
|
+
push_front_check(header, commit_data, pdepth);
|
1149
|
+
insert_commit(header, new_node, commit_data);
|
1150
|
+
}
|
1151
|
+
|
1152
|
+
static void push_front_check
|
1153
|
+
(const node_ptr & header, insert_commit_data &commit_data, std::size_t *pdepth = 0)
|
1154
|
+
{
|
1155
|
+
node_ptr pos(NodeTraits::get_left(header));
|
1156
|
+
if(pdepth){
|
1157
|
+
*pdepth = pos == header ? 0 : depth(pos) + 1;
|
1158
|
+
}
|
1159
|
+
commit_data.link_left = true;
|
1160
|
+
commit_data.node = pos;
|
1161
|
+
}
|
1162
|
+
|
1163
|
+
//! <b>Requires</b>: 'node' can't be a header node.
|
1164
|
+
//!
|
1165
|
+
//! <b>Effects</b>: Calculates the depth of a node: the depth of a
|
1166
|
+
//! node is the length (number of edges) of the path from the root
|
1167
|
+
//! to that node. (The root node is at depth 0.)
|
1168
|
+
//!
|
1169
|
+
//! <b>Complexity</b>: Logarithmic to the number of nodes in the tree.
|
1170
|
+
//!
|
1171
|
+
//! <b>Throws</b>: Nothing.
|
1172
|
+
static std::size_t depth(const_node_ptr node)
|
1173
|
+
{
|
1174
|
+
std::size_t depth = 0;
|
1175
|
+
node_ptr p_parent;
|
1176
|
+
while(node != NodeTraits::get_parent(p_parent = NodeTraits::get_parent(node))){
|
1177
|
+
++depth;
|
1178
|
+
node = p_parent;
|
1179
|
+
}
|
1180
|
+
return depth;
|
1181
|
+
}
|
1182
|
+
|
1183
|
+
//! <b>Requires</b>: "cloner" must be a function
|
1184
|
+
//! object taking a node_ptr and returning a new cloned node of it. "disposer" must
|
1185
|
+
//! take a node_ptr and shouldn't throw.
|
1186
|
+
//!
|
1187
|
+
//! <b>Effects</b>: First empties target tree calling
|
1188
|
+
//! <tt>void disposer::operator()(const node_ptr &)</tt> for every node of the tree
|
1189
|
+
//! except the header.
|
1190
|
+
//!
|
1191
|
+
//! Then, duplicates the entire tree pointed by "source_header" cloning each
|
1192
|
+
//! source node with <tt>node_ptr Cloner::operator()(const node_ptr &)</tt> to obtain
|
1193
|
+
//! the nodes of the target tree. If "cloner" throws, the cloned target nodes
|
1194
|
+
//! are disposed using <tt>void disposer(const node_ptr &)</tt>.
|
1195
|
+
//!
|
1196
|
+
//! <b>Complexity</b>: Linear to the number of element of the source tree plus the.
|
1197
|
+
//! number of elements of tree target tree when calling this function.
|
1198
|
+
//!
|
1199
|
+
//! <b>Throws</b>: If cloner functor throws. If this happens target nodes are disposed.
|
1200
|
+
template <class Cloner, class Disposer>
|
1201
|
+
static void clone
|
1202
|
+
(const const_node_ptr & source_header, const node_ptr & target_header, Cloner cloner, Disposer disposer)
|
1203
|
+
{
|
1204
|
+
if(!unique(target_header)){
|
1205
|
+
clear_and_dispose(target_header, disposer);
|
1206
|
+
}
|
1207
|
+
|
1208
|
+
node_ptr leftmost, rightmost;
|
1209
|
+
node_ptr new_root = clone_subtree
|
1210
|
+
(source_header, target_header, cloner, disposer, leftmost, rightmost);
|
1211
|
+
|
1212
|
+
//Now update header node
|
1213
|
+
NodeTraits::set_parent(target_header, new_root);
|
1214
|
+
NodeTraits::set_left (target_header, leftmost);
|
1215
|
+
NodeTraits::set_right (target_header, rightmost);
|
1216
|
+
}
|
1217
|
+
|
1218
|
+
template <class Cloner, class Disposer>
|
1219
|
+
static node_ptr clone_subtree
|
1220
|
+
(const const_node_ptr &source_parent, const node_ptr &target_parent
|
1221
|
+
, Cloner cloner, Disposer disposer
|
1222
|
+
, node_ptr &leftmost_out, node_ptr &rightmost_out
|
1223
|
+
)
|
1224
|
+
{
|
1225
|
+
node_ptr target_sub_root = target_parent;
|
1226
|
+
node_ptr source_root = NodeTraits::get_parent(source_parent);
|
1227
|
+
if(!source_root){
|
1228
|
+
leftmost_out = rightmost_out = source_root;
|
1229
|
+
}
|
1230
|
+
else{
|
1231
|
+
//We'll calculate leftmost and rightmost nodes while iterating
|
1232
|
+
node_ptr current = source_root;
|
1233
|
+
node_ptr insertion_point = target_sub_root = cloner(current);
|
1234
|
+
|
1235
|
+
//We'll calculate leftmost and rightmost nodes while iterating
|
1236
|
+
node_ptr leftmost = target_sub_root;
|
1237
|
+
node_ptr rightmost = target_sub_root;
|
1238
|
+
|
1239
|
+
//First set the subroot
|
1240
|
+
NodeTraits::set_left(target_sub_root, node_ptr());
|
1241
|
+
NodeTraits::set_right(target_sub_root, node_ptr());
|
1242
|
+
NodeTraits::set_parent(target_sub_root, target_parent);
|
1243
|
+
|
1244
|
+
dispose_subtree_disposer<Disposer> rollback(disposer, target_sub_root);
|
1245
|
+
while(true) {
|
1246
|
+
//First clone left nodes
|
1247
|
+
if( NodeTraits::get_left(current) &&
|
1248
|
+
!NodeTraits::get_left(insertion_point)) {
|
1249
|
+
current = NodeTraits::get_left(current);
|
1250
|
+
node_ptr temp = insertion_point;
|
1251
|
+
//Clone and mark as leaf
|
1252
|
+
insertion_point = cloner(current);
|
1253
|
+
NodeTraits::set_left (insertion_point, node_ptr());
|
1254
|
+
NodeTraits::set_right (insertion_point, node_ptr());
|
1255
|
+
//Insert left
|
1256
|
+
NodeTraits::set_parent(insertion_point, temp);
|
1257
|
+
NodeTraits::set_left (temp, insertion_point);
|
1258
|
+
//Update leftmost
|
1259
|
+
if(rightmost == target_sub_root)
|
1260
|
+
leftmost = insertion_point;
|
1261
|
+
}
|
1262
|
+
//Then clone right nodes
|
1263
|
+
else if( NodeTraits::get_right(current) &&
|
1264
|
+
!NodeTraits::get_right(insertion_point)){
|
1265
|
+
current = NodeTraits::get_right(current);
|
1266
|
+
node_ptr temp = insertion_point;
|
1267
|
+
//Clone and mark as leaf
|
1268
|
+
insertion_point = cloner(current);
|
1269
|
+
NodeTraits::set_left (insertion_point, node_ptr());
|
1270
|
+
NodeTraits::set_right (insertion_point, node_ptr());
|
1271
|
+
//Insert right
|
1272
|
+
NodeTraits::set_parent(insertion_point, temp);
|
1273
|
+
NodeTraits::set_right (temp, insertion_point);
|
1274
|
+
//Update rightmost
|
1275
|
+
rightmost = insertion_point;
|
1276
|
+
}
|
1277
|
+
//If not, go up
|
1278
|
+
else if(current == source_root){
|
1279
|
+
break;
|
1280
|
+
}
|
1281
|
+
else{
|
1282
|
+
//Branch completed, go up searching more nodes to clone
|
1283
|
+
current = NodeTraits::get_parent(current);
|
1284
|
+
insertion_point = NodeTraits::get_parent(insertion_point);
|
1285
|
+
}
|
1286
|
+
}
|
1287
|
+
rollback.release();
|
1288
|
+
leftmost_out = leftmost;
|
1289
|
+
rightmost_out = rightmost;
|
1290
|
+
}
|
1291
|
+
return target_sub_root;
|
1292
|
+
}
|
1293
|
+
|
1294
|
+
template<class Disposer>
|
1295
|
+
static void dispose_subtree(node_ptr x, Disposer disposer)
|
1296
|
+
{
|
1297
|
+
while (x){
|
1298
|
+
node_ptr save(NodeTraits::get_left(x));
|
1299
|
+
if (save) {
|
1300
|
+
// Right rotation
|
1301
|
+
NodeTraits::set_left(x, NodeTraits::get_right(save));
|
1302
|
+
NodeTraits::set_right(save, x);
|
1303
|
+
}
|
1304
|
+
else {
|
1305
|
+
save = NodeTraits::get_right(x);
|
1306
|
+
init(x);
|
1307
|
+
disposer(x);
|
1308
|
+
}
|
1309
|
+
x = save;
|
1310
|
+
}
|
1311
|
+
}
|
1312
|
+
|
1313
|
+
//! <b>Requires</b>: p is a node of a tree.
|
1314
|
+
//!
|
1315
|
+
//! <b>Effects</b>: Returns true if p is a left child.
|
1316
|
+
//!
|
1317
|
+
//! <b>Complexity</b>: Constant.
|
1318
|
+
//!
|
1319
|
+
//! <b>Throws</b>: Nothing.
|
1320
|
+
static bool is_left_child(const node_ptr & p)
|
1321
|
+
{ return NodeTraits::get_left(NodeTraits::get_parent(p)) == p; }
|
1322
|
+
|
1323
|
+
//! <b>Requires</b>: p is a node of a tree.
|
1324
|
+
//!
|
1325
|
+
//! <b>Effects</b>: Returns true if p is a right child.
|
1326
|
+
//!
|
1327
|
+
//! <b>Complexity</b>: Constant.
|
1328
|
+
//!
|
1329
|
+
//! <b>Throws</b>: Nothing.
|
1330
|
+
static bool is_right_child(const node_ptr & p)
|
1331
|
+
{ return NodeTraits::get_right(NodeTraits::get_parent(p)) == p; }
|
1332
|
+
|
1333
|
+
//Fix header and own's parent data when replacing x with own, providing own's old data with parent
|
1334
|
+
static void replace_own_impl(const node_ptr & own, const node_ptr & x, const node_ptr & header, const node_ptr & own_parent, bool own_was_left)
|
1335
|
+
{
|
1336
|
+
if(NodeTraits::get_parent(header) == own)
|
1337
|
+
NodeTraits::set_parent(header, x);
|
1338
|
+
else if(own_was_left)
|
1339
|
+
NodeTraits::set_left(own_parent, x);
|
1340
|
+
else
|
1341
|
+
NodeTraits::set_right(own_parent, x);
|
1342
|
+
}
|
1343
|
+
|
1344
|
+
//Fix header and own's parent data when replacing x with own, supposing own
|
1345
|
+
//links with its parent are still ok
|
1346
|
+
static void replace_own(const node_ptr & own, const node_ptr & x, const node_ptr & header)
|
1347
|
+
{
|
1348
|
+
node_ptr own_parent(NodeTraits::get_parent(own));
|
1349
|
+
bool own_is_left(NodeTraits::get_left(own_parent) == own);
|
1350
|
+
replace_own_impl(own, x, header, own_parent, own_is_left);
|
1351
|
+
}
|
1352
|
+
|
1353
|
+
// rotate parent p to left (no header and p's parent fixup)
|
1354
|
+
static node_ptr rotate_left(const node_ptr & p)
|
1355
|
+
{
|
1356
|
+
node_ptr x(NodeTraits::get_right(p));
|
1357
|
+
node_ptr x_left(NodeTraits::get_left(x));
|
1358
|
+
NodeTraits::set_right(p, x_left);
|
1359
|
+
if(x_left){
|
1360
|
+
NodeTraits::set_parent(x_left, p);
|
1361
|
+
}
|
1362
|
+
NodeTraits::set_left(x, p);
|
1363
|
+
NodeTraits::set_parent(p, x);
|
1364
|
+
return x;
|
1365
|
+
}
|
1366
|
+
|
1367
|
+
// rotate parent p to left (with header and p's parent fixup)
|
1368
|
+
static void rotate_left(const node_ptr & p, const node_ptr & header)
|
1369
|
+
{
|
1370
|
+
bool p_was_left(is_left_child(p));
|
1371
|
+
node_ptr p_old_parent(NodeTraits::get_parent(p));
|
1372
|
+
node_ptr x(rotate_left(p));
|
1373
|
+
NodeTraits::set_parent(x, p_old_parent);
|
1374
|
+
replace_own_impl(p, x, header, p_old_parent, p_was_left);
|
1375
|
+
}
|
1376
|
+
|
1377
|
+
// rotate parent p to right (no header and p's parent fixup)
|
1378
|
+
static node_ptr rotate_right(const node_ptr & p)
|
1379
|
+
{
|
1380
|
+
node_ptr x(NodeTraits::get_left(p));
|
1381
|
+
node_ptr x_right(NodeTraits::get_right(x));
|
1382
|
+
NodeTraits::set_left(p, x_right);
|
1383
|
+
if(x_right){
|
1384
|
+
NodeTraits::set_parent(x_right, p);
|
1385
|
+
}
|
1386
|
+
NodeTraits::set_right(x, p);
|
1387
|
+
NodeTraits::set_parent(p, x);
|
1388
|
+
return x;
|
1389
|
+
}
|
1390
|
+
|
1391
|
+
// rotate parent p to right (with header and p's parent fixup)
|
1392
|
+
static void rotate_right(const node_ptr & p, const node_ptr & header)
|
1393
|
+
{
|
1394
|
+
bool p_was_left(is_left_child(p));
|
1395
|
+
node_ptr p_old_parent(NodeTraits::get_parent(p));
|
1396
|
+
node_ptr x(rotate_right(p));
|
1397
|
+
NodeTraits::set_parent(x, p_old_parent);
|
1398
|
+
replace_own_impl(p, x, header, p_old_parent, p_was_left);
|
1399
|
+
}
|
1400
|
+
|
1401
|
+
static void erase(const node_ptr & header, const node_ptr & z)
|
1402
|
+
{
|
1403
|
+
data_for_rebalance ignored;
|
1404
|
+
erase_impl(header, z, ignored);
|
1405
|
+
}
|
1406
|
+
|
1407
|
+
struct data_for_rebalance
|
1408
|
+
{
|
1409
|
+
node_ptr x;
|
1410
|
+
node_ptr x_parent;
|
1411
|
+
node_ptr y;
|
1412
|
+
};
|
1413
|
+
|
1414
|
+
template<class F>
|
1415
|
+
static void erase(const node_ptr & header, const node_ptr & z, F z_and_successor_fixup, data_for_rebalance &info)
|
1416
|
+
{
|
1417
|
+
erase_impl(header, z, info);
|
1418
|
+
if(info.y != z){
|
1419
|
+
z_and_successor_fixup(z, info.y);
|
1420
|
+
}
|
1421
|
+
}
|
1422
|
+
|
1423
|
+
static void unlink(const node_ptr & node)
|
1424
|
+
{
|
1425
|
+
node_ptr x = NodeTraits::get_parent(node);
|
1426
|
+
if(x){
|
1427
|
+
while(!is_header(x))
|
1428
|
+
x = NodeTraits::get_parent(x);
|
1429
|
+
erase(x, node);
|
1430
|
+
}
|
1431
|
+
}
|
1432
|
+
|
1433
|
+
static void tree_to_vine(const node_ptr & header)
|
1434
|
+
{ subtree_to_vine(NodeTraits::get_parent(header)); }
|
1435
|
+
|
1436
|
+
static void vine_to_tree(const node_ptr & header, std::size_t count)
|
1437
|
+
{ vine_to_subtree(NodeTraits::get_parent(header), count); }
|
1438
|
+
|
1439
|
+
static void rebalance(const node_ptr & header)
|
1440
|
+
{
|
1441
|
+
//Taken from:
|
1442
|
+
//"Tree rebalancing in optimal time and space"
|
1443
|
+
//Quentin F. Stout and Bette L. Warren
|
1444
|
+
std::size_t len = 0;
|
1445
|
+
subtree_to_vine(NodeTraits::get_parent(header), &len);
|
1446
|
+
vine_to_subtree(NodeTraits::get_parent(header), len);
|
1447
|
+
}
|
1448
|
+
|
1449
|
+
static node_ptr rebalance_subtree(const node_ptr & old_root)
|
1450
|
+
{
|
1451
|
+
std::size_t len = 0;
|
1452
|
+
node_ptr new_root = subtree_to_vine(old_root, &len);
|
1453
|
+
return vine_to_subtree(new_root, len);
|
1454
|
+
}
|
1455
|
+
|
1456
|
+
static node_ptr subtree_to_vine(const node_ptr & old_root, std::size_t *plen = 0)
|
1457
|
+
{
|
1458
|
+
std::size_t len;
|
1459
|
+
len = 0;
|
1460
|
+
if(!old_root) return node_ptr();
|
1461
|
+
|
1462
|
+
//To avoid irregularities in the algorithm (old_root can be a
|
1463
|
+
//left or right child or even the root of the tree) just put the
|
1464
|
+
//root as the right child of its parent. Before doing this backup
|
1465
|
+
//information to restore the original relationship after
|
1466
|
+
//the algorithm is applied.
|
1467
|
+
node_ptr super_root = NodeTraits::get_parent(old_root);
|
1468
|
+
BOOST_INTRUSIVE_INVARIANT_ASSERT(super_root);
|
1469
|
+
|
1470
|
+
//Get info
|
1471
|
+
node_ptr super_root_right_backup = NodeTraits::get_right(super_root);
|
1472
|
+
bool super_root_is_header = is_header(super_root);
|
1473
|
+
bool old_root_is_right = is_right_child(old_root);
|
1474
|
+
|
1475
|
+
node_ptr x(old_root);
|
1476
|
+
node_ptr new_root(x);
|
1477
|
+
node_ptr save;
|
1478
|
+
bool moved_to_right = false;
|
1479
|
+
for( ; x; x = save){
|
1480
|
+
save = NodeTraits::get_left(x);
|
1481
|
+
if(save){
|
1482
|
+
// Right rotation
|
1483
|
+
node_ptr save_right = NodeTraits::get_right(save);
|
1484
|
+
node_ptr x_parent = NodeTraits::get_parent(x);
|
1485
|
+
NodeTraits::set_parent(save, x_parent);
|
1486
|
+
NodeTraits::set_right (x_parent, save);
|
1487
|
+
NodeTraits::set_parent(x, save);
|
1488
|
+
NodeTraits::set_right (save, x);
|
1489
|
+
NodeTraits::set_left(x, save_right);
|
1490
|
+
if(save_right)
|
1491
|
+
NodeTraits::set_parent(save_right, x);
|
1492
|
+
if(!moved_to_right)
|
1493
|
+
new_root = save;
|
1494
|
+
}
|
1495
|
+
else{
|
1496
|
+
moved_to_right = true;
|
1497
|
+
save = NodeTraits::get_right(x);
|
1498
|
+
++len;
|
1499
|
+
}
|
1500
|
+
}
|
1501
|
+
|
1502
|
+
if(super_root_is_header){
|
1503
|
+
NodeTraits::set_right(super_root, super_root_right_backup);
|
1504
|
+
NodeTraits::set_parent(super_root, new_root);
|
1505
|
+
}
|
1506
|
+
else if(old_root_is_right){
|
1507
|
+
NodeTraits::set_right(super_root, new_root);
|
1508
|
+
}
|
1509
|
+
else{
|
1510
|
+
NodeTraits::set_right(super_root, super_root_right_backup);
|
1511
|
+
NodeTraits::set_left(super_root, new_root);
|
1512
|
+
}
|
1513
|
+
if(plen) *plen = len;
|
1514
|
+
return new_root;
|
1515
|
+
}
|
1516
|
+
|
1517
|
+
static node_ptr vine_to_subtree(const node_ptr & old_root, std::size_t count)
|
1518
|
+
{
|
1519
|
+
std::size_t leaf_nodes = count + 1 - ((std::size_t) 1 << floor_log2 (count + 1));
|
1520
|
+
std::size_t vine_nodes = count - leaf_nodes;
|
1521
|
+
|
1522
|
+
node_ptr new_root = compress_subtree(old_root, leaf_nodes);
|
1523
|
+
while(vine_nodes > 1){
|
1524
|
+
vine_nodes /= 2;
|
1525
|
+
new_root = compress_subtree(new_root, vine_nodes);
|
1526
|
+
}
|
1527
|
+
return new_root;
|
1528
|
+
}
|
1529
|
+
|
1530
|
+
static node_ptr compress_subtree(const node_ptr & old_root, std::size_t count)
|
1531
|
+
{
|
1532
|
+
if(!old_root) return old_root;
|
1533
|
+
|
1534
|
+
//To avoid irregularities in the algorithm (old_root can be
|
1535
|
+
//left or right child or even the root of the tree) just put the
|
1536
|
+
//root as the right child of its parent. First obtain
|
1537
|
+
//information to restore the original relationship after
|
1538
|
+
//the algorithm is applied.
|
1539
|
+
node_ptr super_root = NodeTraits::get_parent(old_root);
|
1540
|
+
BOOST_INTRUSIVE_INVARIANT_ASSERT(super_root);
|
1541
|
+
|
1542
|
+
//Get info
|
1543
|
+
node_ptr super_root_right_backup = NodeTraits::get_right(super_root);
|
1544
|
+
bool super_root_is_header = is_header(super_root);
|
1545
|
+
bool old_root_is_right = is_right_child(old_root);
|
1546
|
+
|
1547
|
+
//Put old_root as right child
|
1548
|
+
NodeTraits::set_right(super_root, old_root);
|
1549
|
+
|
1550
|
+
//Start the compression algorithm
|
1551
|
+
node_ptr even_parent = super_root;
|
1552
|
+
node_ptr new_root = old_root;
|
1553
|
+
|
1554
|
+
while(count--){
|
1555
|
+
node_ptr even = NodeTraits::get_right(even_parent);
|
1556
|
+
node_ptr odd = NodeTraits::get_right(even);
|
1557
|
+
|
1558
|
+
if(new_root == old_root)
|
1559
|
+
new_root = odd;
|
1560
|
+
|
1561
|
+
node_ptr even_right = NodeTraits::get_left(odd);
|
1562
|
+
NodeTraits::set_right(even, even_right);
|
1563
|
+
if (even_right)
|
1564
|
+
NodeTraits::set_parent(even_right, even);
|
1565
|
+
|
1566
|
+
NodeTraits::set_right(even_parent, odd);
|
1567
|
+
NodeTraits::set_parent(odd, even_parent);
|
1568
|
+
NodeTraits::set_left(odd, even);
|
1569
|
+
NodeTraits::set_parent(even, odd);
|
1570
|
+
even_parent = odd;
|
1571
|
+
}
|
1572
|
+
|
1573
|
+
if(super_root_is_header){
|
1574
|
+
NodeTraits::set_parent(super_root, new_root);
|
1575
|
+
NodeTraits::set_right(super_root, super_root_right_backup);
|
1576
|
+
}
|
1577
|
+
else if(old_root_is_right){
|
1578
|
+
NodeTraits::set_right(super_root, new_root);
|
1579
|
+
}
|
1580
|
+
else{
|
1581
|
+
NodeTraits::set_left(super_root, new_root);
|
1582
|
+
NodeTraits::set_right(super_root, super_root_right_backup);
|
1583
|
+
}
|
1584
|
+
return new_root;
|
1585
|
+
}
|
1586
|
+
|
1587
|
+
//! <b>Requires</b>: "n" must be a node inserted in a tree.
|
1588
|
+
//!
|
1589
|
+
//! <b>Effects</b>: Returns a pointer to the header node of the tree.
|
1590
|
+
//!
|
1591
|
+
//! <b>Complexity</b>: Logarithmic.
|
1592
|
+
//!
|
1593
|
+
//! <b>Throws</b>: Nothing.
|
1594
|
+
static node_ptr get_root(const node_ptr & node)
|
1595
|
+
{
|
1596
|
+
BOOST_INTRUSIVE_INVARIANT_ASSERT((!inited(node)));
|
1597
|
+
node_ptr x = NodeTraits::get_parent(node);
|
1598
|
+
if(x){
|
1599
|
+
while(!is_header(x)){
|
1600
|
+
x = NodeTraits::get_parent(x);
|
1601
|
+
}
|
1602
|
+
return x;
|
1603
|
+
}
|
1604
|
+
else{
|
1605
|
+
return node;
|
1606
|
+
}
|
1607
|
+
}
|
1608
|
+
|
1609
|
+
private:
|
1610
|
+
|
1611
|
+
template<class KeyType, class KeyNodePtrCompare>
|
1612
|
+
static node_ptr lower_bound_loop
|
1613
|
+
(node_ptr x, node_ptr y, const KeyType &key, KeyNodePtrCompare comp)
|
1614
|
+
{
|
1615
|
+
while(x){
|
1616
|
+
if(comp(x, key)){
|
1617
|
+
x = NodeTraits::get_right(x);
|
1618
|
+
}
|
1619
|
+
else{
|
1620
|
+
y = x;
|
1621
|
+
x = NodeTraits::get_left(x);
|
1622
|
+
}
|
1623
|
+
}
|
1624
|
+
return y;
|
1625
|
+
}
|
1626
|
+
|
1627
|
+
template<class KeyType, class KeyNodePtrCompare>
|
1628
|
+
static node_ptr upper_bound_loop
|
1629
|
+
(node_ptr x, node_ptr y, const KeyType &key, KeyNodePtrCompare comp)
|
1630
|
+
{
|
1631
|
+
while(x){
|
1632
|
+
if(comp(key, x)){
|
1633
|
+
y = x;
|
1634
|
+
x = NodeTraits::get_left(x);
|
1635
|
+
}
|
1636
|
+
else{
|
1637
|
+
x = NodeTraits::get_right(x);
|
1638
|
+
}
|
1639
|
+
}
|
1640
|
+
return y;
|
1641
|
+
}
|
1642
|
+
|
1643
|
+
|
1644
|
+
template<class NodePtrCompare>
|
1645
|
+
static void insert_equal_check_impl
|
1646
|
+
(bool upper, const node_ptr & h, const node_ptr & new_node, NodePtrCompare comp, insert_commit_data & commit_data, std::size_t *pdepth = 0)
|
1647
|
+
{
|
1648
|
+
std::size_t depth = 0;
|
1649
|
+
node_ptr y(h);
|
1650
|
+
node_ptr x(NodeTraits::get_parent(y));
|
1651
|
+
bool link_left;
|
1652
|
+
|
1653
|
+
if(upper){
|
1654
|
+
while(x){
|
1655
|
+
++depth;
|
1656
|
+
y = x;
|
1657
|
+
x = comp(new_node, x) ?
|
1658
|
+
NodeTraits::get_left(x) : NodeTraits::get_right(x);
|
1659
|
+
}
|
1660
|
+
link_left = (y == h) || comp(new_node, y);
|
1661
|
+
}
|
1662
|
+
else{
|
1663
|
+
while(x){
|
1664
|
+
++depth;
|
1665
|
+
y = x;
|
1666
|
+
x = !comp(x, new_node) ?
|
1667
|
+
NodeTraits::get_left(x) : NodeTraits::get_right(x);
|
1668
|
+
}
|
1669
|
+
link_left = (y == h) || !comp(y, new_node);
|
1670
|
+
}
|
1671
|
+
|
1672
|
+
commit_data.link_left = link_left;
|
1673
|
+
commit_data.node = y;
|
1674
|
+
if(pdepth) *pdepth = depth;
|
1675
|
+
}
|
1676
|
+
|
1677
|
+
static void erase_impl(const node_ptr & header, const node_ptr & z, data_for_rebalance &info)
|
1678
|
+
{
|
1679
|
+
node_ptr y(z);
|
1680
|
+
node_ptr x;
|
1681
|
+
node_ptr x_parent = node_ptr();
|
1682
|
+
node_ptr z_left(NodeTraits::get_left(z));
|
1683
|
+
node_ptr z_right(NodeTraits::get_right(z));
|
1684
|
+
if(!z_left){
|
1685
|
+
x = z_right; // x might be null.
|
1686
|
+
}
|
1687
|
+
else if(!z_right){ // z has exactly one non-null child. y == z.
|
1688
|
+
x = z_left; // x is not null.
|
1689
|
+
}
|
1690
|
+
else{
|
1691
|
+
// find z's successor
|
1692
|
+
y = tree_algorithms::minimum (z_right);
|
1693
|
+
x = NodeTraits::get_right(y); // x might be null.
|
1694
|
+
}
|
1695
|
+
|
1696
|
+
if(y != z){
|
1697
|
+
// relink y in place of z. y is z's successor
|
1698
|
+
NodeTraits::set_parent(NodeTraits::get_left(z), y);
|
1699
|
+
NodeTraits::set_left(y, NodeTraits::get_left(z));
|
1700
|
+
if(y != NodeTraits::get_right(z)){
|
1701
|
+
x_parent = NodeTraits::get_parent(y);
|
1702
|
+
if(x)
|
1703
|
+
NodeTraits::set_parent(x, x_parent);
|
1704
|
+
NodeTraits::set_left(x_parent, x); // y must be a child of left_
|
1705
|
+
NodeTraits::set_right(y, NodeTraits::get_right(z));
|
1706
|
+
NodeTraits::set_parent(NodeTraits::get_right(z), y);
|
1707
|
+
}
|
1708
|
+
else
|
1709
|
+
x_parent = y;
|
1710
|
+
tree_algorithms::replace_own (z, y, header);
|
1711
|
+
NodeTraits::set_parent(y, NodeTraits::get_parent(z));
|
1712
|
+
}
|
1713
|
+
else { // y == z --> z has only one child, or none
|
1714
|
+
x_parent = NodeTraits::get_parent(z);
|
1715
|
+
if(x)
|
1716
|
+
NodeTraits::set_parent(x, x_parent);
|
1717
|
+
tree_algorithms::replace_own (z, x, header);
|
1718
|
+
if(NodeTraits::get_left(header) == z){
|
1719
|
+
NodeTraits::set_left(header, !NodeTraits::get_right(z) ? // z->get_left() must be null also
|
1720
|
+
NodeTraits::get_parent(z) : // makes leftmost == header if z == root
|
1721
|
+
tree_algorithms::minimum (x));
|
1722
|
+
}
|
1723
|
+
if(NodeTraits::get_right(header) == z){
|
1724
|
+
NodeTraits::set_right(header, !NodeTraits::get_left(z) ? // z->get_right() must be null also
|
1725
|
+
NodeTraits::get_parent(z) : // makes rightmost == header if z == root
|
1726
|
+
tree_algorithms::maximum(x));
|
1727
|
+
}
|
1728
|
+
}
|
1729
|
+
|
1730
|
+
info.x = x;
|
1731
|
+
info.x_parent = x_parent;
|
1732
|
+
info.y = y;
|
1733
|
+
}
|
1734
|
+
};
|
1735
|
+
|
1736
|
+
} //namespace detail {
|
1737
|
+
} //namespace intrusive
|
1738
|
+
} //namespace boost
|
1739
|
+
|
1740
|
+
#include <boost/intrusive/detail/config_end.hpp>
|
1741
|
+
|
1742
|
+
#endif //BOOST_INTRUSIVE_TREE_ALGORITHMS_HPP
|