passenger 5.1.4 → 5.1.5
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of passenger might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/.editorconfig +9 -0
- data/CHANGELOG +9 -0
- data/build/cxx_tests.rb +11 -1
- data/build/documentation.rb +0 -32
- data/build/support/cxx_dependency_map.rb +602 -2
- data/build/test_basics.rb +3 -3
- data/dev/boost-patches/0001-Patch-boost-thread-so-that-oxt-thread-can-use-it.patch +48 -0
- data/dev/boost-patches/0002-Make-boost-thread_interrupted-derive-from-oxt-tracab.patch +33 -0
- data/dev/boost-patches/0003-Disable-a-Clang-pragma-to-prevent-warnings-on-OS-X.patch +25 -0
- data/dev/ci/README.md +121 -0
- data/dev/ci/lib/functions.sh +129 -0
- data/dev/ci/lib/set-container-envvars.sh +46 -0
- data/dev/ci/lib/setup-container.sh +43 -0
- data/dev/ci/run-tests-natively +24 -0
- data/dev/ci/run-tests-with-docker +42 -0
- data/dev/ci/scripts/debug-console-wrapper.sh +27 -0
- data/dev/ci/scripts/docker-entrypoint-stage2.sh +17 -0
- data/dev/ci/scripts/docker-entrypoint.sh +17 -0
- data/dev/ci/scripts/inituidgid +17 -0
- data/dev/ci/scripts/run-tests-natively-stage2.sh +17 -0
- data/dev/ci/scripts/setup-host-natively.sh +11 -0
- data/dev/ci/setup-host +50 -0
- data/dev/ci/tests/apache2/run +6 -0
- data/dev/ci/tests/apache2/setup +4 -0
- data/dev/ci/tests/cxx/run +9 -0
- data/dev/ci/tests/cxx/setup +4 -0
- data/dev/ci/tests/nginx-dynamic/run +20 -0
- data/dev/ci/tests/nginx-dynamic/setup +4 -0
- data/dev/ci/tests/nginx/run +5 -0
- data/dev/ci/tests/nginx/setup +4 -0
- data/dev/ci/tests/nodejs/run +4 -0
- data/dev/ci/tests/nodejs/setup +4 -0
- data/dev/ci/tests/ruby/run +4 -0
- data/dev/ci/tests/ruby/setup +4 -0
- data/dev/ci/tests/source-packaging/run +4 -0
- data/dev/ci/tests/source-packaging/setup +4 -0
- data/dev/ci/tests/standalone/run +4 -0
- data/dev/ci/tests/standalone/setup +4 -0
- data/dev/copy_boost_headers +8 -2
- data/src/agent/Core/ApiServer.h +11 -5
- data/src/agent/Core/Controller.h +12 -46
- data/src/agent/Core/Controller/CheckoutSession.cpp +1 -1
- data/src/agent/Core/Controller/Config.h +369 -0
- data/src/agent/Core/Controller/ForwardResponse.cpp +4 -4
- data/src/agent/Core/Controller/Hooks.cpp +15 -3
- data/src/agent/Core/Controller/Implementation.cpp +1 -1
- data/src/agent/Core/Controller/InitRequest.cpp +28 -39
- data/src/agent/Core/Controller/InitializationAndShutdown.cpp +25 -60
- data/src/agent/Core/Controller/InternalUtils.cpp +0 -16
- data/src/agent/Core/Controller/Miscellaneous.cpp +0 -17
- data/src/agent/Core/Controller/Request.h +2 -0
- data/src/agent/Core/Controller/SendRequest.cpp +4 -4
- data/src/agent/Core/Controller/{StateInspectionAndConfiguration.cpp → StateInspection.cpp} +0 -22
- data/src/agent/Core/Controller/TurboCaching.h +11 -10
- data/src/agent/Core/CoreMain.cpp +16 -6
- data/src/agent/Core/ResponseCache.h +3 -3
- data/src/agent/Core/SpawningKit/SmartSpawner.h +9 -3
- data/src/agent/Core/SpawningKit/Spawner.h +7 -3
- data/src/agent/UstRouter/ApiServer.h +3 -2
- data/src/agent/UstRouter/Controller.h +66 -32
- data/src/agent/UstRouter/UstRouterMain.cpp +10 -2
- data/src/agent/Watchdog/ApiServer.h +3 -2
- data/src/agent/Watchdog/WatchdogMain.cpp +3 -1
- data/src/apache2_module/ConfigurationCommands.cpp +1 -1
- data/src/cxx_supportlib/ConfigKit/Common.h +125 -0
- data/src/cxx_supportlib/ConfigKit/ConfigKit.h +34 -0
- data/src/cxx_supportlib/ConfigKit/README.md +895 -0
- data/src/cxx_supportlib/ConfigKit/Schema.h +331 -0
- data/src/cxx_supportlib/ConfigKit/Store.h +385 -0
- data/src/cxx_supportlib/ConfigKit/TableTranslator.h +185 -0
- data/src/cxx_supportlib/ConfigKit/Utils.h +141 -0
- data/src/cxx_supportlib/ConfigKit/VariantMapUtils.h +81 -0
- data/src/cxx_supportlib/Constants.h +1 -1
- data/src/cxx_supportlib/Crypto.cpp +2 -2
- data/src/cxx_supportlib/Logging.h +0 -35
- data/src/cxx_supportlib/ServerKit/HttpServer.h +35 -16
- data/src/cxx_supportlib/ServerKit/Server.h +65 -25
- data/src/cxx_supportlib/oxt/macros.hpp +3 -0
- data/src/cxx_supportlib/vendor-modified/boost/algorithm/string/replace.hpp +0 -2
- data/src/cxx_supportlib/vendor-modified/boost/array.hpp +53 -42
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/atomic_template.hpp +11 -5
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/bitwise_cast.hpp +13 -2
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_gcc_x86.hpp +23 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/caps_msvc_x86.hpp +5 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/config.hpp +3 -2
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/interlocked.hpp +8 -1
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_emulated.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_alpha.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_arm.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_atomic.hpp +5 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_ppc.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_sparc.hpp +6 -4
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_sync.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_x86.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_gcc_x86_dcas.hpp +28 -17
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_linux_arm.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_msvc_arm.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/ops_msvc_x86.hpp +9 -4
- data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/platform.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/bind/arg.hpp +10 -3
- data/src/cxx_supportlib/vendor-modified/boost/bind/bind.hpp +90 -18
- data/src/cxx_supportlib/vendor-modified/boost/cerrno.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/chrono/duration.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/auto_link.hpp +8 -3
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/borland.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/clang.hpp +35 -6
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/codegear.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/comeau.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/common_edg.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/compaq_cxx.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/cray.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/digitalmars.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/gcc.hpp +19 -4
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/gcc_xml.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/greenhills.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/hp_acc.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/intel.hpp +29 -7
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/kai.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/metrowerks.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/mpw.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/nvcc.hpp +16 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/pathscale.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/pgi.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/sgi_mipspro.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/sunpro_cc.hpp +10 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/vacpp.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/visualc.hpp +44 -16
- data/src/cxx_supportlib/vendor-modified/boost/config/compiler/xlcpp.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/platform/cygwin.hpp +1 -2
- data/src/cxx_supportlib/vendor-modified/boost/config/platform/linux.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/select_compiler_config.hpp +21 -21
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/dinkumware.hpp +42 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/libcomo.hpp +7 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/libcpp.hpp +40 -7
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/libstdcpp3.hpp +39 -6
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/modena.hpp +7 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/msl.hpp +7 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/roguewave.hpp +7 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/sgi.hpp +8 -1
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/stlport.hpp +7 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/vacpp.hpp +7 -0
- data/src/cxx_supportlib/vendor-modified/boost/config/suffix.hpp +33 -4
- data/src/cxx_supportlib/vendor-modified/boost/container/adaptive_pool.hpp +0 -2
- data/src/cxx_supportlib/vendor-modified/boost/container/allocator.hpp +0 -3
- data/src/cxx_supportlib/vendor-modified/boost/container/allocator_traits.hpp +34 -27
- data/src/cxx_supportlib/vendor-modified/boost/container/deque.hpp +62 -26
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/addressof.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/advanced_insert_int.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/compare_functors.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/config_begin.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/construct_in_place.hpp +39 -5
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/copy_move_algo.hpp +49 -32
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/dispatch_uses_allocator.hpp +175 -7
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/flat_tree.hpp +223 -98
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/is_sorted.hpp +57 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/iterators.hpp +88 -41
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/mpl.hpp +7 -8
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/mutex.hpp +4 -9
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/node_alloc_holder.hpp +45 -18
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/pair.hpp +205 -26
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/tree.hpp +290 -181
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/value_init.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/variadic_templates_tools.hpp +24 -19
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/workaround.hpp +38 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/flat_map.hpp +320 -46
- data/src/cxx_supportlib/vendor-modified/boost/container/flat_set.hpp +91 -18
- data/src/cxx_supportlib/vendor-modified/boost/container/list.hpp +23 -19
- data/src/cxx_supportlib/vendor-modified/boost/container/map.hpp +491 -120
- data/src/cxx_supportlib/vendor-modified/boost/container/new_allocator.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/container/node_allocator.hpp +0 -3
- data/src/cxx_supportlib/vendor-modified/boost/container/node_handle.hpp +399 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/deque.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/flat_map.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/flat_set.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/list.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/map.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/set.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/slist.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/small_vector.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/stable_vector.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/string.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/pmr/vector.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/set.hpp +101 -20
- data/src/cxx_supportlib/vendor-modified/boost/container/slist.hpp +19 -14
- data/src/cxx_supportlib/vendor-modified/boost/container/small_vector.hpp +117 -59
- data/src/cxx_supportlib/vendor-modified/boost/container/stable_vector.hpp +8 -6
- data/src/cxx_supportlib/vendor-modified/boost/container/static_vector.hpp +33 -28
- data/src/cxx_supportlib/vendor-modified/boost/container/string.hpp +414 -70
- data/src/cxx_supportlib/vendor-modified/boost/container/throw_exception.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/container/uses_allocator_fwd.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/container/vector.hpp +134 -117
- data/src/cxx_supportlib/vendor-modified/boost/core/addressof.hpp +202 -99
- data/src/cxx_supportlib/vendor-modified/boost/core/demangle.hpp +8 -10
- data/src/cxx_supportlib/vendor-modified/boost/core/lightweight_test.hpp +217 -1
- data/src/cxx_supportlib/vendor-modified/boost/core/scoped_enum.hpp +29 -27
- data/src/cxx_supportlib/vendor-modified/boost/current_function.hpp +5 -1
- data/src/cxx_supportlib/vendor-modified/boost/date_time/c_time.hpp +13 -13
- data/src/cxx_supportlib/vendor-modified/boost/date_time/constrained_value.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/date_time/date.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/date_time/date_duration.hpp +4 -3
- data/src/cxx_supportlib/vendor-modified/boost/date_time/date_duration_types.hpp +6 -5
- data/src/cxx_supportlib/vendor-modified/boost/date_time/date_facet.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/date_time/date_names_put.hpp +8 -7
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_calendar.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_date.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_day.hpp +4 -3
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_day_of_year.hpp +3 -2
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_duration.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_duration_types.hpp +4 -3
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_facet.hpp +27 -7
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_month.hpp +5 -5
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_serialize.hpp +5 -0
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_weekday.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian/greg_year.hpp +4 -5
- data/src/cxx_supportlib/vendor-modified/boost/date_time/gregorian_calendar.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/date_time/local_time/local_date_time.hpp +5 -4
- data/src/cxx_supportlib/vendor-modified/boost/date_time/local_time/posix_time_zone.hpp +4 -3
- data/src/cxx_supportlib/vendor-modified/boost/date_time/period.hpp +3 -2
- data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/date_duration_operators.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/posix_time_config.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/posix_time_duration.hpp +5 -4
- data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/ptime.hpp +6 -5
- data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/time_parsers.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/date_time/time_duration.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/date_time/time_facet.hpp +5 -4
- data/src/cxx_supportlib/vendor-modified/boost/date_time/time_zone_base.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/date_time/year_month_day.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/detail/iterator.hpp +13 -0
- data/src/cxx_supportlib/vendor-modified/boost/detail/lcast_precision.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/detail/workaround.hpp +5 -0
- data/src/cxx_supportlib/vendor-modified/boost/exception/detail/error_info_impl.hpp +11 -0
- data/src/cxx_supportlib/vendor-modified/boost/exception/detail/shared_ptr.hpp +17 -0
- data/src/cxx_supportlib/vendor-modified/boost/exception/exception.hpp +25 -3
- data/src/cxx_supportlib/vendor-modified/boost/exception/get_error_info.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/exception/info.hpp +114 -1
- data/src/cxx_supportlib/vendor-modified/boost/function/function_base.hpp +116 -142
- data/src/cxx_supportlib/vendor-modified/boost/function/function_template.hpp +57 -69
- data/src/cxx_supportlib/vendor-modified/boost/functional/hash/detail/hash_float.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/functional/hash/extensions.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/functional/hash/hash.hpp +27 -13
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/any_hook.hpp +4 -2
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/avl_set.hpp +99 -12
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/avl_set_hook.hpp +4 -2
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/avltree.hpp +35 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/avltree_algorithms.hpp +37 -6
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/bs_set.hpp +95 -8
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/bs_set_hook.hpp +4 -2
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/bstree.hpp +209 -72
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/bstree_algorithms.hpp +86 -20
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/circular_list_algorithms.hpp +11 -11
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/circular_slist_algorithms.hpp +6 -6
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/algo_type.hpp +4 -1
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/any_node_and_algorithms.hpp +58 -45
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/avltree_node.hpp +27 -26
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/bstree_algorithms_base.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/common_slist_algorithms.hpp +7 -7
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/config_begin.hpp +8 -3
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/default_header_holder.hpp +4 -3
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/ebo_functor_holder.hpp +27 -26
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/equal_to_value.hpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/exception_disposer.hpp +4 -2
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/generic_hook.hpp +9 -7
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/has_member_function_callable_with.hpp +83 -57
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/hashtable_node.hpp +30 -30
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/hook_traits.hpp +9 -8
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/iiterator.hpp +8 -7
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/iterator.hpp +16 -15
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/key_nodeptr_comp.hpp +70 -44
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/list_iterator.hpp +22 -21
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/list_node.hpp +7 -6
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/parent_from_member.hpp +5 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/rbtree_node.hpp +29 -28
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/reverse_iterator.hpp +33 -12
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/size_holder.hpp +19 -12
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/slist_iterator.hpp +21 -20
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/slist_node.hpp +4 -3
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/to_raw_pointer.hpp +3 -2
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/transform_iterator.hpp +23 -22
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/tree_iterator.hpp +23 -22
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/tree_node.hpp +10 -9
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/tree_value_compare.hpp +103 -29
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/workaround.hpp +15 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/hashtable.hpp +295 -211
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/linear_slist_algorithms.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/list.hpp +20 -7
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/list_hook.hpp +4 -2
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/member_value_traits.hpp +5 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/options.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/parent_from_member.hpp +3 -2
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/pointer_plus_bits.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/pointer_traits.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/priority_compare.hpp +22 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/rbtree.hpp +36 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/rbtree_algorithms.hpp +43 -13
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/set.hpp +95 -8
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/set_hook.hpp +4 -2
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/sg_set.hpp +96 -12
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/sgtree.hpp +102 -5
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/sgtree_algorithms.hpp +48 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/slist.hpp +20 -11
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/slist_hook.hpp +9 -2
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/splay_set.hpp +95 -8
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/splaytree.hpp +36 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/splaytree_algorithms.hpp +27 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/treap.hpp +167 -23
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/treap_algorithms.hpp +28 -0
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/treap_set.hpp +100 -46
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/trivial_value_traits.hpp +5 -4
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/unordered_set.hpp +37 -27
- data/src/cxx_supportlib/vendor-modified/boost/intrusive/unordered_set_hook.hpp +30 -14
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/converter_lexical_streams.hpp +35 -36
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/converter_numeric.hpp +6 -28
- data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/try_lexical_convert.hpp +20 -5
- data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/posix_api.cpp +4 -2
- data/src/cxx_supportlib/vendor-modified/boost/libs/regex/src/regex.cpp +3 -1
- data/src/cxx_supportlib/vendor-modified/boost/libs/thread/src/pthread/once.cpp +5 -0
- data/src/cxx_supportlib/vendor-modified/boost/libs/thread/src/pthread/thread.cpp +11 -7
- data/src/cxx_supportlib/vendor-modified/boost/math/policies/policy.hpp +1 -3
- data/src/cxx_supportlib/vendor-modified/boost/math/special_functions/fpclassify.hpp +5 -1
- data/src/cxx_supportlib/vendor-modified/boost/math/special_functions/math_fwd.hpp +11 -0
- data/src/cxx_supportlib/vendor-modified/boost/math/tools/config.hpp +10 -2
- data/src/cxx_supportlib/vendor-modified/boost/move/adl_move_swap.hpp +40 -7
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/adaptive_merge.hpp +67 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/adaptive_sort.hpp +63 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/adaptive_sort_merge.hpp +2437 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/basic_op.hpp +121 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/insertion_sort.hpp +127 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/merge.hpp +637 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/detail/merge_sort.hpp +139 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/algo/move.hpp +155 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/algorithm.hpp +1 -116
- data/src/cxx_supportlib/vendor-modified/boost/move/core.hpp +14 -13
- data/src/cxx_supportlib/vendor-modified/boost/move/default_delete.hpp +17 -1
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/config_begin.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/destruct_n.hpp +67 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/fwd_macros.hpp +227 -32
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/iterator_traits.hpp +4 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/meta_utils.hpp +30 -9
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/meta_utils_core.hpp +12 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/move_helpers.hpp +84 -80
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/placement_new.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/reverse_iterator.hpp +171 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/type_traits.hpp +14 -20
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/unique_ptr_meta_utils.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/move/detail/workaround.hpp +14 -0
- data/src/cxx_supportlib/vendor-modified/boost/move/iterator.hpp +32 -33
- data/src/cxx_supportlib/vendor-modified/boost/move/make_unique.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/move/unique_ptr.hpp +49 -49
- data/src/cxx_supportlib/vendor-modified/boost/move/utility.hpp +8 -7
- data/src/cxx_supportlib/vendor-modified/boost/move/utility_core.hpp +17 -16
- data/src/cxx_supportlib/vendor-modified/boost/mpl/print.hpp +3 -0
- data/src/cxx_supportlib/vendor-modified/boost/none.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/none_t.hpp +2 -3
- data/src/cxx_supportlib/vendor-modified/boost/operators.hpp +197 -255
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/old_optional_implementation.hpp +1059 -0
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_aligned_storage.hpp +75 -0
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_config.hpp +116 -0
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_factory_support.hpp +36 -0
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_reference_spec.hpp +253 -0
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_relops.hpp +196 -0
- data/src/cxx_supportlib/vendor-modified/boost/optional/detail/optional_swap.hpp +117 -0
- data/src/cxx_supportlib/vendor-modified/boost/optional/optional.hpp +372 -554
- data/src/cxx_supportlib/vendor-modified/boost/optional/optional_fwd.hpp +12 -1
- data/src/cxx_supportlib/vendor-modified/boost/pool/detail/mutex.hpp +15 -7
- data/src/cxx_supportlib/vendor-modified/boost/pool/pool_alloc.hpp +24 -0
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/intel.h +9 -2
- data/src/cxx_supportlib/vendor-modified/boost/predef/compiler/visualc.h +15 -1
- data/src/cxx_supportlib/vendor-modified/boost/predef/hardware/simd.h +16 -4
- data/src/cxx_supportlib/vendor-modified/boost/predef/hardware/simd/x86.h +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/predef/hardware/simd/x86_amd.h +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/predef/hardware/simd/x86_amd/versions.h +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/predef/os/cygwin.h +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/predef/version.h +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/predef/version_number.h +20 -1
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/cat.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/config/config.hpp +6 -6
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/detail/binary_transform.hpp +5 -6
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/detail/to_list_msvc.hpp +55 -0
- data/src/cxx_supportlib/vendor-modified/boost/preprocessor/seq/to_list.hpp +12 -0
- data/src/cxx_supportlib/vendor-modified/boost/range/const_iterator.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/range/size_type.hpp +0 -5
- data/src/cxx_supportlib/vendor-modified/boost/regex/concepts.hpp +16 -16
- data/src/cxx_supportlib/vendor-modified/boost/regex/config.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/regex/pending/unicode_iterator.hpp +3 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/basic_regex_creator.hpp +102 -87
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/basic_regex_parser.hpp +45 -21
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/cpp_regex_traits.hpp +4 -4
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/fileiter.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/instances.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/match_flags.hpp +14 -2
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/mem_block_cache.hpp +46 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/perl_matcher.hpp +5 -2
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/perl_matcher_common.hpp +5 -14
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/perl_matcher_non_recursive.hpp +116 -13
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/perl_matcher_recursive.hpp +34 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/regex_format.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/regex_traits.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/regex_traits_defaults.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/regex_workaround.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/regex/v4/w32_regex_traits.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/allocate_shared_array.hpp +1004 -159
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/bad_weak_ptr.hpp +9 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/atomic_count.hpp +3 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/shared_count.hpp +4 -58
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base.hpp +5 -2
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_base_clang.hpp +9 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_impl.hpp +0 -8
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_has_sync.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_noexcept.hpp +30 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/spinlock.hpp +3 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/enable_shared_from_this.hpp +5 -4
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/intrusive_ptr.hpp +28 -3
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/intrusive_ref_counter.hpp +187 -0
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/make_shared_array.hpp +52 -144
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/make_shared_object.hpp +120 -450
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/scoped_array.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/scoped_ptr.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/shared_array.hpp +7 -6
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/shared_ptr.hpp +70 -8
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/weak_ptr.hpp +6 -5
- data/src/cxx_supportlib/vendor-modified/boost/system/error_code.hpp +9 -8
- data/src/cxx_supportlib/vendor-modified/boost/system/system_error.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/thread/barrier.hpp +5 -4
- data/src/cxx_supportlib/vendor-modified/boost/thread/completion_latch.hpp +0 -1
- data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/queue_views.hpp +0 -11
- data/src/cxx_supportlib/vendor-modified/boost/thread/concurrent_queues/sync_timed_queue.hpp +6 -4
- data/src/cxx_supportlib/vendor-modified/boost/thread/detail/config.hpp +11 -2
- data/src/cxx_supportlib/vendor-modified/boost/thread/detail/thread.hpp +11 -4
- data/src/cxx_supportlib/vendor-modified/boost/thread/exceptions.hpp +8 -8
- data/src/cxx_supportlib/vendor-modified/boost/thread/executors/executor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/thread/executors/generic_executor_ref.hpp +5 -5
- data/src/cxx_supportlib/vendor-modified/boost/thread/executors/loop_executor.hpp +22 -18
- data/src/cxx_supportlib/vendor-modified/boost/thread/future.hpp +163 -55
- data/src/cxx_supportlib/vendor-modified/boost/thread/futures/launch.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/futures/wait_for_all.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/thread/lock_types.hpp +9 -9
- data/src/cxx_supportlib/vendor-modified/boost/thread/locks.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/condition_variable.hpp +6 -7
- data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/condition_variable_fwd.hpp +17 -2
- data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/shared_mutex.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/thread_data.hpp +5 -5
- data/src/cxx_supportlib/vendor-modified/boost/thread/pthread/timespec.hpp +29 -0
- data/src/cxx_supportlib/vendor-modified/boost/thread/scoped_thread.hpp +23 -18
- data/src/cxx_supportlib/vendor-modified/boost/thread/synchronized_value.hpp +6 -6
- data/src/cxx_supportlib/vendor-modified/boost/thread/thread_functors.hpp +19 -4
- data/src/cxx_supportlib/vendor-modified/boost/thread/thread_guard.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/thread/user_scheduler.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_index.hpp +265 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_index/stl_type_index.hpp +272 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_index/type_index_facade.hpp +300 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/add_reference.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/aligned_storage.hpp +6 -6
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/common_type.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/common_arithmetic_type.hpp +9 -3
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/detail/mp_defer.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/extent.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_nothrow_assign.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_nothrow_constructor.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_nothrow_destructor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_trivial_assign.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_trivial_copy.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_trivial_destructor.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_trivial_move_assign.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/has_trivial_move_constructor.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_abstract.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_array.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_assignable.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_const.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_default_constructible.hpp +21 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_destructible.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_nothrow_move_assignable.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_nothrow_move_constructible.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_pod.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_rvalue_reference.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_virtual_base_of.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/is_volatile.hpp +2 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/make_void.hpp +52 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/rank.hpp +1 -0
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/remove_all_extents.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/remove_const.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/remove_cv.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/remove_extent.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/remove_pointer.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/remove_volatile.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/type_traits/type_with_alignment.hpp +1 -1
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/fwd.hpp +40 -6
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/implementation.hpp +4986 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/map.hpp +107 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/set.hpp +105 -0
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_map.hpp +1814 -1255
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_map_fwd.hpp +41 -45
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_set.hpp +1498 -1161
- data/src/cxx_supportlib/vendor-modified/boost/unordered/unordered_set_fwd.hpp +40 -44
- data/src/cxx_supportlib/vendor-modified/boost/utility.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/boost/utility/base_from_member.hpp +7 -6
- data/src/cxx_supportlib/vendor-modified/boost/utility/compare_pointees.hpp +10 -2
- data/src/cxx_supportlib/vendor-modified/boost/utility/string_ref.hpp +39 -22
- data/src/cxx_supportlib/vendor-modified/boost/utility/string_view.hpp +690 -0
- data/src/cxx_supportlib/vendor-modified/boost/utility/string_view_fwd.hpp +39 -0
- data/src/cxx_supportlib/vendor-modified/boost/version.hpp +2 -2
- data/src/helper-scripts/crash-watch.rb +3 -0
- data/src/ruby_supportlib/phusion_passenger.rb +1 -1
- data/src/ruby_supportlib/phusion_passenger/apache2/config_options.rb +1 -0
- data/src/ruby_supportlib/phusion_passenger/packaging.rb +2 -12
- metadata +77 -38
- data/dev/ci/inituidgid +0 -24
- data/dev/ci/run_jenkins.sh +0 -70
- data/dev/ci/run_travis.sh +0 -314
- data/doc/Design and Architecture.html +0 -2421
- data/doc/Design and Architecture.txt +0 -511
- data/doc/Security of user switching support.html +0 -1833
- data/doc/Users guide Apache.html +0 -3101
- data/doc/Users guide Apache.idmap.txt +0 -451
- data/doc/Users guide Apache.txt +0 -534
- data/doc/Users guide Nginx.html +0 -3026
- data/doc/Users guide Nginx.idmap.txt +0 -431
- data/doc/Users guide Nginx.txt +0 -451
- data/doc/Users guide Standalone.html +0 -2092
- data/doc/Users guide Standalone.idmap.txt +0 -137
- data/doc/Users guide Standalone.txt +0 -81
- data/doc/Users guide.html +0 -1606
- data/doc/Users guide.txt +0 -8
- data/src/cxx_supportlib/vendor-modified/boost/align/align.hpp +0 -20
- data/src/cxx_supportlib/vendor-modified/boost/align/detail/address.hpp +0 -29
- data/src/cxx_supportlib/vendor-modified/boost/align/detail/align.hpp +0 -40
- data/src/cxx_supportlib/vendor-modified/boost/align/detail/align_cxx11.hpp +0 -22
- data/src/cxx_supportlib/vendor-modified/boost/align/detail/is_alignment.hpp +0 -29
- data/src/cxx_supportlib/vendor-modified/boost/container/detail/hash_table.hpp +0 -383
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/array_allocator.hpp +0 -318
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/array_count_impl.hpp +0 -67
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/array_traits.hpp +0 -60
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/array_utility.hpp +0 -214
- data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_if_array.hpp +0 -34
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/allocate.hpp +0 -1128
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/buckets.hpp +0 -928
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/equivalent.hpp +0 -686
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/extract_key.hpp +0 -188
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/table.hpp +0 -873
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/unique.hpp +0 -628
- data/src/cxx_supportlib/vendor-modified/boost/unordered/detail/util.hpp +0 -266
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b67e8e2889ca5fa178f9bb22bb48aebc96ef534e
|
4
|
+
data.tar.gz: 5d696b312ae76c5f3c78c3897bcc0cffd2c09775
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 68c4a6e88acfc532412ac224b7b08d67b7ea4eae23533eb1b005e93d72758351b87e0e0b0d8b313d4afe947d71bd9b8123bd06a4e88c831fd57eb01b0226b337
|
7
|
+
data.tar.gz: e8d51c09e2e00627356ad862ede43f209c064886fcc9e9f1ff23fe4f13ce4c10b3ede78bd43c6bbd5641b87c82803c1eb22118e3214d0133ce5451b768f9767b
|
data/.editorconfig
CHANGED
@@ -48,6 +48,10 @@ indent_style = space
|
|
48
48
|
indent_size = 2
|
49
49
|
trim_trailing_whitespace = true
|
50
50
|
|
51
|
+
[*.py]
|
52
|
+
indent_style = tab
|
53
|
+
trim_trailing_whitespace = true
|
54
|
+
|
51
55
|
[*.cxxcodebuilder]
|
52
56
|
indent_style = space
|
53
57
|
indent_size = 2
|
@@ -68,6 +72,11 @@ indent_style = space
|
|
68
72
|
indent_size = 2
|
69
73
|
trim_trailing_whitespace = true
|
70
74
|
|
75
|
+
[Jenkinsfile]
|
76
|
+
indent_style = space
|
77
|
+
indent_size = 2
|
78
|
+
trim_trailing_whitespace = true
|
79
|
+
|
71
80
|
[*.js]
|
72
81
|
indent_style = tab
|
73
82
|
indent_size = 4
|
data/CHANGELOG
CHANGED
@@ -1,3 +1,12 @@
|
|
1
|
+
Release 5.1.5
|
2
|
+
-------------------------------
|
3
|
+
|
4
|
+
* Updated Boost to version 1.64.0, which fixed a compilation issue on certain Gentoo based setups. Closes GH-1942.
|
5
|
+
* Improved the error message shown when an app fails to start in time.
|
6
|
+
* [Apache] Remove option to configure PassengerAppGroupName from .htaccess because, assuming AllowOverride Options is set, malicious users (having an account on the same server) can sometimes collide app group names of other users and capture their traffic.
|
7
|
+
* Major internal refactoring of settings handling, to prepare for supporting settings changes without restart.
|
8
|
+
|
9
|
+
|
1
10
|
Release 5.1.4
|
2
11
|
-------------------------------
|
3
12
|
|
data/build/cxx_tests.rb
CHANGED
@@ -67,6 +67,16 @@ TEST_CXX_OBJECTS = {
|
|
67
67
|
"#{TEST_OUTPUT_DIR}cxx/ServerKit/CookieUtilsTest.o" =>
|
68
68
|
"test/cxx/ServerKit/CookieUtilsTest.cpp",
|
69
69
|
|
70
|
+
"#{TEST_OUTPUT_DIR}cxx/ConfigKit/SchemaTest.o" =>
|
71
|
+
"test/cxx/ConfigKit/SchemaTest.cpp",
|
72
|
+
"#{TEST_OUTPUT_DIR}cxx/ConfigKit/StoreTest.o" =>
|
73
|
+
"test/cxx/ConfigKit/StoreTest.cpp",
|
74
|
+
"#{TEST_OUTPUT_DIR}cxx/ConfigKit/ErrorTest.o" =>
|
75
|
+
"test/cxx/ConfigKit/ErrorTest.cpp",
|
76
|
+
"#{TEST_OUTPUT_DIR}cxx/ConfigKit/TranslationTest.o" =>
|
77
|
+
"test/cxx/ConfigKit/TranslationTest.cpp",
|
78
|
+
"#{TEST_OUTPUT_DIR}cxx/ConfigKit/SubSchemaTest.o" =>
|
79
|
+
"test/cxx/ConfigKit/SubSchemaTest.cpp",
|
70
80
|
"#{TEST_OUTPUT_DIR}cxx/MemoryKit/MbufTest.o" =>
|
71
81
|
"test/cxx/MemoryKit/MbufTest.cpp",
|
72
82
|
"#{TEST_OUTPUT_DIR}cxx/MemoryKit/PallocTest.o" =>
|
@@ -172,7 +182,7 @@ TEST_CXX_OBJECTS.each_pair do |object, source|
|
|
172
182
|
)
|
173
183
|
end
|
174
184
|
|
175
|
-
# Define compilation task for the
|
185
|
+
# Define compilation task for the test main executable.
|
176
186
|
dependencies = [
|
177
187
|
TEST_CXX_OBJECTS.keys,
|
178
188
|
LIBEV_TARGET,
|
data/build/documentation.rb
CHANGED
@@ -23,38 +23,6 @@
|
|
23
23
|
# THE SOFTWARE.
|
24
24
|
|
25
25
|
desc "Generate all documentation"
|
26
|
-
task :doc => Packaging::ASCII_DOCS
|
27
|
-
|
28
|
-
Packaging::ASCII_DOCS.each do |target|
|
29
|
-
source = target.sub(/\.html$/, '.txt')
|
30
|
-
file target => [source] + Dir["doc/users_guide_snippets/**/*"] do
|
31
|
-
if target =~ /apache/i
|
32
|
-
type = "apache"
|
33
|
-
juvia_site_key = "5jpmkyjqlml8rktsfldfpbwth8ig7w9"
|
34
|
-
elsif target =~ /nginx/i
|
35
|
-
type = "nginx"
|
36
|
-
juvia_site_key = "q0ptarhn8o9xanwomq8zkgewbtwffyz"
|
37
|
-
elsif target =~ /standalone/i
|
38
|
-
type = "standalone"
|
39
|
-
juvia_site_key = "amggdy0k65hb4hbjg3dh7pnb9zd8dwy"
|
40
|
-
else
|
41
|
-
type = nil
|
42
|
-
juvia_site_key = nil
|
43
|
-
end
|
44
|
-
command = "mizuho '#{source}'"
|
45
|
-
command << " -a #{type}" if type
|
46
|
-
if juvia_site_key
|
47
|
-
command << " -c juvia --juvia-url http://juvia.phusion.nl --juvia-site-key #{juvia_site_key}"
|
48
|
-
end
|
49
|
-
sh(command)
|
50
|
-
end
|
51
|
-
|
52
|
-
task :clean do
|
53
|
-
if boolean_option('CLEAN_DOCS', true)
|
54
|
-
sh "rm -f '#{target}'"
|
55
|
-
end
|
56
|
-
end
|
57
|
-
end
|
58
26
|
|
59
27
|
def create_markdown_compilation_task(target)
|
60
28
|
source = target.sub(/\.html$/, '.txt.md')
|
@@ -18,6 +18,7 @@ CXX_DEPENDENCY_MAP =
|
|
18
18
|
"src/agent/Core/Controller.h",
|
19
19
|
"src/agent/Core/Controller/AppResponse.h",
|
20
20
|
"src/agent/Core/Controller/Client.h",
|
21
|
+
"src/agent/Core/Controller/Config.h",
|
21
22
|
"src/agent/Core/Controller/Request.h",
|
22
23
|
"src/agent/Core/Controller/TurboCaching.h",
|
23
24
|
"src/agent/Core/ResponseCache.h",
|
@@ -40,6 +41,12 @@ CXX_DEPENDENCY_MAP =
|
|
40
41
|
"src/agent/Shared/ApplicationPoolApiKey.h",
|
41
42
|
"src/cxx_supportlib/Algorithms/MovingAverage.h",
|
42
43
|
"src/cxx_supportlib/AppTypes.h",
|
44
|
+
"src/cxx_supportlib/ConfigKit/Common.h",
|
45
|
+
"src/cxx_supportlib/ConfigKit/ConfigKit.h",
|
46
|
+
"src/cxx_supportlib/ConfigKit/Schema.h",
|
47
|
+
"src/cxx_supportlib/ConfigKit/Store.h",
|
48
|
+
"src/cxx_supportlib/ConfigKit/TableTranslator.h",
|
49
|
+
"src/cxx_supportlib/ConfigKit/Utils.h",
|
43
50
|
"src/cxx_supportlib/Constants.h",
|
44
51
|
"src/cxx_supportlib/DataStructures/HashedStaticString.h",
|
45
52
|
"src/cxx_supportlib/DataStructures/LString.h",
|
@@ -2391,6 +2398,7 @@ CXX_DEPENDENCY_MAP =
|
|
2391
2398
|
"src/agent/Core/ApplicationPool/Socket.h",
|
2392
2399
|
"src/agent/Core/Controller/AppResponse.h",
|
2393
2400
|
"src/agent/Core/Controller/Client.h",
|
2401
|
+
"src/agent/Core/Controller/Config.h",
|
2394
2402
|
"src/agent/Core/Controller/Request.h",
|
2395
2403
|
"src/agent/Core/Controller/TurboCaching.h",
|
2396
2404
|
"src/agent/Core/ResponseCache.h",
|
@@ -2412,6 +2420,12 @@ CXX_DEPENDENCY_MAP =
|
|
2412
2420
|
"src/agent/Shared/ApplicationPoolApiKey.h",
|
2413
2421
|
"src/cxx_supportlib/Algorithms/MovingAverage.h",
|
2414
2422
|
"src/cxx_supportlib/AppTypes.h",
|
2423
|
+
"src/cxx_supportlib/ConfigKit/Common.h",
|
2424
|
+
"src/cxx_supportlib/ConfigKit/ConfigKit.h",
|
2425
|
+
"src/cxx_supportlib/ConfigKit/Schema.h",
|
2426
|
+
"src/cxx_supportlib/ConfigKit/Store.h",
|
2427
|
+
"src/cxx_supportlib/ConfigKit/TableTranslator.h",
|
2428
|
+
"src/cxx_supportlib/ConfigKit/Utils.h",
|
2415
2429
|
"src/cxx_supportlib/Constants.h",
|
2416
2430
|
"src/cxx_supportlib/DataStructures/HashedStaticString.h",
|
2417
2431
|
"src/cxx_supportlib/DataStructures/LString.h",
|
@@ -2558,6 +2572,7 @@ CXX_DEPENDENCY_MAP =
|
|
2558
2572
|
"src/agent/Core/Controller.h",
|
2559
2573
|
"src/agent/Core/Controller/AppResponse.h",
|
2560
2574
|
"src/agent/Core/Controller/Client.h",
|
2575
|
+
"src/agent/Core/Controller/Config.h",
|
2561
2576
|
"src/agent/Core/Controller/Request.h",
|
2562
2577
|
"src/agent/Core/Controller/TurboCaching.h",
|
2563
2578
|
"src/agent/Core/ResponseCache.h",
|
@@ -2579,6 +2594,12 @@ CXX_DEPENDENCY_MAP =
|
|
2579
2594
|
"src/agent/Shared/ApplicationPoolApiKey.h",
|
2580
2595
|
"src/cxx_supportlib/Algorithms/MovingAverage.h",
|
2581
2596
|
"src/cxx_supportlib/AppTypes.h",
|
2597
|
+
"src/cxx_supportlib/ConfigKit/Common.h",
|
2598
|
+
"src/cxx_supportlib/ConfigKit/ConfigKit.h",
|
2599
|
+
"src/cxx_supportlib/ConfigKit/Schema.h",
|
2600
|
+
"src/cxx_supportlib/ConfigKit/Store.h",
|
2601
|
+
"src/cxx_supportlib/ConfigKit/TableTranslator.h",
|
2602
|
+
"src/cxx_supportlib/ConfigKit/Utils.h",
|
2582
2603
|
"src/cxx_supportlib/Constants.h",
|
2583
2604
|
"src/cxx_supportlib/DataStructures/HashedStaticString.h",
|
2584
2605
|
"src/cxx_supportlib/DataStructures/LString.h",
|
@@ -2681,6 +2702,7 @@ CXX_DEPENDENCY_MAP =
|
|
2681
2702
|
"src/agent/Core/Controller.h",
|
2682
2703
|
"src/agent/Core/Controller/AppResponse.h",
|
2683
2704
|
"src/agent/Core/Controller/Client.h",
|
2705
|
+
"src/agent/Core/Controller/Config.h",
|
2684
2706
|
"src/agent/Core/Controller/Request.h",
|
2685
2707
|
"src/agent/Core/Controller/TurboCaching.h",
|
2686
2708
|
"src/agent/Core/ResponseCache.h",
|
@@ -2702,6 +2724,12 @@ CXX_DEPENDENCY_MAP =
|
|
2702
2724
|
"src/agent/Shared/ApplicationPoolApiKey.h",
|
2703
2725
|
"src/cxx_supportlib/Algorithms/MovingAverage.h",
|
2704
2726
|
"src/cxx_supportlib/AppTypes.h",
|
2727
|
+
"src/cxx_supportlib/ConfigKit/Common.h",
|
2728
|
+
"src/cxx_supportlib/ConfigKit/ConfigKit.h",
|
2729
|
+
"src/cxx_supportlib/ConfigKit/Schema.h",
|
2730
|
+
"src/cxx_supportlib/ConfigKit/Store.h",
|
2731
|
+
"src/cxx_supportlib/ConfigKit/TableTranslator.h",
|
2732
|
+
"src/cxx_supportlib/ConfigKit/Utils.h",
|
2705
2733
|
"src/cxx_supportlib/Constants.h",
|
2706
2734
|
"src/cxx_supportlib/DataStructures/HashedStaticString.h",
|
2707
2735
|
"src/cxx_supportlib/DataStructures/LString.h",
|
@@ -2801,6 +2829,7 @@ CXX_DEPENDENCY_MAP =
|
|
2801
2829
|
"src/agent/Core/ApplicationPool/Session.h",
|
2802
2830
|
"src/agent/Core/ApplicationPool/Socket.h",
|
2803
2831
|
"src/agent/Core/Controller/AppResponse.h",
|
2832
|
+
"src/agent/Core/Controller/Config.h",
|
2804
2833
|
"src/agent/Core/Controller/Request.h",
|
2805
2834
|
"src/agent/Core/SpawningKit/BackgroundIOCapturer.h",
|
2806
2835
|
"src/agent/Core/SpawningKit/Config.h",
|
@@ -2818,7 +2847,14 @@ CXX_DEPENDENCY_MAP =
|
|
2818
2847
|
"src/agent/Core/UnionStation/StopwatchLog.h",
|
2819
2848
|
"src/agent/Core/UnionStation/Transaction.h",
|
2820
2849
|
"src/agent/Shared/ApplicationPoolApiKey.h",
|
2850
|
+
"src/cxx_supportlib/Algorithms/MovingAverage.h",
|
2821
2851
|
"src/cxx_supportlib/AppTypes.h",
|
2852
|
+
"src/cxx_supportlib/ConfigKit/Common.h",
|
2853
|
+
"src/cxx_supportlib/ConfigKit/ConfigKit.h",
|
2854
|
+
"src/cxx_supportlib/ConfigKit/Schema.h",
|
2855
|
+
"src/cxx_supportlib/ConfigKit/Store.h",
|
2856
|
+
"src/cxx_supportlib/ConfigKit/TableTranslator.h",
|
2857
|
+
"src/cxx_supportlib/ConfigKit/Utils.h",
|
2822
2858
|
"src/cxx_supportlib/Constants.h",
|
2823
2859
|
"src/cxx_supportlib/DataStructures/HashedStaticString.h",
|
2824
2860
|
"src/cxx_supportlib/DataStructures/LString.h",
|
@@ -2826,6 +2862,7 @@ CXX_DEPENDENCY_MAP =
|
|
2826
2862
|
"src/cxx_supportlib/Exceptions.h",
|
2827
2863
|
"src/cxx_supportlib/FileDescriptor.h",
|
2828
2864
|
"src/cxx_supportlib/Hooks.h",
|
2865
|
+
"src/cxx_supportlib/Integrations/LibevJsonUtils.h",
|
2829
2866
|
"src/cxx_supportlib/Logging.h",
|
2830
2867
|
"src/cxx_supportlib/LveLoggingDecorator.h",
|
2831
2868
|
"src/cxx_supportlib/MemoryKit/mbuf.h",
|
@@ -2835,6 +2872,7 @@ CXX_DEPENDENCY_MAP =
|
|
2835
2872
|
"src/cxx_supportlib/SafeLibev.h",
|
2836
2873
|
"src/cxx_supportlib/ServerKit/Channel.h",
|
2837
2874
|
"src/cxx_supportlib/ServerKit/Client.h",
|
2875
|
+
"src/cxx_supportlib/ServerKit/ClientRef.h",
|
2838
2876
|
"src/cxx_supportlib/ServerKit/Context.h",
|
2839
2877
|
"src/cxx_supportlib/ServerKit/Errors.h",
|
2840
2878
|
"src/cxx_supportlib/ServerKit/FdSinkChannel.h",
|
@@ -2843,10 +2881,15 @@ CXX_DEPENDENCY_MAP =
|
|
2843
2881
|
"src/cxx_supportlib/ServerKit/FileBufferedFdSinkChannel.h",
|
2844
2882
|
"src/cxx_supportlib/ServerKit/HeaderTable.h",
|
2845
2883
|
"src/cxx_supportlib/ServerKit/Hooks.h",
|
2884
|
+
"src/cxx_supportlib/ServerKit/HttpChunkedBodyParser.h",
|
2846
2885
|
"src/cxx_supportlib/ServerKit/HttpChunkedBodyParserState.h",
|
2847
2886
|
"src/cxx_supportlib/ServerKit/HttpClient.h",
|
2887
|
+
"src/cxx_supportlib/ServerKit/HttpHeaderParser.h",
|
2848
2888
|
"src/cxx_supportlib/ServerKit/HttpHeaderParserState.h",
|
2849
2889
|
"src/cxx_supportlib/ServerKit/HttpRequest.h",
|
2890
|
+
"src/cxx_supportlib/ServerKit/HttpRequestRef.h",
|
2891
|
+
"src/cxx_supportlib/ServerKit/HttpServer.h",
|
2892
|
+
"src/cxx_supportlib/ServerKit/Server.h",
|
2850
2893
|
"src/cxx_supportlib/ServerKit/http_parser.h",
|
2851
2894
|
"src/cxx_supportlib/StaticString.h",
|
2852
2895
|
"src/cxx_supportlib/Utils.h",
|
@@ -2857,6 +2900,7 @@ CXX_DEPENDENCY_MAP =
|
|
2857
2900
|
"src/cxx_supportlib/Utils/FastStringStream.h",
|
2858
2901
|
"src/cxx_supportlib/Utils/HashMap.h",
|
2859
2902
|
"src/cxx_supportlib/Utils/Hasher.h",
|
2903
|
+
"src/cxx_supportlib/Utils/HttpConstants.h",
|
2860
2904
|
"src/cxx_supportlib/Utils/IOUtils.h",
|
2861
2905
|
"src/cxx_supportlib/Utils/IniFile.h",
|
2862
2906
|
"src/cxx_supportlib/Utils/JsonUtils.h",
|
@@ -2893,6 +2937,70 @@ CXX_DEPENDENCY_MAP =
|
|
2893
2937
|
"src/cxx_supportlib/oxt/system_calls.hpp",
|
2894
2938
|
"src/cxx_supportlib/oxt/thread.hpp",
|
2895
2939
|
"src/cxx_supportlib/oxt/tracable_exception.hpp"],
|
2940
|
+
"src/agent/Core/Controller/Config.h"=>
|
2941
|
+
["src/cxx_supportlib/Algorithms/MovingAverage.h",
|
2942
|
+
"src/cxx_supportlib/ConfigKit/Common.h",
|
2943
|
+
"src/cxx_supportlib/ConfigKit/ConfigKit.h",
|
2944
|
+
"src/cxx_supportlib/ConfigKit/Schema.h",
|
2945
|
+
"src/cxx_supportlib/ConfigKit/Store.h",
|
2946
|
+
"src/cxx_supportlib/ConfigKit/TableTranslator.h",
|
2947
|
+
"src/cxx_supportlib/ConfigKit/Utils.h",
|
2948
|
+
"src/cxx_supportlib/Constants.h",
|
2949
|
+
"src/cxx_supportlib/DataStructures/HashedStaticString.h",
|
2950
|
+
"src/cxx_supportlib/DataStructures/LString.h",
|
2951
|
+
"src/cxx_supportlib/DataStructures/StringKeyTable.h",
|
2952
|
+
"src/cxx_supportlib/Exceptions.h",
|
2953
|
+
"src/cxx_supportlib/FileDescriptor.h",
|
2954
|
+
"src/cxx_supportlib/Integrations/LibevJsonUtils.h",
|
2955
|
+
"src/cxx_supportlib/Logging.h",
|
2956
|
+
"src/cxx_supportlib/MemoryKit/mbuf.h",
|
2957
|
+
"src/cxx_supportlib/MemoryKit/palloc.h",
|
2958
|
+
"src/cxx_supportlib/SafeLibev.h",
|
2959
|
+
"src/cxx_supportlib/ServerKit/Channel.h",
|
2960
|
+
"src/cxx_supportlib/ServerKit/Client.h",
|
2961
|
+
"src/cxx_supportlib/ServerKit/ClientRef.h",
|
2962
|
+
"src/cxx_supportlib/ServerKit/Context.h",
|
2963
|
+
"src/cxx_supportlib/ServerKit/Errors.h",
|
2964
|
+
"src/cxx_supportlib/ServerKit/FdSourceChannel.h",
|
2965
|
+
"src/cxx_supportlib/ServerKit/FileBufferedChannel.h",
|
2966
|
+
"src/cxx_supportlib/ServerKit/FileBufferedFdSinkChannel.h",
|
2967
|
+
"src/cxx_supportlib/ServerKit/HeaderTable.h",
|
2968
|
+
"src/cxx_supportlib/ServerKit/Hooks.h",
|
2969
|
+
"src/cxx_supportlib/ServerKit/HttpChunkedBodyParser.h",
|
2970
|
+
"src/cxx_supportlib/ServerKit/HttpChunkedBodyParserState.h",
|
2971
|
+
"src/cxx_supportlib/ServerKit/HttpClient.h",
|
2972
|
+
"src/cxx_supportlib/ServerKit/HttpHeaderParser.h",
|
2973
|
+
"src/cxx_supportlib/ServerKit/HttpHeaderParserState.h",
|
2974
|
+
"src/cxx_supportlib/ServerKit/HttpRequest.h",
|
2975
|
+
"src/cxx_supportlib/ServerKit/HttpRequestRef.h",
|
2976
|
+
"src/cxx_supportlib/ServerKit/HttpServer.h",
|
2977
|
+
"src/cxx_supportlib/ServerKit/Server.h",
|
2978
|
+
"src/cxx_supportlib/ServerKit/http_parser.h",
|
2979
|
+
"src/cxx_supportlib/StaticString.h",
|
2980
|
+
"src/cxx_supportlib/Utils.h",
|
2981
|
+
"src/cxx_supportlib/Utils/FastStringStream.h",
|
2982
|
+
"src/cxx_supportlib/Utils/Hasher.h",
|
2983
|
+
"src/cxx_supportlib/Utils/HttpConstants.h",
|
2984
|
+
"src/cxx_supportlib/Utils/IOUtils.h",
|
2985
|
+
"src/cxx_supportlib/Utils/JsonUtils.h",
|
2986
|
+
"src/cxx_supportlib/Utils/LargeFiles.h",
|
2987
|
+
"src/cxx_supportlib/Utils/MemZeroGuard.h",
|
2988
|
+
"src/cxx_supportlib/Utils/MessageIO.h",
|
2989
|
+
"src/cxx_supportlib/Utils/ScopeGuard.h",
|
2990
|
+
"src/cxx_supportlib/Utils/StrIntUtils.h",
|
2991
|
+
"src/cxx_supportlib/Utils/SystemTime.h",
|
2992
|
+
"src/cxx_supportlib/Utils/VariantMap.h",
|
2993
|
+
"src/cxx_supportlib/oxt/backtrace.hpp",
|
2994
|
+
"src/cxx_supportlib/oxt/detail/../spin_lock.hpp",
|
2995
|
+
"src/cxx_supportlib/oxt/detail/backtrace_disabled.hpp",
|
2996
|
+
"src/cxx_supportlib/oxt/detail/backtrace_enabled.hpp",
|
2997
|
+
"src/cxx_supportlib/oxt/detail/context.hpp",
|
2998
|
+
"src/cxx_supportlib/oxt/detail/tracable_exception_disabled.hpp",
|
2999
|
+
"src/cxx_supportlib/oxt/detail/tracable_exception_enabled.hpp",
|
3000
|
+
"src/cxx_supportlib/oxt/macros.hpp",
|
3001
|
+
"src/cxx_supportlib/oxt/system_calls.hpp",
|
3002
|
+
"src/cxx_supportlib/oxt/thread.hpp",
|
3003
|
+
"src/cxx_supportlib/oxt/tracable_exception.hpp"],
|
2896
3004
|
"src/agent/Core/Controller/ForwardResponse.cpp"=>
|
2897
3005
|
["src/agent/Core/ApplicationPool/AbstractSession.h",
|
2898
3006
|
"src/agent/Core/ApplicationPool/BasicGroupInfo.h",
|
@@ -2909,6 +3017,7 @@ CXX_DEPENDENCY_MAP =
|
|
2909
3017
|
"src/agent/Core/Controller.h",
|
2910
3018
|
"src/agent/Core/Controller/AppResponse.h",
|
2911
3019
|
"src/agent/Core/Controller/Client.h",
|
3020
|
+
"src/agent/Core/Controller/Config.h",
|
2912
3021
|
"src/agent/Core/Controller/Request.h",
|
2913
3022
|
"src/agent/Core/Controller/TurboCaching.h",
|
2914
3023
|
"src/agent/Core/ResponseCache.h",
|
@@ -2930,6 +3039,12 @@ CXX_DEPENDENCY_MAP =
|
|
2930
3039
|
"src/agent/Shared/ApplicationPoolApiKey.h",
|
2931
3040
|
"src/cxx_supportlib/Algorithms/MovingAverage.h",
|
2932
3041
|
"src/cxx_supportlib/AppTypes.h",
|
3042
|
+
"src/cxx_supportlib/ConfigKit/Common.h",
|
3043
|
+
"src/cxx_supportlib/ConfigKit/ConfigKit.h",
|
3044
|
+
"src/cxx_supportlib/ConfigKit/Schema.h",
|
3045
|
+
"src/cxx_supportlib/ConfigKit/Store.h",
|
3046
|
+
"src/cxx_supportlib/ConfigKit/TableTranslator.h",
|
3047
|
+
"src/cxx_supportlib/ConfigKit/Utils.h",
|
2933
3048
|
"src/cxx_supportlib/Constants.h",
|
2934
3049
|
"src/cxx_supportlib/DataStructures/HashedStaticString.h",
|
2935
3050
|
"src/cxx_supportlib/DataStructures/LString.h",
|
@@ -3032,6 +3147,7 @@ CXX_DEPENDENCY_MAP =
|
|
3032
3147
|
"src/agent/Core/Controller.h",
|
3033
3148
|
"src/agent/Core/Controller/AppResponse.h",
|
3034
3149
|
"src/agent/Core/Controller/Client.h",
|
3150
|
+
"src/agent/Core/Controller/Config.h",
|
3035
3151
|
"src/agent/Core/Controller/Request.h",
|
3036
3152
|
"src/agent/Core/Controller/TurboCaching.h",
|
3037
3153
|
"src/agent/Core/ResponseCache.h",
|
@@ -3053,6 +3169,12 @@ CXX_DEPENDENCY_MAP =
|
|
3053
3169
|
"src/agent/Shared/ApplicationPoolApiKey.h",
|
3054
3170
|
"src/cxx_supportlib/Algorithms/MovingAverage.h",
|
3055
3171
|
"src/cxx_supportlib/AppTypes.h",
|
3172
|
+
"src/cxx_supportlib/ConfigKit/Common.h",
|
3173
|
+
"src/cxx_supportlib/ConfigKit/ConfigKit.h",
|
3174
|
+
"src/cxx_supportlib/ConfigKit/Schema.h",
|
3175
|
+
"src/cxx_supportlib/ConfigKit/Store.h",
|
3176
|
+
"src/cxx_supportlib/ConfigKit/TableTranslator.h",
|
3177
|
+
"src/cxx_supportlib/ConfigKit/Utils.h",
|
3056
3178
|
"src/cxx_supportlib/Constants.h",
|
3057
3179
|
"src/cxx_supportlib/DataStructures/HashedStaticString.h",
|
3058
3180
|
"src/cxx_supportlib/DataStructures/LString.h",
|
@@ -3157,6 +3279,7 @@ CXX_DEPENDENCY_MAP =
|
|
3157
3279
|
"src/agent/Core/Controller/BufferBody.cpp",
|
3158
3280
|
"src/agent/Core/Controller/CheckoutSession.cpp",
|
3159
3281
|
"src/agent/Core/Controller/Client.h",
|
3282
|
+
"src/agent/Core/Controller/Config.h",
|
3160
3283
|
"src/agent/Core/Controller/ForwardResponse.cpp",
|
3161
3284
|
"src/agent/Core/Controller/Hooks.cpp",
|
3162
3285
|
"src/agent/Core/Controller/InitRequest.cpp",
|
@@ -3165,7 +3288,7 @@ CXX_DEPENDENCY_MAP =
|
|
3165
3288
|
"src/agent/Core/Controller/Miscellaneous.cpp",
|
3166
3289
|
"src/agent/Core/Controller/Request.h",
|
3167
3290
|
"src/agent/Core/Controller/SendRequest.cpp",
|
3168
|
-
"src/agent/Core/Controller/
|
3291
|
+
"src/agent/Core/Controller/StateInspection.cpp",
|
3169
3292
|
"src/agent/Core/Controller/TurboCaching.h",
|
3170
3293
|
"src/agent/Core/ResponseCache.h",
|
3171
3294
|
"src/agent/Core/SpawningKit/BackgroundIOCapturer.h",
|
@@ -3186,6 +3309,12 @@ CXX_DEPENDENCY_MAP =
|
|
3186
3309
|
"src/agent/Shared/ApplicationPoolApiKey.h",
|
3187
3310
|
"src/cxx_supportlib/Algorithms/MovingAverage.h",
|
3188
3311
|
"src/cxx_supportlib/AppTypes.h",
|
3312
|
+
"src/cxx_supportlib/ConfigKit/Common.h",
|
3313
|
+
"src/cxx_supportlib/ConfigKit/ConfigKit.h",
|
3314
|
+
"src/cxx_supportlib/ConfigKit/Schema.h",
|
3315
|
+
"src/cxx_supportlib/ConfigKit/Store.h",
|
3316
|
+
"src/cxx_supportlib/ConfigKit/TableTranslator.h",
|
3317
|
+
"src/cxx_supportlib/ConfigKit/Utils.h",
|
3189
3318
|
"src/cxx_supportlib/Constants.h",
|
3190
3319
|
"src/cxx_supportlib/DataStructures/HashedStaticString.h",
|
3191
3320
|
"src/cxx_supportlib/DataStructures/LString.h",
|
@@ -3288,6 +3417,7 @@ CXX_DEPENDENCY_MAP =
|
|
3288
3417
|
"src/agent/Core/Controller.h",
|
3289
3418
|
"src/agent/Core/Controller/AppResponse.h",
|
3290
3419
|
"src/agent/Core/Controller/Client.h",
|
3420
|
+
"src/agent/Core/Controller/Config.h",
|
3291
3421
|
"src/agent/Core/Controller/Request.h",
|
3292
3422
|
"src/agent/Core/Controller/TurboCaching.h",
|
3293
3423
|
"src/agent/Core/ResponseCache.h",
|
@@ -3309,6 +3439,12 @@ CXX_DEPENDENCY_MAP =
|
|
3309
3439
|
"src/agent/Shared/ApplicationPoolApiKey.h",
|
3310
3440
|
"src/cxx_supportlib/Algorithms/MovingAverage.h",
|
3311
3441
|
"src/cxx_supportlib/AppTypes.h",
|
3442
|
+
"src/cxx_supportlib/ConfigKit/Common.h",
|
3443
|
+
"src/cxx_supportlib/ConfigKit/ConfigKit.h",
|
3444
|
+
"src/cxx_supportlib/ConfigKit/Schema.h",
|
3445
|
+
"src/cxx_supportlib/ConfigKit/Store.h",
|
3446
|
+
"src/cxx_supportlib/ConfigKit/TableTranslator.h",
|
3447
|
+
"src/cxx_supportlib/ConfigKit/Utils.h",
|
3312
3448
|
"src/cxx_supportlib/Constants.h",
|
3313
3449
|
"src/cxx_supportlib/DataStructures/HashedStaticString.h",
|
3314
3450
|
"src/cxx_supportlib/DataStructures/LString.h",
|
@@ -3411,6 +3547,7 @@ CXX_DEPENDENCY_MAP =
|
|
3411
3547
|
"src/agent/Core/Controller.h",
|
3412
3548
|
"src/agent/Core/Controller/AppResponse.h",
|
3413
3549
|
"src/agent/Core/Controller/Client.h",
|
3550
|
+
"src/agent/Core/Controller/Config.h",
|
3414
3551
|
"src/agent/Core/Controller/Request.h",
|
3415
3552
|
"src/agent/Core/Controller/TurboCaching.h",
|
3416
3553
|
"src/agent/Core/ResponseCache.h",
|
@@ -3432,6 +3569,12 @@ CXX_DEPENDENCY_MAP =
|
|
3432
3569
|
"src/agent/Shared/ApplicationPoolApiKey.h",
|
3433
3570
|
"src/cxx_supportlib/Algorithms/MovingAverage.h",
|
3434
3571
|
"src/cxx_supportlib/AppTypes.h",
|
3572
|
+
"src/cxx_supportlib/ConfigKit/Common.h",
|
3573
|
+
"src/cxx_supportlib/ConfigKit/ConfigKit.h",
|
3574
|
+
"src/cxx_supportlib/ConfigKit/Schema.h",
|
3575
|
+
"src/cxx_supportlib/ConfigKit/Store.h",
|
3576
|
+
"src/cxx_supportlib/ConfigKit/TableTranslator.h",
|
3577
|
+
"src/cxx_supportlib/ConfigKit/Utils.h",
|
3435
3578
|
"src/cxx_supportlib/Constants.h",
|
3436
3579
|
"src/cxx_supportlib/DataStructures/HashedStaticString.h",
|
3437
3580
|
"src/cxx_supportlib/DataStructures/LString.h",
|
@@ -3534,6 +3677,7 @@ CXX_DEPENDENCY_MAP =
|
|
3534
3677
|
"src/agent/Core/Controller.h",
|
3535
3678
|
"src/agent/Core/Controller/AppResponse.h",
|
3536
3679
|
"src/agent/Core/Controller/Client.h",
|
3680
|
+
"src/agent/Core/Controller/Config.h",
|
3537
3681
|
"src/agent/Core/Controller/Request.h",
|
3538
3682
|
"src/agent/Core/Controller/TurboCaching.h",
|
3539
3683
|
"src/agent/Core/ResponseCache.h",
|
@@ -3555,6 +3699,12 @@ CXX_DEPENDENCY_MAP =
|
|
3555
3699
|
"src/agent/Shared/ApplicationPoolApiKey.h",
|
3556
3700
|
"src/cxx_supportlib/Algorithms/MovingAverage.h",
|
3557
3701
|
"src/cxx_supportlib/AppTypes.h",
|
3702
|
+
"src/cxx_supportlib/ConfigKit/Common.h",
|
3703
|
+
"src/cxx_supportlib/ConfigKit/ConfigKit.h",
|
3704
|
+
"src/cxx_supportlib/ConfigKit/Schema.h",
|
3705
|
+
"src/cxx_supportlib/ConfigKit/Store.h",
|
3706
|
+
"src/cxx_supportlib/ConfigKit/TableTranslator.h",
|
3707
|
+
"src/cxx_supportlib/ConfigKit/Utils.h",
|
3558
3708
|
"src/cxx_supportlib/Constants.h",
|
3559
3709
|
"src/cxx_supportlib/DataStructures/HashedStaticString.h",
|
3560
3710
|
"src/cxx_supportlib/DataStructures/LString.h",
|
@@ -3657,6 +3807,7 @@ CXX_DEPENDENCY_MAP =
|
|
3657
3807
|
"src/agent/Core/Controller.h",
|
3658
3808
|
"src/agent/Core/Controller/AppResponse.h",
|
3659
3809
|
"src/agent/Core/Controller/Client.h",
|
3810
|
+
"src/agent/Core/Controller/Config.h",
|
3660
3811
|
"src/agent/Core/Controller/Request.h",
|
3661
3812
|
"src/agent/Core/Controller/TurboCaching.h",
|
3662
3813
|
"src/agent/Core/ResponseCache.h",
|
@@ -3678,6 +3829,12 @@ CXX_DEPENDENCY_MAP =
|
|
3678
3829
|
"src/agent/Shared/ApplicationPoolApiKey.h",
|
3679
3830
|
"src/cxx_supportlib/Algorithms/MovingAverage.h",
|
3680
3831
|
"src/cxx_supportlib/AppTypes.h",
|
3832
|
+
"src/cxx_supportlib/ConfigKit/Common.h",
|
3833
|
+
"src/cxx_supportlib/ConfigKit/ConfigKit.h",
|
3834
|
+
"src/cxx_supportlib/ConfigKit/Schema.h",
|
3835
|
+
"src/cxx_supportlib/ConfigKit/Store.h",
|
3836
|
+
"src/cxx_supportlib/ConfigKit/TableTranslator.h",
|
3837
|
+
"src/cxx_supportlib/ConfigKit/Utils.h",
|
3681
3838
|
"src/cxx_supportlib/Constants.h",
|
3682
3839
|
"src/cxx_supportlib/DataStructures/HashedStaticString.h",
|
3683
3840
|
"src/cxx_supportlib/DataStructures/LString.h",
|
@@ -3777,6 +3934,7 @@ CXX_DEPENDENCY_MAP =
|
|
3777
3934
|
"src/agent/Core/ApplicationPool/Session.h",
|
3778
3935
|
"src/agent/Core/ApplicationPool/Socket.h",
|
3779
3936
|
"src/agent/Core/Controller/AppResponse.h",
|
3937
|
+
"src/agent/Core/Controller/Config.h",
|
3780
3938
|
"src/agent/Core/SpawningKit/BackgroundIOCapturer.h",
|
3781
3939
|
"src/agent/Core/SpawningKit/Config.h",
|
3782
3940
|
"src/agent/Core/SpawningKit/DirectSpawner.h",
|
@@ -3793,7 +3951,14 @@ CXX_DEPENDENCY_MAP =
|
|
3793
3951
|
"src/agent/Core/UnionStation/StopwatchLog.h",
|
3794
3952
|
"src/agent/Core/UnionStation/Transaction.h",
|
3795
3953
|
"src/agent/Shared/ApplicationPoolApiKey.h",
|
3954
|
+
"src/cxx_supportlib/Algorithms/MovingAverage.h",
|
3796
3955
|
"src/cxx_supportlib/AppTypes.h",
|
3956
|
+
"src/cxx_supportlib/ConfigKit/Common.h",
|
3957
|
+
"src/cxx_supportlib/ConfigKit/ConfigKit.h",
|
3958
|
+
"src/cxx_supportlib/ConfigKit/Schema.h",
|
3959
|
+
"src/cxx_supportlib/ConfigKit/Store.h",
|
3960
|
+
"src/cxx_supportlib/ConfigKit/TableTranslator.h",
|
3961
|
+
"src/cxx_supportlib/ConfigKit/Utils.h",
|
3797
3962
|
"src/cxx_supportlib/Constants.h",
|
3798
3963
|
"src/cxx_supportlib/DataStructures/HashedStaticString.h",
|
3799
3964
|
"src/cxx_supportlib/DataStructures/LString.h",
|
@@ -3801,6 +3966,7 @@ CXX_DEPENDENCY_MAP =
|
|
3801
3966
|
"src/cxx_supportlib/Exceptions.h",
|
3802
3967
|
"src/cxx_supportlib/FileDescriptor.h",
|
3803
3968
|
"src/cxx_supportlib/Hooks.h",
|
3969
|
+
"src/cxx_supportlib/Integrations/LibevJsonUtils.h",
|
3804
3970
|
"src/cxx_supportlib/Logging.h",
|
3805
3971
|
"src/cxx_supportlib/LveLoggingDecorator.h",
|
3806
3972
|
"src/cxx_supportlib/MemoryKit/mbuf.h",
|
@@ -3810,6 +3976,7 @@ CXX_DEPENDENCY_MAP =
|
|
3810
3976
|
"src/cxx_supportlib/SafeLibev.h",
|
3811
3977
|
"src/cxx_supportlib/ServerKit/Channel.h",
|
3812
3978
|
"src/cxx_supportlib/ServerKit/Client.h",
|
3979
|
+
"src/cxx_supportlib/ServerKit/ClientRef.h",
|
3813
3980
|
"src/cxx_supportlib/ServerKit/Context.h",
|
3814
3981
|
"src/cxx_supportlib/ServerKit/Errors.h",
|
3815
3982
|
"src/cxx_supportlib/ServerKit/FdSinkChannel.h",
|
@@ -3818,9 +3985,15 @@ CXX_DEPENDENCY_MAP =
|
|
3818
3985
|
"src/cxx_supportlib/ServerKit/FileBufferedFdSinkChannel.h",
|
3819
3986
|
"src/cxx_supportlib/ServerKit/HeaderTable.h",
|
3820
3987
|
"src/cxx_supportlib/ServerKit/Hooks.h",
|
3988
|
+
"src/cxx_supportlib/ServerKit/HttpChunkedBodyParser.h",
|
3821
3989
|
"src/cxx_supportlib/ServerKit/HttpChunkedBodyParserState.h",
|
3990
|
+
"src/cxx_supportlib/ServerKit/HttpClient.h",
|
3991
|
+
"src/cxx_supportlib/ServerKit/HttpHeaderParser.h",
|
3822
3992
|
"src/cxx_supportlib/ServerKit/HttpHeaderParserState.h",
|
3823
3993
|
"src/cxx_supportlib/ServerKit/HttpRequest.h",
|
3994
|
+
"src/cxx_supportlib/ServerKit/HttpRequestRef.h",
|
3995
|
+
"src/cxx_supportlib/ServerKit/HttpServer.h",
|
3996
|
+
"src/cxx_supportlib/ServerKit/Server.h",
|
3824
3997
|
"src/cxx_supportlib/ServerKit/http_parser.h",
|
3825
3998
|
"src/cxx_supportlib/StaticString.h",
|
3826
3999
|
"src/cxx_supportlib/Utils.h",
|
@@ -3831,6 +4004,7 @@ CXX_DEPENDENCY_MAP =
|
|
3831
4004
|
"src/cxx_supportlib/Utils/FastStringStream.h",
|
3832
4005
|
"src/cxx_supportlib/Utils/HashMap.h",
|
3833
4006
|
"src/cxx_supportlib/Utils/Hasher.h",
|
4007
|
+
"src/cxx_supportlib/Utils/HttpConstants.h",
|
3834
4008
|
"src/cxx_supportlib/Utils/IOUtils.h",
|
3835
4009
|
"src/cxx_supportlib/Utils/IniFile.h",
|
3836
4010
|
"src/cxx_supportlib/Utils/JsonUtils.h",
|
@@ -3883,6 +4057,7 @@ CXX_DEPENDENCY_MAP =
|
|
3883
4057
|
"src/agent/Core/Controller.h",
|
3884
4058
|
"src/agent/Core/Controller/AppResponse.h",
|
3885
4059
|
"src/agent/Core/Controller/Client.h",
|
4060
|
+
"src/agent/Core/Controller/Config.h",
|
3886
4061
|
"src/agent/Core/Controller/Request.h",
|
3887
4062
|
"src/agent/Core/Controller/TurboCaching.h",
|
3888
4063
|
"src/agent/Core/ResponseCache.h",
|
@@ -3904,6 +4079,12 @@ CXX_DEPENDENCY_MAP =
|
|
3904
4079
|
"src/agent/Shared/ApplicationPoolApiKey.h",
|
3905
4080
|
"src/cxx_supportlib/Algorithms/MovingAverage.h",
|
3906
4081
|
"src/cxx_supportlib/AppTypes.h",
|
4082
|
+
"src/cxx_supportlib/ConfigKit/Common.h",
|
4083
|
+
"src/cxx_supportlib/ConfigKit/ConfigKit.h",
|
4084
|
+
"src/cxx_supportlib/ConfigKit/Schema.h",
|
4085
|
+
"src/cxx_supportlib/ConfigKit/Store.h",
|
4086
|
+
"src/cxx_supportlib/ConfigKit/TableTranslator.h",
|
4087
|
+
"src/cxx_supportlib/ConfigKit/Utils.h",
|
3907
4088
|
"src/cxx_supportlib/Constants.h",
|
3908
4089
|
"src/cxx_supportlib/DataStructures/HashedStaticString.h",
|
3909
4090
|
"src/cxx_supportlib/DataStructures/LString.h",
|
@@ -3990,7 +4171,7 @@ CXX_DEPENDENCY_MAP =
|
|
3990
4171
|
"src/cxx_supportlib/oxt/system_calls.hpp",
|
3991
4172
|
"src/cxx_supportlib/oxt/thread.hpp",
|
3992
4173
|
"src/cxx_supportlib/oxt/tracable_exception.hpp"],
|
3993
|
-
"src/agent/Core/Controller/
|
4174
|
+
"src/agent/Core/Controller/StateInspection.cpp"=>
|
3994
4175
|
["src/agent/Core/ApplicationPool/AbstractSession.h",
|
3995
4176
|
"src/agent/Core/ApplicationPool/BasicGroupInfo.h",
|
3996
4177
|
"src/agent/Core/ApplicationPool/BasicProcessInfo.h",
|
@@ -4006,6 +4187,7 @@ CXX_DEPENDENCY_MAP =
|
|
4006
4187
|
"src/agent/Core/Controller.h",
|
4007
4188
|
"src/agent/Core/Controller/AppResponse.h",
|
4008
4189
|
"src/agent/Core/Controller/Client.h",
|
4190
|
+
"src/agent/Core/Controller/Config.h",
|
4009
4191
|
"src/agent/Core/Controller/Request.h",
|
4010
4192
|
"src/agent/Core/Controller/TurboCaching.h",
|
4011
4193
|
"src/agent/Core/ResponseCache.h",
|
@@ -4027,6 +4209,12 @@ CXX_DEPENDENCY_MAP =
|
|
4027
4209
|
"src/agent/Shared/ApplicationPoolApiKey.h",
|
4028
4210
|
"src/cxx_supportlib/Algorithms/MovingAverage.h",
|
4029
4211
|
"src/cxx_supportlib/AppTypes.h",
|
4212
|
+
"src/cxx_supportlib/ConfigKit/Common.h",
|
4213
|
+
"src/cxx_supportlib/ConfigKit/ConfigKit.h",
|
4214
|
+
"src/cxx_supportlib/ConfigKit/Schema.h",
|
4215
|
+
"src/cxx_supportlib/ConfigKit/Store.h",
|
4216
|
+
"src/cxx_supportlib/ConfigKit/TableTranslator.h",
|
4217
|
+
"src/cxx_supportlib/ConfigKit/Utils.h",
|
4030
4218
|
"src/cxx_supportlib/Constants.h",
|
4031
4219
|
"src/cxx_supportlib/DataStructures/HashedStaticString.h",
|
4032
4220
|
"src/cxx_supportlib/DataStructures/LString.h",
|
@@ -4167,6 +4355,7 @@ CXX_DEPENDENCY_MAP =
|
|
4167
4355
|
"src/agent/Core/Controller.h",
|
4168
4356
|
"src/agent/Core/Controller/AppResponse.h",
|
4169
4357
|
"src/agent/Core/Controller/Client.h",
|
4358
|
+
"src/agent/Core/Controller/Config.h",
|
4170
4359
|
"src/agent/Core/Controller/Request.h",
|
4171
4360
|
"src/agent/Core/Controller/TurboCaching.h",
|
4172
4361
|
"src/agent/Core/OptionParser.h",
|
@@ -4194,6 +4383,13 @@ CXX_DEPENDENCY_MAP =
|
|
4194
4383
|
"src/cxx_supportlib/AppTypes.h",
|
4195
4384
|
"src/cxx_supportlib/BackgroundEventLoop.cpp",
|
4196
4385
|
"src/cxx_supportlib/BackgroundEventLoop.h",
|
4386
|
+
"src/cxx_supportlib/ConfigKit/Common.h",
|
4387
|
+
"src/cxx_supportlib/ConfigKit/ConfigKit.h",
|
4388
|
+
"src/cxx_supportlib/ConfigKit/Schema.h",
|
4389
|
+
"src/cxx_supportlib/ConfigKit/Store.h",
|
4390
|
+
"src/cxx_supportlib/ConfigKit/TableTranslator.h",
|
4391
|
+
"src/cxx_supportlib/ConfigKit/Utils.h",
|
4392
|
+
"src/cxx_supportlib/ConfigKit/VariantMapUtils.h",
|
4197
4393
|
"src/cxx_supportlib/Constants.h",
|
4198
4394
|
"src/cxx_supportlib/Crypto.h",
|
4199
4395
|
"src/cxx_supportlib/DataStructures/HashedStaticString.h",
|
@@ -4907,6 +5103,12 @@ CXX_DEPENDENCY_MAP =
|
|
4907
5103
|
"src/agent/Shared/ApplicationPoolApiKey.h",
|
4908
5104
|
"src/cxx_supportlib/Algorithms/MovingAverage.h",
|
4909
5105
|
"src/cxx_supportlib/AppTypes.h",
|
5106
|
+
"src/cxx_supportlib/ConfigKit/Common.h",
|
5107
|
+
"src/cxx_supportlib/ConfigKit/ConfigKit.h",
|
5108
|
+
"src/cxx_supportlib/ConfigKit/Schema.h",
|
5109
|
+
"src/cxx_supportlib/ConfigKit/Store.h",
|
5110
|
+
"src/cxx_supportlib/ConfigKit/TableTranslator.h",
|
5111
|
+
"src/cxx_supportlib/ConfigKit/Utils.h",
|
4910
5112
|
"src/cxx_supportlib/Constants.h",
|
4911
5113
|
"src/cxx_supportlib/DataStructures/HashedStaticString.h",
|
4912
5114
|
"src/cxx_supportlib/DataStructures/LString.h",
|
@@ -5128,6 +5330,12 @@ CXX_DEPENDENCY_MAP =
|
|
5128
5330
|
"src/agent/UstRouter/Transaction.h",
|
5129
5331
|
"src/cxx_supportlib/Algorithms/MovingAverage.h",
|
5130
5332
|
"src/cxx_supportlib/AppTypes.h",
|
5333
|
+
"src/cxx_supportlib/ConfigKit/Common.h",
|
5334
|
+
"src/cxx_supportlib/ConfigKit/ConfigKit.h",
|
5335
|
+
"src/cxx_supportlib/ConfigKit/Schema.h",
|
5336
|
+
"src/cxx_supportlib/ConfigKit/Store.h",
|
5337
|
+
"src/cxx_supportlib/ConfigKit/TableTranslator.h",
|
5338
|
+
"src/cxx_supportlib/ConfigKit/Utils.h",
|
5131
5339
|
"src/cxx_supportlib/Constants.h",
|
5132
5340
|
"src/cxx_supportlib/DataStructures/HashedStaticString.h",
|
5133
5341
|
"src/cxx_supportlib/DataStructures/LString.h",
|
@@ -5217,8 +5425,16 @@ CXX_DEPENDENCY_MAP =
|
|
5217
5425
|
"src/agent/UstRouter/Client.h"=>
|
5218
5426
|
["src/agent/UstRouter/Transaction.h",
|
5219
5427
|
"src/cxx_supportlib/Algorithms/MovingAverage.h",
|
5428
|
+
"src/cxx_supportlib/ConfigKit/Common.h",
|
5429
|
+
"src/cxx_supportlib/ConfigKit/ConfigKit.h",
|
5430
|
+
"src/cxx_supportlib/ConfigKit/Schema.h",
|
5431
|
+
"src/cxx_supportlib/ConfigKit/Store.h",
|
5432
|
+
"src/cxx_supportlib/ConfigKit/TableTranslator.h",
|
5433
|
+
"src/cxx_supportlib/ConfigKit/Utils.h",
|
5220
5434
|
"src/cxx_supportlib/Constants.h",
|
5435
|
+
"src/cxx_supportlib/DataStructures/HashedStaticString.h",
|
5221
5436
|
"src/cxx_supportlib/DataStructures/LString.h",
|
5437
|
+
"src/cxx_supportlib/DataStructures/StringKeyTable.h",
|
5222
5438
|
"src/cxx_supportlib/Exceptions.h",
|
5223
5439
|
"src/cxx_supportlib/FileDescriptor.h",
|
5224
5440
|
"src/cxx_supportlib/Logging.h",
|
@@ -5269,8 +5485,16 @@ CXX_DEPENDENCY_MAP =
|
|
5269
5485
|
"src/agent/UstRouter/RemoteSink.h",
|
5270
5486
|
"src/agent/UstRouter/Transaction.h",
|
5271
5487
|
"src/cxx_supportlib/Algorithms/MovingAverage.h",
|
5488
|
+
"src/cxx_supportlib/ConfigKit/Common.h",
|
5489
|
+
"src/cxx_supportlib/ConfigKit/ConfigKit.h",
|
5490
|
+
"src/cxx_supportlib/ConfigKit/Schema.h",
|
5491
|
+
"src/cxx_supportlib/ConfigKit/Store.h",
|
5492
|
+
"src/cxx_supportlib/ConfigKit/TableTranslator.h",
|
5493
|
+
"src/cxx_supportlib/ConfigKit/Utils.h",
|
5272
5494
|
"src/cxx_supportlib/Constants.h",
|
5495
|
+
"src/cxx_supportlib/DataStructures/HashedStaticString.h",
|
5273
5496
|
"src/cxx_supportlib/DataStructures/LString.h",
|
5497
|
+
"src/cxx_supportlib/DataStructures/StringKeyTable.h",
|
5274
5498
|
"src/cxx_supportlib/Exceptions.h",
|
5275
5499
|
"src/cxx_supportlib/FileDescriptor.h",
|
5276
5500
|
"src/cxx_supportlib/Logging.h",
|
@@ -5528,6 +5752,13 @@ CXX_DEPENDENCY_MAP =
|
|
5528
5752
|
"src/cxx_supportlib/Algorithms/MovingAverage.h",
|
5529
5753
|
"src/cxx_supportlib/AppTypes.h",
|
5530
5754
|
"src/cxx_supportlib/BackgroundEventLoop.h",
|
5755
|
+
"src/cxx_supportlib/ConfigKit/Common.h",
|
5756
|
+
"src/cxx_supportlib/ConfigKit/ConfigKit.h",
|
5757
|
+
"src/cxx_supportlib/ConfigKit/Schema.h",
|
5758
|
+
"src/cxx_supportlib/ConfigKit/Store.h",
|
5759
|
+
"src/cxx_supportlib/ConfigKit/TableTranslator.h",
|
5760
|
+
"src/cxx_supportlib/ConfigKit/Utils.h",
|
5761
|
+
"src/cxx_supportlib/ConfigKit/VariantMapUtils.h",
|
5531
5762
|
"src/cxx_supportlib/Constants.h",
|
5532
5763
|
"src/cxx_supportlib/DataStructures/HashedStaticString.h",
|
5533
5764
|
"src/cxx_supportlib/DataStructures/LString.h",
|
@@ -5648,6 +5879,12 @@ CXX_DEPENDENCY_MAP =
|
|
5648
5879
|
"src/agent/Shared/ApplicationPoolApiKey.h",
|
5649
5880
|
"src/cxx_supportlib/Algorithms/MovingAverage.h",
|
5650
5881
|
"src/cxx_supportlib/AppTypes.h",
|
5882
|
+
"src/cxx_supportlib/ConfigKit/Common.h",
|
5883
|
+
"src/cxx_supportlib/ConfigKit/ConfigKit.h",
|
5884
|
+
"src/cxx_supportlib/ConfigKit/Schema.h",
|
5885
|
+
"src/cxx_supportlib/ConfigKit/Store.h",
|
5886
|
+
"src/cxx_supportlib/ConfigKit/TableTranslator.h",
|
5887
|
+
"src/cxx_supportlib/ConfigKit/Utils.h",
|
5651
5888
|
"src/cxx_supportlib/Constants.h",
|
5652
5889
|
"src/cxx_supportlib/DataStructures/HashedStaticString.h",
|
5653
5890
|
"src/cxx_supportlib/DataStructures/LString.h",
|
@@ -5775,6 +6012,12 @@ CXX_DEPENDENCY_MAP =
|
|
5775
6012
|
"src/cxx_supportlib/Algorithms/MovingAverage.h",
|
5776
6013
|
"src/cxx_supportlib/AppTypes.h",
|
5777
6014
|
"src/cxx_supportlib/BackgroundEventLoop.h",
|
6015
|
+
"src/cxx_supportlib/ConfigKit/Common.h",
|
6016
|
+
"src/cxx_supportlib/ConfigKit/ConfigKit.h",
|
6017
|
+
"src/cxx_supportlib/ConfigKit/Schema.h",
|
6018
|
+
"src/cxx_supportlib/ConfigKit/Store.h",
|
6019
|
+
"src/cxx_supportlib/ConfigKit/TableTranslator.h",
|
6020
|
+
"src/cxx_supportlib/ConfigKit/Utils.h",
|
5778
6021
|
"src/cxx_supportlib/Constants.h",
|
5779
6022
|
"src/cxx_supportlib/DataStructures/HashedStaticString.h",
|
5780
6023
|
"src/cxx_supportlib/DataStructures/LString.h",
|
@@ -6116,6 +6359,120 @@ CXX_DEPENDENCY_MAP =
|
|
6116
6359
|
"src/cxx_supportlib/oxt/tracable_exception.hpp"],
|
6117
6360
|
"src/cxx_supportlib/BackgroundEventLoop.h"=>
|
6118
6361
|
[],
|
6362
|
+
"src/cxx_supportlib/ConfigKit/Common.h"=>
|
6363
|
+
["src/cxx_supportlib/StaticString.h",
|
6364
|
+
"src/cxx_supportlib/oxt/macros.hpp"],
|
6365
|
+
"src/cxx_supportlib/ConfigKit/ConfigKit.h"=>
|
6366
|
+
["src/cxx_supportlib/ConfigKit/Common.h",
|
6367
|
+
"src/cxx_supportlib/ConfigKit/Schema.h",
|
6368
|
+
"src/cxx_supportlib/ConfigKit/Store.h",
|
6369
|
+
"src/cxx_supportlib/ConfigKit/TableTranslator.h",
|
6370
|
+
"src/cxx_supportlib/ConfigKit/Utils.h",
|
6371
|
+
"src/cxx_supportlib/DataStructures/HashedStaticString.h",
|
6372
|
+
"src/cxx_supportlib/DataStructures/StringKeyTable.h",
|
6373
|
+
"src/cxx_supportlib/Exceptions.h",
|
6374
|
+
"src/cxx_supportlib/Logging.h",
|
6375
|
+
"src/cxx_supportlib/StaticString.h",
|
6376
|
+
"src/cxx_supportlib/Utils/FastStringStream.h",
|
6377
|
+
"src/cxx_supportlib/Utils/Hasher.h",
|
6378
|
+
"src/cxx_supportlib/Utils/StrIntUtils.h",
|
6379
|
+
"src/cxx_supportlib/oxt/backtrace.hpp",
|
6380
|
+
"src/cxx_supportlib/oxt/detail/../spin_lock.hpp",
|
6381
|
+
"src/cxx_supportlib/oxt/detail/backtrace_disabled.hpp",
|
6382
|
+
"src/cxx_supportlib/oxt/detail/backtrace_enabled.hpp",
|
6383
|
+
"src/cxx_supportlib/oxt/detail/context.hpp",
|
6384
|
+
"src/cxx_supportlib/oxt/detail/tracable_exception_disabled.hpp",
|
6385
|
+
"src/cxx_supportlib/oxt/detail/tracable_exception_enabled.hpp",
|
6386
|
+
"src/cxx_supportlib/oxt/macros.hpp",
|
6387
|
+
"src/cxx_supportlib/oxt/system_calls.hpp",
|
6388
|
+
"src/cxx_supportlib/oxt/thread.hpp",
|
6389
|
+
"src/cxx_supportlib/oxt/tracable_exception.hpp"],
|
6390
|
+
"src/cxx_supportlib/ConfigKit/Schema.h"=>
|
6391
|
+
["src/cxx_supportlib/ConfigKit/Common.h",
|
6392
|
+
"src/cxx_supportlib/ConfigKit/Utils.h",
|
6393
|
+
"src/cxx_supportlib/DataStructures/HashedStaticString.h",
|
6394
|
+
"src/cxx_supportlib/DataStructures/StringKeyTable.h",
|
6395
|
+
"src/cxx_supportlib/Exceptions.h",
|
6396
|
+
"src/cxx_supportlib/Logging.h",
|
6397
|
+
"src/cxx_supportlib/StaticString.h",
|
6398
|
+
"src/cxx_supportlib/Utils/FastStringStream.h",
|
6399
|
+
"src/cxx_supportlib/Utils/Hasher.h",
|
6400
|
+
"src/cxx_supportlib/Utils/StrIntUtils.h",
|
6401
|
+
"src/cxx_supportlib/oxt/backtrace.hpp",
|
6402
|
+
"src/cxx_supportlib/oxt/detail/../spin_lock.hpp",
|
6403
|
+
"src/cxx_supportlib/oxt/detail/backtrace_disabled.hpp",
|
6404
|
+
"src/cxx_supportlib/oxt/detail/backtrace_enabled.hpp",
|
6405
|
+
"src/cxx_supportlib/oxt/detail/context.hpp",
|
6406
|
+
"src/cxx_supportlib/oxt/detail/tracable_exception_disabled.hpp",
|
6407
|
+
"src/cxx_supportlib/oxt/detail/tracable_exception_enabled.hpp",
|
6408
|
+
"src/cxx_supportlib/oxt/macros.hpp",
|
6409
|
+
"src/cxx_supportlib/oxt/system_calls.hpp",
|
6410
|
+
"src/cxx_supportlib/oxt/thread.hpp",
|
6411
|
+
"src/cxx_supportlib/oxt/tracable_exception.hpp"],
|
6412
|
+
"src/cxx_supportlib/ConfigKit/Store.h"=>
|
6413
|
+
["src/cxx_supportlib/ConfigKit/Common.h",
|
6414
|
+
"src/cxx_supportlib/ConfigKit/Schema.h",
|
6415
|
+
"src/cxx_supportlib/ConfigKit/Utils.h",
|
6416
|
+
"src/cxx_supportlib/DataStructures/HashedStaticString.h",
|
6417
|
+
"src/cxx_supportlib/DataStructures/StringKeyTable.h",
|
6418
|
+
"src/cxx_supportlib/Exceptions.h",
|
6419
|
+
"src/cxx_supportlib/Logging.h",
|
6420
|
+
"src/cxx_supportlib/StaticString.h",
|
6421
|
+
"src/cxx_supportlib/Utils/FastStringStream.h",
|
6422
|
+
"src/cxx_supportlib/Utils/Hasher.h",
|
6423
|
+
"src/cxx_supportlib/Utils/StrIntUtils.h",
|
6424
|
+
"src/cxx_supportlib/oxt/backtrace.hpp",
|
6425
|
+
"src/cxx_supportlib/oxt/detail/../spin_lock.hpp",
|
6426
|
+
"src/cxx_supportlib/oxt/detail/backtrace_disabled.hpp",
|
6427
|
+
"src/cxx_supportlib/oxt/detail/backtrace_enabled.hpp",
|
6428
|
+
"src/cxx_supportlib/oxt/detail/context.hpp",
|
6429
|
+
"src/cxx_supportlib/oxt/detail/tracable_exception_disabled.hpp",
|
6430
|
+
"src/cxx_supportlib/oxt/detail/tracable_exception_enabled.hpp",
|
6431
|
+
"src/cxx_supportlib/oxt/macros.hpp",
|
6432
|
+
"src/cxx_supportlib/oxt/system_calls.hpp",
|
6433
|
+
"src/cxx_supportlib/oxt/thread.hpp",
|
6434
|
+
"src/cxx_supportlib/oxt/tracable_exception.hpp"],
|
6435
|
+
"src/cxx_supportlib/ConfigKit/TableTranslator.h"=>
|
6436
|
+
["src/cxx_supportlib/ConfigKit/Common.h",
|
6437
|
+
"src/cxx_supportlib/DataStructures/HashedStaticString.h",
|
6438
|
+
"src/cxx_supportlib/DataStructures/StringKeyTable.h",
|
6439
|
+
"src/cxx_supportlib/StaticString.h",
|
6440
|
+
"src/cxx_supportlib/Utils/Hasher.h",
|
6441
|
+
"src/cxx_supportlib/oxt/macros.hpp"],
|
6442
|
+
"src/cxx_supportlib/ConfigKit/Utils.h"=>
|
6443
|
+
["src/cxx_supportlib/ConfigKit/Common.h",
|
6444
|
+
"src/cxx_supportlib/StaticString.h",
|
6445
|
+
"src/cxx_supportlib/Utils/FastStringStream.h",
|
6446
|
+
"src/cxx_supportlib/oxt/macros.hpp"],
|
6447
|
+
"src/cxx_supportlib/ConfigKit/VariantMapUtils.h"=>
|
6448
|
+
["src/cxx_supportlib/ConfigKit/Common.h",
|
6449
|
+
"src/cxx_supportlib/ConfigKit/Schema.h",
|
6450
|
+
"src/cxx_supportlib/ConfigKit/Utils.h",
|
6451
|
+
"src/cxx_supportlib/DataStructures/HashedStaticString.h",
|
6452
|
+
"src/cxx_supportlib/DataStructures/StringKeyTable.h",
|
6453
|
+
"src/cxx_supportlib/Exceptions.h",
|
6454
|
+
"src/cxx_supportlib/FileDescriptor.h",
|
6455
|
+
"src/cxx_supportlib/Logging.h",
|
6456
|
+
"src/cxx_supportlib/StaticString.h",
|
6457
|
+
"src/cxx_supportlib/Utils/FastStringStream.h",
|
6458
|
+
"src/cxx_supportlib/Utils/Hasher.h",
|
6459
|
+
"src/cxx_supportlib/Utils/IOUtils.h",
|
6460
|
+
"src/cxx_supportlib/Utils/MemZeroGuard.h",
|
6461
|
+
"src/cxx_supportlib/Utils/MessageIO.h",
|
6462
|
+
"src/cxx_supportlib/Utils/ScopeGuard.h",
|
6463
|
+
"src/cxx_supportlib/Utils/StrIntUtils.h",
|
6464
|
+
"src/cxx_supportlib/Utils/VariantMap.h",
|
6465
|
+
"src/cxx_supportlib/oxt/backtrace.hpp",
|
6466
|
+
"src/cxx_supportlib/oxt/detail/../spin_lock.hpp",
|
6467
|
+
"src/cxx_supportlib/oxt/detail/backtrace_disabled.hpp",
|
6468
|
+
"src/cxx_supportlib/oxt/detail/backtrace_enabled.hpp",
|
6469
|
+
"src/cxx_supportlib/oxt/detail/context.hpp",
|
6470
|
+
"src/cxx_supportlib/oxt/detail/tracable_exception_disabled.hpp",
|
6471
|
+
"src/cxx_supportlib/oxt/detail/tracable_exception_enabled.hpp",
|
6472
|
+
"src/cxx_supportlib/oxt/macros.hpp",
|
6473
|
+
"src/cxx_supportlib/oxt/system_calls.hpp",
|
6474
|
+
"src/cxx_supportlib/oxt/thread.hpp",
|
6475
|
+
"src/cxx_supportlib/oxt/tracable_exception.hpp"],
|
6119
6476
|
"src/cxx_supportlib/Constants.h"=>
|
6120
6477
|
[],
|
6121
6478
|
"src/cxx_supportlib/Crypto.cpp"=>
|
@@ -6783,9 +7140,16 @@ CXX_DEPENDENCY_MAP =
|
|
6783
7140
|
[],
|
6784
7141
|
"src/cxx_supportlib/ServerKit/HttpServer.h"=>
|
6785
7142
|
["src/cxx_supportlib/Algorithms/MovingAverage.h",
|
7143
|
+
"src/cxx_supportlib/ConfigKit/Common.h",
|
7144
|
+
"src/cxx_supportlib/ConfigKit/ConfigKit.h",
|
7145
|
+
"src/cxx_supportlib/ConfigKit/Schema.h",
|
7146
|
+
"src/cxx_supportlib/ConfigKit/Store.h",
|
7147
|
+
"src/cxx_supportlib/ConfigKit/TableTranslator.h",
|
7148
|
+
"src/cxx_supportlib/ConfigKit/Utils.h",
|
6786
7149
|
"src/cxx_supportlib/Constants.h",
|
6787
7150
|
"src/cxx_supportlib/DataStructures/HashedStaticString.h",
|
6788
7151
|
"src/cxx_supportlib/DataStructures/LString.h",
|
7152
|
+
"src/cxx_supportlib/DataStructures/StringKeyTable.h",
|
6789
7153
|
"src/cxx_supportlib/Exceptions.h",
|
6790
7154
|
"src/cxx_supportlib/FileDescriptor.h",
|
6791
7155
|
"src/cxx_supportlib/Integrations/LibevJsonUtils.h",
|
@@ -6844,7 +7208,15 @@ CXX_DEPENDENCY_MAP =
|
|
6844
7208
|
"src/cxx_supportlib/oxt/macros.hpp"],
|
6845
7209
|
"src/cxx_supportlib/ServerKit/Server.h"=>
|
6846
7210
|
["src/cxx_supportlib/Algorithms/MovingAverage.h",
|
7211
|
+
"src/cxx_supportlib/ConfigKit/Common.h",
|
7212
|
+
"src/cxx_supportlib/ConfigKit/ConfigKit.h",
|
7213
|
+
"src/cxx_supportlib/ConfigKit/Schema.h",
|
7214
|
+
"src/cxx_supportlib/ConfigKit/Store.h",
|
7215
|
+
"src/cxx_supportlib/ConfigKit/TableTranslator.h",
|
7216
|
+
"src/cxx_supportlib/ConfigKit/Utils.h",
|
6847
7217
|
"src/cxx_supportlib/Constants.h",
|
7218
|
+
"src/cxx_supportlib/DataStructures/HashedStaticString.h",
|
7219
|
+
"src/cxx_supportlib/DataStructures/StringKeyTable.h",
|
6848
7220
|
"src/cxx_supportlib/Exceptions.h",
|
6849
7221
|
"src/cxx_supportlib/FileDescriptor.h",
|
6850
7222
|
"src/cxx_supportlib/Logging.h",
|
@@ -6863,6 +7235,7 @@ CXX_DEPENDENCY_MAP =
|
|
6863
7235
|
"src/cxx_supportlib/StaticString.h",
|
6864
7236
|
"src/cxx_supportlib/Utils.h",
|
6865
7237
|
"src/cxx_supportlib/Utils/FastStringStream.h",
|
7238
|
+
"src/cxx_supportlib/Utils/Hasher.h",
|
6866
7239
|
"src/cxx_supportlib/Utils/IOUtils.h",
|
6867
7240
|
"src/cxx_supportlib/Utils/JsonUtils.h",
|
6868
7241
|
"src/cxx_supportlib/Utils/LargeFiles.h",
|
@@ -7674,6 +8047,178 @@ CXX_DEPENDENCY_MAP =
|
|
7674
8047
|
"src/cxx_supportlib/oxt/tracable_exception.hpp",
|
7675
8048
|
"test/cxx/../tut/tut.h",
|
7676
8049
|
"test/cxx/TestSupport.h"],
|
8050
|
+
"test/cxx/ConfigKit/ErrorTest.cpp"=>
|
8051
|
+
["src/cxx_supportlib/BackgroundEventLoop.h",
|
8052
|
+
"src/cxx_supportlib/ConfigKit/Common.h",
|
8053
|
+
"src/cxx_supportlib/Constants.h",
|
8054
|
+
"src/cxx_supportlib/Exceptions.h",
|
8055
|
+
"src/cxx_supportlib/FileDescriptor.h",
|
8056
|
+
"src/cxx_supportlib/InstanceDirectory.h",
|
8057
|
+
"src/cxx_supportlib/Logging.h",
|
8058
|
+
"src/cxx_supportlib/RandomGenerator.h",
|
8059
|
+
"src/cxx_supportlib/ResourceLocator.h",
|
8060
|
+
"src/cxx_supportlib/StaticString.h",
|
8061
|
+
"src/cxx_supportlib/Utils.h",
|
8062
|
+
"src/cxx_supportlib/Utils/FastStringStream.h",
|
8063
|
+
"src/cxx_supportlib/Utils/IOUtils.h",
|
8064
|
+
"src/cxx_supportlib/Utils/IniFile.h",
|
8065
|
+
"src/cxx_supportlib/Utils/LargeFiles.h",
|
8066
|
+
"src/cxx_supportlib/Utils/StrIntUtils.h",
|
8067
|
+
"src/cxx_supportlib/Utils/SystemTime.h",
|
8068
|
+
"src/cxx_supportlib/oxt/detail/../spin_lock.hpp",
|
8069
|
+
"src/cxx_supportlib/oxt/detail/context.hpp",
|
8070
|
+
"src/cxx_supportlib/oxt/detail/tracable_exception_disabled.hpp",
|
8071
|
+
"src/cxx_supportlib/oxt/detail/tracable_exception_enabled.hpp",
|
8072
|
+
"src/cxx_supportlib/oxt/macros.hpp",
|
8073
|
+
"src/cxx_supportlib/oxt/system_calls.hpp",
|
8074
|
+
"src/cxx_supportlib/oxt/thread.hpp",
|
8075
|
+
"src/cxx_supportlib/oxt/tracable_exception.hpp",
|
8076
|
+
"test/cxx/../tut/tut.h",
|
8077
|
+
"test/cxx/TestSupport.h"],
|
8078
|
+
"test/cxx/ConfigKit/SchemaTest.cpp"=>
|
8079
|
+
["src/cxx_supportlib/BackgroundEventLoop.h",
|
8080
|
+
"src/cxx_supportlib/ConfigKit/Common.h",
|
8081
|
+
"src/cxx_supportlib/ConfigKit/Schema.h",
|
8082
|
+
"src/cxx_supportlib/ConfigKit/Utils.h",
|
8083
|
+
"src/cxx_supportlib/Constants.h",
|
8084
|
+
"src/cxx_supportlib/DataStructures/HashedStaticString.h",
|
8085
|
+
"src/cxx_supportlib/DataStructures/StringKeyTable.h",
|
8086
|
+
"src/cxx_supportlib/Exceptions.h",
|
8087
|
+
"src/cxx_supportlib/FileDescriptor.h",
|
8088
|
+
"src/cxx_supportlib/InstanceDirectory.h",
|
8089
|
+
"src/cxx_supportlib/Logging.h",
|
8090
|
+
"src/cxx_supportlib/RandomGenerator.h",
|
8091
|
+
"src/cxx_supportlib/ResourceLocator.h",
|
8092
|
+
"src/cxx_supportlib/StaticString.h",
|
8093
|
+
"src/cxx_supportlib/Utils.h",
|
8094
|
+
"src/cxx_supportlib/Utils/FastStringStream.h",
|
8095
|
+
"src/cxx_supportlib/Utils/Hasher.h",
|
8096
|
+
"src/cxx_supportlib/Utils/IOUtils.h",
|
8097
|
+
"src/cxx_supportlib/Utils/IniFile.h",
|
8098
|
+
"src/cxx_supportlib/Utils/LargeFiles.h",
|
8099
|
+
"src/cxx_supportlib/Utils/StrIntUtils.h",
|
8100
|
+
"src/cxx_supportlib/Utils/SystemTime.h",
|
8101
|
+
"src/cxx_supportlib/oxt/backtrace.hpp",
|
8102
|
+
"src/cxx_supportlib/oxt/detail/../spin_lock.hpp",
|
8103
|
+
"src/cxx_supportlib/oxt/detail/backtrace_disabled.hpp",
|
8104
|
+
"src/cxx_supportlib/oxt/detail/backtrace_enabled.hpp",
|
8105
|
+
"src/cxx_supportlib/oxt/detail/context.hpp",
|
8106
|
+
"src/cxx_supportlib/oxt/detail/tracable_exception_disabled.hpp",
|
8107
|
+
"src/cxx_supportlib/oxt/detail/tracable_exception_enabled.hpp",
|
8108
|
+
"src/cxx_supportlib/oxt/macros.hpp",
|
8109
|
+
"src/cxx_supportlib/oxt/system_calls.hpp",
|
8110
|
+
"src/cxx_supportlib/oxt/thread.hpp",
|
8111
|
+
"src/cxx_supportlib/oxt/tracable_exception.hpp",
|
8112
|
+
"test/cxx/../tut/tut.h",
|
8113
|
+
"test/cxx/TestSupport.h"],
|
8114
|
+
"test/cxx/ConfigKit/StoreTest.cpp"=>
|
8115
|
+
["src/cxx_supportlib/BackgroundEventLoop.h",
|
8116
|
+
"src/cxx_supportlib/ConfigKit/Common.h",
|
8117
|
+
"src/cxx_supportlib/ConfigKit/Schema.h",
|
8118
|
+
"src/cxx_supportlib/ConfigKit/Store.h",
|
8119
|
+
"src/cxx_supportlib/ConfigKit/Utils.h",
|
8120
|
+
"src/cxx_supportlib/Constants.h",
|
8121
|
+
"src/cxx_supportlib/DataStructures/HashedStaticString.h",
|
8122
|
+
"src/cxx_supportlib/DataStructures/StringKeyTable.h",
|
8123
|
+
"src/cxx_supportlib/Exceptions.h",
|
8124
|
+
"src/cxx_supportlib/FileDescriptor.h",
|
8125
|
+
"src/cxx_supportlib/InstanceDirectory.h",
|
8126
|
+
"src/cxx_supportlib/Logging.h",
|
8127
|
+
"src/cxx_supportlib/RandomGenerator.h",
|
8128
|
+
"src/cxx_supportlib/ResourceLocator.h",
|
8129
|
+
"src/cxx_supportlib/StaticString.h",
|
8130
|
+
"src/cxx_supportlib/Utils.h",
|
8131
|
+
"src/cxx_supportlib/Utils/FastStringStream.h",
|
8132
|
+
"src/cxx_supportlib/Utils/Hasher.h",
|
8133
|
+
"src/cxx_supportlib/Utils/IOUtils.h",
|
8134
|
+
"src/cxx_supportlib/Utils/IniFile.h",
|
8135
|
+
"src/cxx_supportlib/Utils/LargeFiles.h",
|
8136
|
+
"src/cxx_supportlib/Utils/StrIntUtils.h",
|
8137
|
+
"src/cxx_supportlib/Utils/SystemTime.h",
|
8138
|
+
"src/cxx_supportlib/oxt/backtrace.hpp",
|
8139
|
+
"src/cxx_supportlib/oxt/detail/../spin_lock.hpp",
|
8140
|
+
"src/cxx_supportlib/oxt/detail/backtrace_disabled.hpp",
|
8141
|
+
"src/cxx_supportlib/oxt/detail/backtrace_enabled.hpp",
|
8142
|
+
"src/cxx_supportlib/oxt/detail/context.hpp",
|
8143
|
+
"src/cxx_supportlib/oxt/detail/tracable_exception_disabled.hpp",
|
8144
|
+
"src/cxx_supportlib/oxt/detail/tracable_exception_enabled.hpp",
|
8145
|
+
"src/cxx_supportlib/oxt/macros.hpp",
|
8146
|
+
"src/cxx_supportlib/oxt/system_calls.hpp",
|
8147
|
+
"src/cxx_supportlib/oxt/thread.hpp",
|
8148
|
+
"src/cxx_supportlib/oxt/tracable_exception.hpp",
|
8149
|
+
"test/cxx/../tut/tut.h",
|
8150
|
+
"test/cxx/TestSupport.h"],
|
8151
|
+
"test/cxx/ConfigKit/SubSchemaTest.cpp"=>
|
8152
|
+
["src/cxx_supportlib/BackgroundEventLoop.h",
|
8153
|
+
"src/cxx_supportlib/ConfigKit/Common.h",
|
8154
|
+
"src/cxx_supportlib/ConfigKit/ConfigKit.h",
|
8155
|
+
"src/cxx_supportlib/ConfigKit/Schema.h",
|
8156
|
+
"src/cxx_supportlib/ConfigKit/Store.h",
|
8157
|
+
"src/cxx_supportlib/ConfigKit/TableTranslator.h",
|
8158
|
+
"src/cxx_supportlib/ConfigKit/Utils.h",
|
8159
|
+
"src/cxx_supportlib/Constants.h",
|
8160
|
+
"src/cxx_supportlib/DataStructures/HashedStaticString.h",
|
8161
|
+
"src/cxx_supportlib/DataStructures/StringKeyTable.h",
|
8162
|
+
"src/cxx_supportlib/Exceptions.h",
|
8163
|
+
"src/cxx_supportlib/FileDescriptor.h",
|
8164
|
+
"src/cxx_supportlib/InstanceDirectory.h",
|
8165
|
+
"src/cxx_supportlib/Logging.h",
|
8166
|
+
"src/cxx_supportlib/RandomGenerator.h",
|
8167
|
+
"src/cxx_supportlib/ResourceLocator.h",
|
8168
|
+
"src/cxx_supportlib/StaticString.h",
|
8169
|
+
"src/cxx_supportlib/Utils.h",
|
8170
|
+
"src/cxx_supportlib/Utils/FastStringStream.h",
|
8171
|
+
"src/cxx_supportlib/Utils/Hasher.h",
|
8172
|
+
"src/cxx_supportlib/Utils/IOUtils.h",
|
8173
|
+
"src/cxx_supportlib/Utils/IniFile.h",
|
8174
|
+
"src/cxx_supportlib/Utils/LargeFiles.h",
|
8175
|
+
"src/cxx_supportlib/Utils/StrIntUtils.h",
|
8176
|
+
"src/cxx_supportlib/Utils/SystemTime.h",
|
8177
|
+
"src/cxx_supportlib/oxt/backtrace.hpp",
|
8178
|
+
"src/cxx_supportlib/oxt/detail/../spin_lock.hpp",
|
8179
|
+
"src/cxx_supportlib/oxt/detail/backtrace_disabled.hpp",
|
8180
|
+
"src/cxx_supportlib/oxt/detail/backtrace_enabled.hpp",
|
8181
|
+
"src/cxx_supportlib/oxt/detail/context.hpp",
|
8182
|
+
"src/cxx_supportlib/oxt/detail/tracable_exception_disabled.hpp",
|
8183
|
+
"src/cxx_supportlib/oxt/detail/tracable_exception_enabled.hpp",
|
8184
|
+
"src/cxx_supportlib/oxt/macros.hpp",
|
8185
|
+
"src/cxx_supportlib/oxt/system_calls.hpp",
|
8186
|
+
"src/cxx_supportlib/oxt/thread.hpp",
|
8187
|
+
"src/cxx_supportlib/oxt/tracable_exception.hpp",
|
8188
|
+
"test/cxx/../tut/tut.h",
|
8189
|
+
"test/cxx/TestSupport.h"],
|
8190
|
+
"test/cxx/ConfigKit/TranslationTest.cpp"=>
|
8191
|
+
["src/cxx_supportlib/BackgroundEventLoop.h",
|
8192
|
+
"src/cxx_supportlib/ConfigKit/Common.h",
|
8193
|
+
"src/cxx_supportlib/ConfigKit/TableTranslator.h",
|
8194
|
+
"src/cxx_supportlib/Constants.h",
|
8195
|
+
"src/cxx_supportlib/DataStructures/HashedStaticString.h",
|
8196
|
+
"src/cxx_supportlib/DataStructures/StringKeyTable.h",
|
8197
|
+
"src/cxx_supportlib/Exceptions.h",
|
8198
|
+
"src/cxx_supportlib/FileDescriptor.h",
|
8199
|
+
"src/cxx_supportlib/InstanceDirectory.h",
|
8200
|
+
"src/cxx_supportlib/Logging.h",
|
8201
|
+
"src/cxx_supportlib/RandomGenerator.h",
|
8202
|
+
"src/cxx_supportlib/ResourceLocator.h",
|
8203
|
+
"src/cxx_supportlib/StaticString.h",
|
8204
|
+
"src/cxx_supportlib/Utils.h",
|
8205
|
+
"src/cxx_supportlib/Utils/FastStringStream.h",
|
8206
|
+
"src/cxx_supportlib/Utils/Hasher.h",
|
8207
|
+
"src/cxx_supportlib/Utils/IOUtils.h",
|
8208
|
+
"src/cxx_supportlib/Utils/IniFile.h",
|
8209
|
+
"src/cxx_supportlib/Utils/LargeFiles.h",
|
8210
|
+
"src/cxx_supportlib/Utils/StrIntUtils.h",
|
8211
|
+
"src/cxx_supportlib/Utils/SystemTime.h",
|
8212
|
+
"src/cxx_supportlib/oxt/detail/../spin_lock.hpp",
|
8213
|
+
"src/cxx_supportlib/oxt/detail/context.hpp",
|
8214
|
+
"src/cxx_supportlib/oxt/detail/tracable_exception_disabled.hpp",
|
8215
|
+
"src/cxx_supportlib/oxt/detail/tracable_exception_enabled.hpp",
|
8216
|
+
"src/cxx_supportlib/oxt/macros.hpp",
|
8217
|
+
"src/cxx_supportlib/oxt/system_calls.hpp",
|
8218
|
+
"src/cxx_supportlib/oxt/thread.hpp",
|
8219
|
+
"src/cxx_supportlib/oxt/tracable_exception.hpp",
|
8220
|
+
"test/cxx/../tut/tut.h",
|
8221
|
+
"test/cxx/TestSupport.h"],
|
7677
8222
|
"test/cxx/Core/ApplicationPool/OptionsTest.cpp"=>
|
7678
8223
|
["src/agent/Core/ApplicationPool/AbstractSession.h",
|
7679
8224
|
"src/agent/Core/ApplicationPool/BasicGroupInfo.h",
|
@@ -7941,6 +8486,7 @@ CXX_DEPENDENCY_MAP =
|
|
7941
8486
|
"src/agent/Core/Controller.h",
|
7942
8487
|
"src/agent/Core/Controller/AppResponse.h",
|
7943
8488
|
"src/agent/Core/Controller/Client.h",
|
8489
|
+
"src/agent/Core/Controller/Config.h",
|
7944
8490
|
"src/agent/Core/Controller/Request.h",
|
7945
8491
|
"src/agent/Core/Controller/TurboCaching.h",
|
7946
8492
|
"src/agent/Core/ResponseCache.h",
|
@@ -7963,6 +8509,12 @@ CXX_DEPENDENCY_MAP =
|
|
7963
8509
|
"src/cxx_supportlib/Algorithms/MovingAverage.h",
|
7964
8510
|
"src/cxx_supportlib/AppTypes.h",
|
7965
8511
|
"src/cxx_supportlib/BackgroundEventLoop.h",
|
8512
|
+
"src/cxx_supportlib/ConfigKit/Common.h",
|
8513
|
+
"src/cxx_supportlib/ConfigKit/ConfigKit.h",
|
8514
|
+
"src/cxx_supportlib/ConfigKit/Schema.h",
|
8515
|
+
"src/cxx_supportlib/ConfigKit/Store.h",
|
8516
|
+
"src/cxx_supportlib/ConfigKit/TableTranslator.h",
|
8517
|
+
"src/cxx_supportlib/ConfigKit/Utils.h",
|
7966
8518
|
"src/cxx_supportlib/Constants.h",
|
7967
8519
|
"src/cxx_supportlib/DataStructures/HashedStaticString.h",
|
7968
8520
|
"src/cxx_supportlib/DataStructures/LString.h",
|
@@ -8068,6 +8620,7 @@ CXX_DEPENDENCY_MAP =
|
|
8068
8620
|
"src/agent/Core/Controller.h",
|
8069
8621
|
"src/agent/Core/Controller/AppResponse.h",
|
8070
8622
|
"src/agent/Core/Controller/Client.h",
|
8623
|
+
"src/agent/Core/Controller/Config.h",
|
8071
8624
|
"src/agent/Core/Controller/Request.h",
|
8072
8625
|
"src/agent/Core/Controller/TurboCaching.h",
|
8073
8626
|
"src/agent/Core/ResponseCache.h",
|
@@ -8090,6 +8643,12 @@ CXX_DEPENDENCY_MAP =
|
|
8090
8643
|
"src/cxx_supportlib/Algorithms/MovingAverage.h",
|
8091
8644
|
"src/cxx_supportlib/AppTypes.h",
|
8092
8645
|
"src/cxx_supportlib/BackgroundEventLoop.h",
|
8646
|
+
"src/cxx_supportlib/ConfigKit/Common.h",
|
8647
|
+
"src/cxx_supportlib/ConfigKit/ConfigKit.h",
|
8648
|
+
"src/cxx_supportlib/ConfigKit/Schema.h",
|
8649
|
+
"src/cxx_supportlib/ConfigKit/Store.h",
|
8650
|
+
"src/cxx_supportlib/ConfigKit/TableTranslator.h",
|
8651
|
+
"src/cxx_supportlib/ConfigKit/Utils.h",
|
8093
8652
|
"src/cxx_supportlib/Constants.h",
|
8094
8653
|
"src/cxx_supportlib/DataStructures/HashedStaticString.h",
|
8095
8654
|
"src/cxx_supportlib/DataStructures/LString.h",
|
@@ -8192,6 +8751,7 @@ CXX_DEPENDENCY_MAP =
|
|
8192
8751
|
"src/agent/Core/ApplicationPool/Session.h",
|
8193
8752
|
"src/agent/Core/ApplicationPool/Socket.h",
|
8194
8753
|
"src/agent/Core/Controller/AppResponse.h",
|
8754
|
+
"src/agent/Core/Controller/Config.h",
|
8195
8755
|
"src/agent/Core/Controller/Request.h",
|
8196
8756
|
"src/agent/Core/ResponseCache.h",
|
8197
8757
|
"src/agent/Core/SpawningKit/BackgroundIOCapturer.h",
|
@@ -8210,8 +8770,15 @@ CXX_DEPENDENCY_MAP =
|
|
8210
8770
|
"src/agent/Core/UnionStation/StopwatchLog.h",
|
8211
8771
|
"src/agent/Core/UnionStation/Transaction.h",
|
8212
8772
|
"src/agent/Shared/ApplicationPoolApiKey.h",
|
8773
|
+
"src/cxx_supportlib/Algorithms/MovingAverage.h",
|
8213
8774
|
"src/cxx_supportlib/AppTypes.h",
|
8214
8775
|
"src/cxx_supportlib/BackgroundEventLoop.h",
|
8776
|
+
"src/cxx_supportlib/ConfigKit/Common.h",
|
8777
|
+
"src/cxx_supportlib/ConfigKit/ConfigKit.h",
|
8778
|
+
"src/cxx_supportlib/ConfigKit/Schema.h",
|
8779
|
+
"src/cxx_supportlib/ConfigKit/Store.h",
|
8780
|
+
"src/cxx_supportlib/ConfigKit/TableTranslator.h",
|
8781
|
+
"src/cxx_supportlib/ConfigKit/Utils.h",
|
8215
8782
|
"src/cxx_supportlib/Constants.h",
|
8216
8783
|
"src/cxx_supportlib/DataStructures/HashedStaticString.h",
|
8217
8784
|
"src/cxx_supportlib/DataStructures/LString.h",
|
@@ -8220,6 +8787,7 @@ CXX_DEPENDENCY_MAP =
|
|
8220
8787
|
"src/cxx_supportlib/FileDescriptor.h",
|
8221
8788
|
"src/cxx_supportlib/Hooks.h",
|
8222
8789
|
"src/cxx_supportlib/InstanceDirectory.h",
|
8790
|
+
"src/cxx_supportlib/Integrations/LibevJsonUtils.h",
|
8223
8791
|
"src/cxx_supportlib/Logging.h",
|
8224
8792
|
"src/cxx_supportlib/LveLoggingDecorator.h",
|
8225
8793
|
"src/cxx_supportlib/MemoryKit/mbuf.h",
|
@@ -8229,6 +8797,7 @@ CXX_DEPENDENCY_MAP =
|
|
8229
8797
|
"src/cxx_supportlib/SafeLibev.h",
|
8230
8798
|
"src/cxx_supportlib/ServerKit/Channel.h",
|
8231
8799
|
"src/cxx_supportlib/ServerKit/Client.h",
|
8800
|
+
"src/cxx_supportlib/ServerKit/ClientRef.h",
|
8232
8801
|
"src/cxx_supportlib/ServerKit/Context.h",
|
8233
8802
|
"src/cxx_supportlib/ServerKit/CookieUtils.h",
|
8234
8803
|
"src/cxx_supportlib/ServerKit/Errors.h",
|
@@ -8238,9 +8807,15 @@ CXX_DEPENDENCY_MAP =
|
|
8238
8807
|
"src/cxx_supportlib/ServerKit/FileBufferedFdSinkChannel.h",
|
8239
8808
|
"src/cxx_supportlib/ServerKit/HeaderTable.h",
|
8240
8809
|
"src/cxx_supportlib/ServerKit/Hooks.h",
|
8810
|
+
"src/cxx_supportlib/ServerKit/HttpChunkedBodyParser.h",
|
8241
8811
|
"src/cxx_supportlib/ServerKit/HttpChunkedBodyParserState.h",
|
8812
|
+
"src/cxx_supportlib/ServerKit/HttpClient.h",
|
8813
|
+
"src/cxx_supportlib/ServerKit/HttpHeaderParser.h",
|
8242
8814
|
"src/cxx_supportlib/ServerKit/HttpHeaderParserState.h",
|
8243
8815
|
"src/cxx_supportlib/ServerKit/HttpRequest.h",
|
8816
|
+
"src/cxx_supportlib/ServerKit/HttpRequestRef.h",
|
8817
|
+
"src/cxx_supportlib/ServerKit/HttpServer.h",
|
8818
|
+
"src/cxx_supportlib/ServerKit/Server.h",
|
8244
8819
|
"src/cxx_supportlib/ServerKit/http_parser.h",
|
8245
8820
|
"src/cxx_supportlib/StaticString.h",
|
8246
8821
|
"src/cxx_supportlib/Utils.h",
|
@@ -8252,6 +8827,7 @@ CXX_DEPENDENCY_MAP =
|
|
8252
8827
|
"src/cxx_supportlib/Utils/FastStringStream.h",
|
8253
8828
|
"src/cxx_supportlib/Utils/HashMap.h",
|
8254
8829
|
"src/cxx_supportlib/Utils/Hasher.h",
|
8830
|
+
"src/cxx_supportlib/Utils/HttpConstants.h",
|
8255
8831
|
"src/cxx_supportlib/Utils/IOUtils.h",
|
8256
8832
|
"src/cxx_supportlib/Utils/IniFile.h",
|
8257
8833
|
"src/cxx_supportlib/Utils/JsonUtils.h",
|
@@ -8453,8 +9029,16 @@ CXX_DEPENDENCY_MAP =
|
|
8453
9029
|
"src/agent/UstRouter/Transaction.h",
|
8454
9030
|
"src/cxx_supportlib/Algorithms/MovingAverage.h",
|
8455
9031
|
"src/cxx_supportlib/BackgroundEventLoop.h",
|
9032
|
+
"src/cxx_supportlib/ConfigKit/Common.h",
|
9033
|
+
"src/cxx_supportlib/ConfigKit/ConfigKit.h",
|
9034
|
+
"src/cxx_supportlib/ConfigKit/Schema.h",
|
9035
|
+
"src/cxx_supportlib/ConfigKit/Store.h",
|
9036
|
+
"src/cxx_supportlib/ConfigKit/TableTranslator.h",
|
9037
|
+
"src/cxx_supportlib/ConfigKit/Utils.h",
|
8456
9038
|
"src/cxx_supportlib/Constants.h",
|
9039
|
+
"src/cxx_supportlib/DataStructures/HashedStaticString.h",
|
8457
9040
|
"src/cxx_supportlib/DataStructures/LString.h",
|
9041
|
+
"src/cxx_supportlib/DataStructures/StringKeyTable.h",
|
8458
9042
|
"src/cxx_supportlib/Exceptions.h",
|
8459
9043
|
"src/cxx_supportlib/FileDescriptor.h",
|
8460
9044
|
"src/cxx_supportlib/InstanceDirectory.h",
|
@@ -9091,9 +9675,16 @@ CXX_DEPENDENCY_MAP =
|
|
9091
9675
|
"test/cxx/ServerKit/HttpServerTest.cpp"=>
|
9092
9676
|
["src/cxx_supportlib/Algorithms/MovingAverage.h",
|
9093
9677
|
"src/cxx_supportlib/BackgroundEventLoop.h",
|
9678
|
+
"src/cxx_supportlib/ConfigKit/Common.h",
|
9679
|
+
"src/cxx_supportlib/ConfigKit/ConfigKit.h",
|
9680
|
+
"src/cxx_supportlib/ConfigKit/Schema.h",
|
9681
|
+
"src/cxx_supportlib/ConfigKit/Store.h",
|
9682
|
+
"src/cxx_supportlib/ConfigKit/TableTranslator.h",
|
9683
|
+
"src/cxx_supportlib/ConfigKit/Utils.h",
|
9094
9684
|
"src/cxx_supportlib/Constants.h",
|
9095
9685
|
"src/cxx_supportlib/DataStructures/HashedStaticString.h",
|
9096
9686
|
"src/cxx_supportlib/DataStructures/LString.h",
|
9687
|
+
"src/cxx_supportlib/DataStructures/StringKeyTable.h",
|
9097
9688
|
"src/cxx_supportlib/Exceptions.h",
|
9098
9689
|
"src/cxx_supportlib/FileDescriptor.h",
|
9099
9690
|
"src/cxx_supportlib/InstanceDirectory.h",
|
@@ -9156,7 +9747,15 @@ CXX_DEPENDENCY_MAP =
|
|
9156
9747
|
"test/cxx/ServerKit/ServerTest.cpp"=>
|
9157
9748
|
["src/cxx_supportlib/Algorithms/MovingAverage.h",
|
9158
9749
|
"src/cxx_supportlib/BackgroundEventLoop.h",
|
9750
|
+
"src/cxx_supportlib/ConfigKit/Common.h",
|
9751
|
+
"src/cxx_supportlib/ConfigKit/ConfigKit.h",
|
9752
|
+
"src/cxx_supportlib/ConfigKit/Schema.h",
|
9753
|
+
"src/cxx_supportlib/ConfigKit/Store.h",
|
9754
|
+
"src/cxx_supportlib/ConfigKit/TableTranslator.h",
|
9755
|
+
"src/cxx_supportlib/ConfigKit/Utils.h",
|
9159
9756
|
"src/cxx_supportlib/Constants.h",
|
9757
|
+
"src/cxx_supportlib/DataStructures/HashedStaticString.h",
|
9758
|
+
"src/cxx_supportlib/DataStructures/StringKeyTable.h",
|
9160
9759
|
"src/cxx_supportlib/Exceptions.h",
|
9161
9760
|
"src/cxx_supportlib/FileDescriptor.h",
|
9162
9761
|
"src/cxx_supportlib/InstanceDirectory.h",
|
@@ -9179,6 +9778,7 @@ CXX_DEPENDENCY_MAP =
|
|
9179
9778
|
"src/cxx_supportlib/StaticString.h",
|
9180
9779
|
"src/cxx_supportlib/Utils.h",
|
9181
9780
|
"src/cxx_supportlib/Utils/FastStringStream.h",
|
9781
|
+
"src/cxx_supportlib/Utils/Hasher.h",
|
9182
9782
|
"src/cxx_supportlib/Utils/IOUtils.h",
|
9183
9783
|
"src/cxx_supportlib/Utils/IniFile.h",
|
9184
9784
|
"src/cxx_supportlib/Utils/JsonUtils.h",
|