From 30ee6a20fa0c592ed5269eea5e57f2b4c6e67f16 Mon Sep 17 00:00:00 2001 From: JFlanping Date: Wed, 18 Oct 2023 12:09:54 +0800 Subject: [PATCH] base --- .clang-format | 84 + .github/ISSUE_TEMPLATE/bug_report.md | 30 + .github/ISSUE_TEMPLATE/enhancement.md | 10 + .github/ISSUE_TEMPLATE/feature_request.md | 20 + .github/ISSUE_TEMPLATE/question.md | 10 + .github/pull_request_template.md | 9 + .github/workflows/build.yml | 54 + .github/workflows/codeql.yml | 87 + .github/workflows/gh-pages.yml | 70 + .github/workflows/test.yml | 60 + .gitignore | 28 + .gitmodules | 12 + .gitpod.yml | 10 + CMakeLists.txt | 134 + CODE_OF_CONDUCT.md | 45 + CONTRIBUTING.md | 112 + Doxyfile | 2771 ++++++ License | 131 + NOTICE | 132 + README.md | 102 +- benchmark/CMakeLists.txt | 12 + benchmark/bplus_tree_concurrency_test.cpp | 349 + benchmark/integer_generator.h | 26 + benchmark/record_manager_concurrency_test.cpp | 406 + benchmark/server_concurrency_test.cpp | 201 + build.sh | 176 + cmake/readline.cmake | 12 + deps/3rd/benchmark/.clang-format | 5 + deps/3rd/benchmark/.clang-tidy | 7 + .../.github/ISSUE_TEMPLATE/bug_report.md | 32 + .../.github/ISSUE_TEMPLATE/feature_request.md | 20 + deps/3rd/benchmark/.github/install_bazel.sh | 13 + deps/3rd/benchmark/.github/libcxx-setup.sh | 27 + .../3rd/benchmark/.github/workflows/bazel.yml | 35 + .../workflows/build-and-test-min-cmake.yml | 46 + .../workflows/build-and-test-perfcounters.yml | 51 + .../.github/workflows/build-and-test.yml | 114 + .../.github/workflows/clang-format-lint.yml | 17 + .../.github/workflows/clang-tidy.yml | 38 + .../benchmark/.github/workflows/doxygen.yml | 28 + .../benchmark/.github/workflows/pylint.yml | 28 + .../benchmark/.github/workflows/sanitizer.yml | 106 + .../.github/workflows/test_bindings.yml | 29 + .../benchmark/.github/workflows/wheels.yml | 79 + deps/3rd/benchmark/.gitignore | 67 + deps/3rd/benchmark/.travis.yml | 208 + deps/3rd/benchmark/.ycm_extra_conf.py | 115 + deps/3rd/benchmark/AUTHORS | 70 + deps/3rd/benchmark/BUILD.bazel | 83 + deps/3rd/benchmark/CMakeLists.txt | 337 + deps/3rd/benchmark/CONTRIBUTING.md | 58 + deps/3rd/benchmark/CONTRIBUTORS | 94 + deps/3rd/benchmark/LICENSE | 202 + deps/3rd/benchmark/README.md | 224 + deps/3rd/benchmark/WORKSPACE | 22 + deps/3rd/benchmark/_config.yml | 2 + deps/3rd/benchmark/appveyor.yml | 50 + deps/3rd/benchmark/bazel/benchmark_deps.bzl | 66 + deps/3rd/benchmark/bindings/python/BUILD | 3 + .../bindings/python/google_benchmark/BUILD | 40 + .../python/google_benchmark/__init__.py | 162 + .../python/google_benchmark/benchmark.cc | 184 + .../python/google_benchmark/example.py | 136 + .../benchmark/bindings/python/nanobind.BUILD | 56 + .../bindings/python/python_headers.BUILD | 6 + .../bindings/python/requirements.txt | 2 + .../benchmark/cmake/AddCXXCompilerFlag.cmake | 78 + .../3rd/benchmark/cmake/CXXFeatureCheck.cmake | 82 + deps/3rd/benchmark/cmake/Config.cmake.in | 7 + deps/3rd/benchmark/cmake/GetGitVersion.cmake | 58 + deps/3rd/benchmark/cmake/GoogleTest.cmake | 52 + deps/3rd/benchmark/cmake/GoogleTest.cmake.in | 59 + deps/3rd/benchmark/cmake/benchmark.pc.in | 12 + deps/3rd/benchmark/cmake/gnu_posix_regex.cpp | 12 + deps/3rd/benchmark/cmake/llvm-toolchain.cmake | 8 + deps/3rd/benchmark/cmake/posix_regex.cpp | 14 + deps/3rd/benchmark/cmake/pthread_affinity.cpp | 16 + deps/3rd/benchmark/cmake/split_list.cmake | 3 + deps/3rd/benchmark/cmake/std_regex.cpp | 10 + deps/3rd/benchmark/cmake/steady_clock.cpp | 7 + .../cmake/thread_safety_attributes.cpp | 4 + deps/3rd/benchmark/docs/AssemblyTests.md | 149 + deps/3rd/benchmark/docs/_config.yml | 1 + deps/3rd/benchmark/docs/dependencies.md | 13 + deps/3rd/benchmark/docs/index.md | 12 + deps/3rd/benchmark/docs/perf_counters.md | 35 + .../platform_specific_build_instructions.md | 48 + deps/3rd/benchmark/docs/python_bindings.md | 34 + .../3rd/benchmark/docs/random_interleaving.md | 13 + deps/3rd/benchmark/docs/reducing_variance.md | 100 + deps/3rd/benchmark/docs/releasing.md | 37 + deps/3rd/benchmark/docs/tools.md | 203 + deps/3rd/benchmark/docs/user_guide.md | 1266 +++ .../benchmark/include/benchmark/benchmark.h | 1953 +++++ deps/3rd/benchmark/include/benchmark/export.h | 47 + deps/3rd/benchmark/requirements.txt | 2 + deps/3rd/benchmark/setup.py | 166 + deps/3rd/benchmark/src/CMakeLists.txt | 170 + deps/3rd/benchmark/src/arraysize.h | 33 + deps/3rd/benchmark/src/benchmark.cc | 765 ++ .../benchmark/src/benchmark_api_internal.cc | 118 + .../benchmark/src/benchmark_api_internal.h | 87 + deps/3rd/benchmark/src/benchmark_main.cc | 18 + deps/3rd/benchmark/src/benchmark_name.cc | 59 + deps/3rd/benchmark/src/benchmark_register.cc | 520 ++ deps/3rd/benchmark/src/benchmark_register.h | 109 + deps/3rd/benchmark/src/benchmark_runner.cc | 497 ++ deps/3rd/benchmark/src/benchmark_runner.h | 131 + deps/3rd/benchmark/src/check.cc | 11 + deps/3rd/benchmark/src/check.h | 106 + deps/3rd/benchmark/src/colorprint.cc | 188 + deps/3rd/benchmark/src/colorprint.h | 33 + deps/3rd/benchmark/src/commandlineflags.cc | 298 + deps/3rd/benchmark/src/commandlineflags.h | 133 + deps/3rd/benchmark/src/complexity.cc | 244 + deps/3rd/benchmark/src/complexity.h | 55 + deps/3rd/benchmark/src/console_reporter.cc | 206 + deps/3rd/benchmark/src/counter.cc | 80 + deps/3rd/benchmark/src/counter.h | 32 + deps/3rd/benchmark/src/csv_reporter.cc | 161 + deps/3rd/benchmark/src/cycleclock.h | 230 + deps/3rd/benchmark/src/internal_macros.h | 113 + deps/3rd/benchmark/src/json_reporter.cc | 320 + deps/3rd/benchmark/src/log.h | 88 + deps/3rd/benchmark/src/mutex.h | 155 + deps/3rd/benchmark/src/perf_counters.cc | 269 + deps/3rd/benchmark/src/perf_counters.h | 202 + deps/3rd/benchmark/src/re.h | 158 + deps/3rd/benchmark/src/reporter.cc | 118 + deps/3rd/benchmark/src/statistics.cc | 209 + deps/3rd/benchmark/src/statistics.h | 44 + deps/3rd/benchmark/src/string_util.cc | 265 + deps/3rd/benchmark/src/string_util.h | 70 + deps/3rd/benchmark/src/sysinfo.cc | 855 ++ deps/3rd/benchmark/src/thread_manager.h | 63 + deps/3rd/benchmark/src/thread_timer.h | 86 + deps/3rd/benchmark/src/timers.cc | 272 + deps/3rd/benchmark/src/timers.h | 48 + deps/3rd/benchmark/test/AssemblyTests.cmake | 67 + deps/3rd/benchmark/test/BUILD | 110 + deps/3rd/benchmark/test/CMakeLists.txt | 304 + deps/3rd/benchmark/test/args_product_test.cc | 77 + deps/3rd/benchmark/test/basic_test.cc | 180 + deps/3rd/benchmark/test/benchmark_gtest.cc | 169 + .../benchmark_min_time_flag_iters_test.cc | 66 + .../test/benchmark_min_time_flag_time_test.cc | 90 + .../benchmark/test/benchmark_name_gtest.cc | 82 + .../benchmark_random_interleaving_gtest.cc | 126 + .../test/benchmark_setup_teardown_test.cc | 157 + deps/3rd/benchmark/test/benchmark_test.cc | 274 + .../test/clobber_memory_assembly_test.cc | 64 + .../benchmark/test/commandlineflags_gtest.cc | 228 + deps/3rd/benchmark/test/complexity_test.cc | 228 + deps/3rd/benchmark/test/cxx03_test.cc | 62 + deps/3rd/benchmark/test/diagnostics_test.cc | 82 + .../test/display_aggregates_only_test.cc | 45 + .../test/donotoptimize_assembly_test.cc | 201 + deps/3rd/benchmark/test/donotoptimize_test.cc | 64 + deps/3rd/benchmark/test/filter_test.cc | 117 + deps/3rd/benchmark/test/fixture_test.cc | 51 + .../benchmark/test/internal_threading_test.cc | 185 + deps/3rd/benchmark/test/link_main_test.cc | 9 + deps/3rd/benchmark/test/map_test.cc | 59 + .../3rd/benchmark/test/memory_manager_test.cc | 47 + .../benchmark/test/min_time_parse_gtest.cc | 30 + .../benchmark/test/multiple_ranges_test.cc | 96 + deps/3rd/benchmark/test/options_test.cc | 77 + deps/3rd/benchmark/test/output_test.h | 211 + deps/3rd/benchmark/test/output_test_helper.cc | 519 ++ .../3rd/benchmark/test/perf_counters_gtest.cc | 316 + deps/3rd/benchmark/test/perf_counters_test.cc | 28 + .../benchmark/test/register_benchmark_test.cc | 196 + deps/3rd/benchmark/test/repetitions_test.cc | 214 + .../test/report_aggregates_only_test.cc | 41 + .../benchmark/test/reporter_output_test.cc | 1130 +++ .../benchmark/test/skip_with_error_test.cc | 199 + deps/3rd/benchmark/test/spec_arg_test.cc | 105 + .../benchmark/test/spec_arg_verbosity_test.cc | 43 + .../3rd/benchmark/test/state_assembly_test.cc | 68 + deps/3rd/benchmark/test/statistics_gtest.cc | 35 + deps/3rd/benchmark/test/string_util_gtest.cc | 163 + .../benchmark/test/templated_fixture_test.cc | 28 + deps/3rd/benchmark/test/time_unit_gtest.cc | 37 + .../test/user_counters_tabular_test.cc | 558 ++ deps/3rd/benchmark/test/user_counters_test.cc | 561 ++ .../test/user_counters_thousands_test.cc | 186 + deps/3rd/benchmark/tools/BUILD.bazel | 19 + deps/3rd/benchmark/tools/compare.py | 432 + .../tools/gbench/Inputs/test1_run1.json | 127 + .../tools/gbench/Inputs/test1_run2.json | 127 + .../tools/gbench/Inputs/test2_run.json | 81 + .../tools/gbench/Inputs/test3_run0.json | 65 + .../tools/gbench/Inputs/test3_run1.json | 65 + .../tools/gbench/Inputs/test4_run.json | 96 + .../tools/gbench/Inputs/test4_run0.json | 21 + .../tools/gbench/Inputs/test4_run1.json | 21 + deps/3rd/benchmark/tools/gbench/__init__.py | 8 + deps/3rd/benchmark/tools/gbench/report.py | 1201 +++ deps/3rd/benchmark/tools/gbench/util.py | 203 + deps/3rd/benchmark/tools/libpfm.BUILD.bazel | 22 + deps/3rd/benchmark/tools/requirements.txt | 1 + deps/3rd/benchmark/tools/strip_asm.py | 151 + deps/3rd/googletest/.clang-format | 4 + .../.github/ISSUE_TEMPLATE/00-bug_report.yml | 53 + .../ISSUE_TEMPLATE/10-feature_request.yml | 33 + .../.github/ISSUE_TEMPLATE/config.yml | 5 + .../googletest/.github/workflows/gtest-ci.yml | 43 + deps/3rd/googletest/.gitignore | 84 + deps/3rd/googletest/BUILD.bazel | 218 + deps/3rd/googletest/CMakeLists.txt | 39 + deps/3rd/googletest/CONTRIBUTING.md | 141 + deps/3rd/googletest/CONTRIBUTORS | 65 + deps/3rd/googletest/LICENSE | 28 + deps/3rd/googletest/README.md | 123 + deps/3rd/googletest/WORKSPACE | 27 + deps/3rd/googletest/ci/linux-presubmit.sh | 137 + deps/3rd/googletest/ci/macos-presubmit.sh | 76 + deps/3rd/googletest/ci/windows-presubmit.bat | 56 + deps/3rd/googletest/docs/_config.yml | 1 + deps/3rd/googletest/docs/_data/navigation.yml | 43 + .../3rd/googletest/docs/_layouts/default.html | 58 + deps/3rd/googletest/docs/_sass/main.scss | 200 + deps/3rd/googletest/docs/advanced.md | 2436 ++++++ .../3rd/googletest/docs/assets/css/style.scss | 5 + .../docs/community_created_documentation.md | 7 + deps/3rd/googletest/docs/faq.md | 692 ++ deps/3rd/googletest/docs/gmock_cheat_sheet.md | 241 + deps/3rd/googletest/docs/gmock_cook_book.md | 4347 +++++++++ deps/3rd/googletest/docs/gmock_faq.md | 390 + deps/3rd/googletest/docs/gmock_for_dummies.md | 700 ++ deps/3rd/googletest/docs/index.md | 22 + deps/3rd/googletest/docs/pkgconfig.md | 148 + deps/3rd/googletest/docs/platforms.md | 35 + deps/3rd/googletest/docs/primer.md | 483 + deps/3rd/googletest/docs/quickstart-bazel.md | 146 + deps/3rd/googletest/docs/quickstart-cmake.md | 156 + deps/3rd/googletest/docs/reference/actions.md | 115 + .../googletest/docs/reference/assertions.md | 633 ++ .../3rd/googletest/docs/reference/matchers.md | 302 + deps/3rd/googletest/docs/reference/mocking.md | 589 ++ deps/3rd/googletest/docs/reference/testing.md | 1432 +++ deps/3rd/googletest/docs/samples.md | 22 + deps/3rd/googletest/googlemock/CMakeLists.txt | 218 + deps/3rd/googletest/googlemock/README.md | 40 + .../googletest/googlemock/cmake/gmock.pc.in | 10 + .../googlemock/cmake/gmock_main.pc.in | 10 + deps/3rd/googletest/googlemock/docs/README.md | 4 + .../googlemock/include/gmock/gmock-actions.h | 2297 +++++ .../include/gmock/gmock-cardinalities.h | 159 + .../include/gmock/gmock-function-mocker.h | 518 ++ .../googlemock/include/gmock/gmock-matchers.h | 5621 ++++++++++++ .../include/gmock/gmock-more-actions.h | 658 ++ .../include/gmock/gmock-more-matchers.h | 120 + .../include/gmock/gmock-nice-strict.h | 277 + .../include/gmock/gmock-spec-builders.h | 2111 +++++ .../googlemock/include/gmock/gmock.h | 96 + .../include/gmock/internal/custom/README.md | 18 + .../internal/custom/gmock-generated-actions.h | 7 + .../gmock/internal/custom/gmock-matchers.h | 37 + .../gmock/internal/custom/gmock-port.h | 40 + .../gmock/internal/gmock-internal-utils.h | 485 + .../include/gmock/internal/gmock-port.h | 139 + .../include/gmock/internal/gmock-pp.h | 279 + .../googletest/googlemock/src/gmock-all.cc | 46 + .../googlemock/src/gmock-cardinalities.cc | 155 + .../googlemock/src/gmock-internal-utils.cc | 256 + .../googlemock/src/gmock-matchers.cc | 479 + .../googlemock/src/gmock-spec-builders.cc | 790 ++ deps/3rd/googletest/googlemock/src/gmock.cc | 223 + .../googletest/googlemock/src/gmock_main.cc | 72 + .../googletest/googlemock/test/BUILD.bazel | 118 + .../googlemock/test/gmock-actions_test.cc | 2164 +++++ .../test/gmock-cardinalities_test.cc | 422 + .../test/gmock-function-mocker_test.cc | 998 +++ .../test/gmock-internal-utils_test.cc | 765 ++ .../test/gmock-matchers-arithmetic_test.cc | 1513 ++++ .../test/gmock-matchers-comparisons_test.cc | 2358 +++++ .../test/gmock-matchers-containers_test.cc | 3125 +++++++ .../test/gmock-matchers-misc_test.cc | 1815 ++++ .../googlemock/test/gmock-matchers_test.h | 192 + .../test/gmock-more-actions_test.cc | 1546 ++++ .../googlemock/test/gmock-nice-strict_test.cc | 541 ++ .../googlemock/test/gmock-port_test.cc | 42 + .../googlemock/test/gmock-pp-string_test.cc | 205 + .../googlemock/test/gmock-pp_test.cc | 83 + .../test/gmock-spec-builders_test.cc | 2599 ++++++ .../googlemock/test/gmock_all_test.cc | 49 + .../googlemock/test/gmock_ex_test.cc | 78 + .../googlemock/test/gmock_leak_test.py | 113 + .../googlemock/test/gmock_leak_test_.cc | 99 + .../googlemock/test/gmock_link2_test.cc | 38 + .../googlemock/test/gmock_link_test.cc | 38 + .../googlemock/test/gmock_link_test.h | 684 ++ .../googlemock/test/gmock_output_test.py | 190 + .../googlemock/test/gmock_output_test_.cc | 291 + .../test/gmock_output_test_golden.txt | 317 + .../googlemock/test/gmock_stress_test.cc | 227 + .../googletest/googlemock/test/gmock_test.cc | 179 + .../googlemock/test/gmock_test_utils.py | 91 + deps/3rd/googletest/googletest/CMakeLists.txt | 338 + deps/3rd/googletest/googletest/README.md | 231 + .../googletest/cmake/Config.cmake.in | 9 + .../googletest/googletest/cmake/gtest.pc.in | 9 + .../googletest/cmake/gtest_main.pc.in | 10 + .../googletest/cmake/internal_utils.cmake | 362 + .../googletest/cmake/libgtest.la.in | 21 + deps/3rd/googletest/googletest/docs/README.md | 4 + .../include/gtest/gtest-assertion-result.h | 237 + .../include/gtest/gtest-death-test.h | 345 + .../googletest/include/gtest/gtest-matchers.h | 923 ++ .../googletest/include/gtest/gtest-message.h | 220 + .../include/gtest/gtest-param-test.h | 546 ++ .../googletest/include/gtest/gtest-printers.h | 1138 +++ .../googletest/include/gtest/gtest-spi.h | 250 + .../include/gtest/gtest-test-part.h | 192 + .../include/gtest/gtest-typed-test.h | 331 + .../googletest/include/gtest/gtest.h | 2318 +++++ .../include/gtest/gtest_pred_impl.h | 279 + .../googletest/include/gtest/gtest_prod.h | 60 + .../include/gtest/internal/custom/README.md | 44 + .../gtest/internal/custom/gtest-port.h | 37 + .../gtest/internal/custom/gtest-printers.h | 42 + .../include/gtest/internal/custom/gtest.h | 37 + .../internal/gtest-death-test-internal.h | 307 + .../include/gtest/internal/gtest-filepath.h | 227 + .../include/gtest/internal/gtest-internal.h | 1559 ++++ .../include/gtest/internal/gtest-param-util.h | 1026 +++ .../include/gtest/internal/gtest-port-arch.h | 118 + .../include/gtest/internal/gtest-port.h | 2528 ++++++ .../include/gtest/internal/gtest-string.h | 178 + .../include/gtest/internal/gtest-type-util.h | 190 + .../googletest/samples/prime_tables.h | 125 + .../googletest/googletest/samples/sample1.cc | 66 + .../googletest/googletest/samples/sample1.h | 41 + .../googletest/samples/sample10_unittest.cc | 138 + .../googletest/samples/sample1_unittest.cc | 148 + .../googletest/googletest/samples/sample2.cc | 54 + .../googletest/googletest/samples/sample2.h | 79 + .../googletest/samples/sample2_unittest.cc | 107 + .../googletest/samples/sample3-inl.h | 171 + .../googletest/samples/sample3_unittest.cc | 146 + .../googletest/googletest/samples/sample4.cc | 50 + .../googletest/googletest/samples/sample4.h | 53 + .../googletest/samples/sample4_unittest.cc | 53 + .../googletest/samples/sample5_unittest.cc | 189 + .../googletest/samples/sample6_unittest.cc | 214 + .../googletest/samples/sample7_unittest.cc | 113 + .../googletest/samples/sample8_unittest.cc | 152 + .../googletest/samples/sample9_unittest.cc | 148 + .../googletest/googletest/src/gtest-all.cc | 49 + .../googletest/src/gtest-assertion-result.cc | 77 + .../googletest/src/gtest-death-test.cc | 1580 ++++ .../googletest/src/gtest-filepath.cc | 409 + .../googletest/src/gtest-internal-inl.h | 1218 +++ .../googletest/src/gtest-matchers.cc | 98 + .../googletest/googletest/src/gtest-port.cc | 1388 +++ .../googletest/src/gtest-printers.cc | 553 ++ .../googletest/src/gtest-test-part.cc | 105 + .../googletest/src/gtest-typed-test.cc | 104 + deps/3rd/googletest/googletest/src/gtest.cc | 6856 +++++++++++++++ .../googletest/googletest/src/gtest_main.cc | 65 + .../googletest/googletest/test/BUILD.bazel | 594 ++ .../googletest-break-on-failure-unittest.py | 195 + .../googletest-break-on-failure-unittest_.cc | 83 + .../test/googletest-catch-exceptions-test.py | 315 + .../test/googletest-catch-exceptions-test_.cc | 289 + .../googletest/test/googletest-color-test.py | 129 + .../googletest/test/googletest-color-test_.cc | 60 + .../test/googletest-death-test-test.cc | 1505 ++++ .../test/googletest-death-test_ex_test.cc | 91 + .../test/googletest-env-var-test.py | 120 + .../test/googletest-env-var-test_.cc | 130 + .../test/googletest-failfast-unittest.py | 461 + .../test/googletest-failfast-unittest_.cc | 166 + .../test/googletest-filepath-test.cc | 671 ++ .../test/googletest-filter-unittest.py | 746 ++ .../test/googletest-filter-unittest_.cc | 106 + .../googletest-global-environment-unittest.py | 141 + ...googletest-global-environment-unittest_.cc | 58 + .../test/googletest-json-outfiles-test.py | 180 + .../test/googletest-json-output-unittest.py | 820 ++ .../test/googletest-list-tests-unittest.py | 225 + .../test/googletest-list-tests-unittest_.cc | 140 + .../test/googletest-listener-test.cc | 508 ++ .../test/googletest-message-test.cc | 161 + .../test/googletest-options-test.cc | 222 + .../googletest-output-test-golden-lin.txt | 1196 +++ .../googletest/test/googletest-output-test.py | 385 + .../test/googletest-output-test_.cc | 1049 +++ ...oogletest-param-test-invalid-name1-test.py | 63 + ...ogletest-param-test-invalid-name1-test_.cc | 46 + ...oogletest-param-test-invalid-name2-test.py | 63 + ...ogletest-param-test-invalid-name2-test_.cc | 50 + .../test/googletest-param-test-test.cc | 1173 +++ .../test/googletest-param-test-test.h | 49 + .../test/googletest-param-test2-test.cc | 58 + .../googletest/test/googletest-port-test.cc | 1301 +++ .../test/googletest-printers-test.cc | 1988 +++++ .../test/googletest-setuptestsuite-test.py | 58 + .../test/googletest-setuptestsuite-test_.cc | 44 + .../test/googletest-shuffle-test.py | 378 + .../test/googletest-shuffle-test_.cc | 99 + .../test/googletest-test-part-test.cc | 220 + .../test/googletest-throw-on-failure-test.py | 166 + .../test/googletest-throw-on-failure-test_.cc | 71 + .../test/googletest-uninitialized-test.py | 70 + .../test/googletest-uninitialized-test_.cc | 39 + .../googletest/test/gtest-typed-test2_test.cc | 39 + .../googletest/test/gtest-typed-test_test.cc | 423 + .../googletest/test/gtest-typed-test_test.h | 57 + .../test/gtest-unittest-api_test.cc | 328 + .../googletest/test/gtest_all_test.cc | 46 + .../test/gtest_assert_by_exception_test.cc | 112 + .../googletest/test/gtest_dirs_test.cc | 101 + .../googletest/test/gtest_environment_test.cc | 179 + .../googletest/test/gtest_help_test.py | 211 + .../googletest/test/gtest_help_test_.cc | 44 + .../googletest/test/gtest_json_test_utils.py | 64 + .../test/gtest_list_output_unittest.py | 289 + .../test/gtest_list_output_unittest_.cc | 77 + .../googletest/test/gtest_main_unittest.cc | 42 + .../googletest/test/gtest_no_test_unittest.cc | 54 + .../test/gtest_pred_impl_unittest.cc | 2070 +++++ .../test/gtest_premature_exit_test.cc | 128 + .../googletest/test/gtest_prod_test.cc | 56 + .../googletest/test/gtest_repeat_test.cc | 222 + .../test/gtest_skip_check_output_test.py | 60 + ...test_skip_environment_check_output_test.py | 55 + .../gtest_skip_in_environment_setup_test.cc | 50 + .../googletest/test/gtest_skip_test.cc | 51 + .../googletest/test/gtest_sole_header_test.cc | 54 + .../googletest/test/gtest_stress_test.cc | 243 + .../gtest_test_macro_stack_footprint_test.cc | 89 + .../googletest/test/gtest_test_utils.py | 262 + .../googletest/test/gtest_testbridge_test.py | 63 + .../googletest/test/gtest_testbridge_test_.cc | 42 + .../test/gtest_throw_on_failure_ex_test.cc | 90 + .../googletest/test/gtest_unittest.cc | 7761 +++++++++++++++++ .../test/gtest_xml_outfile1_test_.cc | 43 + .../test/gtest_xml_outfile2_test_.cc | 75 + .../test/gtest_xml_outfiles_test.py | 147 + .../test/gtest_xml_output_unittest.py | 465 + .../test/gtest_xml_output_unittest_.cc | 195 + .../googletest/test/gtest_xml_test_utils.py | 242 + .../googletest/googletest/test/production.cc | 35 + .../googletest/googletest/test/production.h | 55 + deps/3rd/googletest/googletest_deps.bzl | 22 + deps/3rd/jsoncpp/.clang-format | 4 + deps/3rd/jsoncpp/.clang-tidy | 11 + deps/3rd/jsoncpp/.gitattributes | 11 + .../.github/ISSUE_TEMPLATE/bug_report.md | 26 + .../.github/ISSUE_TEMPLATE/feature_request.md | 20 + deps/3rd/jsoncpp/.gitignore | 57 + deps/3rd/jsoncpp/.travis.yml | 71 + .../jsoncpp/.travis_scripts/cmake_builder.sh | 130 + .../jsoncpp/.travis_scripts/meson_builder.sh | 83 + .../.travis_scripts/run-clang-format.py | 356 + .../.travis_scripts/run-clang-format.sh | 4 + .../travis.before_install.linux.sh | 8 + .../travis.before_install.osx.sh | 0 .../.travis_scripts/travis.install.linux.sh | 5 + .../.travis_scripts/travis.install.osx.sh | 1 + deps/3rd/jsoncpp/AUTHORS | 115 + deps/3rd/jsoncpp/BUILD.bazel | 37 + deps/3rd/jsoncpp/CMakeLists.txt | 213 + deps/3rd/jsoncpp/CONTRIBUTING.md | 152 + deps/3rd/jsoncpp/CTestConfig.cmake | 15 + deps/3rd/jsoncpp/LICENSE | 55 + deps/3rd/jsoncpp/README.md | 67 + deps/3rd/jsoncpp/amalgamate.py | 161 + deps/3rd/jsoncpp/appveyor.yml | 37 + deps/3rd/jsoncpp/cmake/JoinPaths.cmake | 23 + deps/3rd/jsoncpp/dev.makefile | 37 + deps/3rd/jsoncpp/devtools/__init__.py | 6 + deps/3rd/jsoncpp/devtools/agent_vmw7.json | 33 + deps/3rd/jsoncpp/devtools/agent_vmxp.json | 26 + deps/3rd/jsoncpp/devtools/antglob.py | 205 + deps/3rd/jsoncpp/devtools/batchbuild.py | 278 + deps/3rd/jsoncpp/devtools/fixeol.py | 70 + deps/3rd/jsoncpp/devtools/licenseupdater.py | 94 + deps/3rd/jsoncpp/devtools/tarball.py | 52 + deps/3rd/jsoncpp/doc/doxyfile.in | 2302 +++++ deps/3rd/jsoncpp/doc/footer.html | 21 + deps/3rd/jsoncpp/doc/header.html | 64 + deps/3rd/jsoncpp/doc/jsoncpp.dox | 164 + deps/3rd/jsoncpp/doc/readme.txt | 1 + deps/3rd/jsoncpp/doc/roadmap.dox | 3 + deps/3rd/jsoncpp/doc/web_doxyfile.in | 2290 +++++ deps/3rd/jsoncpp/doxybuild.py | 189 + deps/3rd/jsoncpp/example/CMakeLists.txt | 27 + deps/3rd/jsoncpp/example/README.md | 13 + .../example/readFromStream/errorFormat.json | 3 + .../example/readFromStream/readFromStream.cpp | 30 + .../example/readFromStream/withComment.json | 6 + .../example/readFromString/readFromString.cpp | 38 + .../example/streamWrite/streamWrite.cpp | 23 + .../example/stringWrite/stringWrite.cpp | 33 + deps/3rd/jsoncpp/get_version.pl | 5 + deps/3rd/jsoncpp/include/CMakeLists.txt | 5 + .../include/PreventInBuildInstalls.cmake | 9 + .../include/PreventInSourceBuilds.cmake | 45 + deps/3rd/jsoncpp/include/json/allocator.h | 89 + deps/3rd/jsoncpp/include/json/assertions.h | 61 + deps/3rd/jsoncpp/include/json/config.h | 150 + deps/3rd/jsoncpp/include/json/forwards.h | 43 + deps/3rd/jsoncpp/include/json/json.h | 15 + deps/3rd/jsoncpp/include/json/json_features.h | 62 + deps/3rd/jsoncpp/include/json/reader.h | 406 + deps/3rd/jsoncpp/include/json/value.h | 936 ++ deps/3rd/jsoncpp/include/json/version.h | 28 + deps/3rd/jsoncpp/include/json/writer.h | 370 + .../jsoncpp/jsoncpp-namespaced-targets.cmake | 7 + deps/3rd/jsoncpp/jsoncppConfig.cmake.in | 11 + deps/3rd/jsoncpp/meson.build | 119 + deps/3rd/jsoncpp/meson_options.txt | 5 + deps/3rd/jsoncpp/pkg-config/jsoncpp.pc.in | 11 + deps/3rd/jsoncpp/reformat.sh | 1 + deps/3rd/jsoncpp/src/CMakeLists.txt | 5 + .../jsoncpp/src/jsontestrunner/CMakeLists.txt | 51 + deps/3rd/jsoncpp/src/jsontestrunner/main.cpp | 343 + deps/3rd/jsoncpp/src/lib_json/CMakeLists.txt | 208 + deps/3rd/jsoncpp/src/lib_json/json_reader.cpp | 2004 +++++ deps/3rd/jsoncpp/src/lib_json/json_tool.h | 138 + deps/3rd/jsoncpp/src/lib_json/json_value.cpp | 1634 ++++ .../src/lib_json/json_valueiterator.inl | 156 + deps/3rd/jsoncpp/src/lib_json/json_writer.cpp | 1259 +++ .../jsoncpp/src/test_lib_json/CMakeLists.txt | 39 + deps/3rd/jsoncpp/src/test_lib_json/fuzz.cpp | 54 + deps/3rd/jsoncpp/src/test_lib_json/fuzz.dict | 54 + deps/3rd/jsoncpp/src/test_lib_json/fuzz.h | 14 + .../jsoncpp/src/test_lib_json/jsontest.cpp | 430 + deps/3rd/jsoncpp/src/test_lib_json/jsontest.h | 288 + deps/3rd/jsoncpp/src/test_lib_json/main.cpp | 3971 +++++++++ deps/3rd/jsoncpp/test/cleantests.py | 16 + .../jsoncpp/test/data/fail_invalid_quote.json | 1 + .../jsoncpp/test/data/fail_test_array_01.json | 1 + .../jsoncpp/test/data/fail_test_array_02.json | 1 + .../test/data/fail_test_object_01.json | 1 + .../test/data/fail_test_stack_limit.json | 1 + .../test/data/legacy_test_array_01.expected | 1 + .../test/data/legacy_test_array_01.json | 1 + .../test/data/legacy_test_array_02.expected | 2 + .../test/data/legacy_test_array_02.json | 1 + .../test/data/legacy_test_array_03.expected | 6 + .../test/data/legacy_test_array_03.json | 1 + .../test/data/legacy_test_array_04.expected | 5 + .../test/data/legacy_test_array_04.json | 1 + .../test/data/legacy_test_array_05.expected | 100 + .../test/data/legacy_test_array_05.json | 1 + .../test/data/legacy_test_array_06.expected | 5 + .../test/data/legacy_test_array_06.json | 4 + .../test/data/legacy_test_array_07.expected | 2122 +++++ .../test/data/legacy_test_array_07.json | 2 + .../test/data/legacy_test_basic_01.expected | 1 + .../test/data/legacy_test_basic_01.json | 1 + .../test/data/legacy_test_basic_02.expected | 1 + .../test/data/legacy_test_basic_02.json | 1 + .../test/data/legacy_test_basic_03.expected | 3 + .../test/data/legacy_test_basic_03.json | 3 + .../test/data/legacy_test_basic_04.expected | 2 + .../test/data/legacy_test_basic_04.json | 2 + .../test/data/legacy_test_basic_05.expected | 2 + .../test/data/legacy_test_basic_05.json | 2 + .../test/data/legacy_test_basic_06.expected | 2 + .../test/data/legacy_test_basic_06.json | 2 + .../test/data/legacy_test_basic_07.expected | 2 + .../test/data/legacy_test_basic_07.json | 2 + .../test/data/legacy_test_basic_08.expected | 3 + .../test/data/legacy_test_basic_08.json | 3 + .../test/data/legacy_test_basic_09.expected | 4 + .../test/data/legacy_test_basic_09.json | 4 + .../test/data/legacy_test_comment_00.expected | 4 + .../test/data/legacy_test_comment_00.json | 5 + .../test/data/legacy_test_comment_01.expected | 10 + .../test/data/legacy_test_comment_01.json | 10 + .../test/data/legacy_test_comment_02.expected | 23 + .../test/data/legacy_test_comment_02.json | 26 + .../test/data/legacy_test_complex_01.expected | 20 + .../test/data/legacy_test_complex_01.json | 17 + .../test/data/legacy_test_integer_01.expected | 2 + .../test/data/legacy_test_integer_01.json | 2 + .../test/data/legacy_test_integer_02.expected | 2 + .../test/data/legacy_test_integer_02.json | 2 + .../test/data/legacy_test_integer_03.expected | 2 + .../test/data/legacy_test_integer_03.json | 2 + .../test/data/legacy_test_integer_04.expected | 3 + .../test/data/legacy_test_integer_04.json | 3 + .../test/data/legacy_test_integer_05.expected | 2 + .../test/data/legacy_test_integer_05.json | 2 + .../legacy_test_integer_06_64bits.expected | 1 + .../data/legacy_test_integer_06_64bits.json | 2 + .../legacy_test_integer_07_64bits.expected | 1 + .../data/legacy_test_integer_07_64bits.json | 2 + .../legacy_test_integer_08_64bits.expected | 1 + .../data/legacy_test_integer_08_64bits.json | 2 + .../test/data/legacy_test_large_01.expected | 2122 +++++ .../test/data/legacy_test_large_01.json | 2 + .../test/data/legacy_test_object_01.expected | 1 + .../test/data/legacy_test_object_01.json | 1 + .../test/data/legacy_test_object_02.expected | 2 + .../test/data/legacy_test_object_02.json | 1 + .../test/data/legacy_test_object_03.expected | 4 + .../test/data/legacy_test_object_03.json | 5 + .../test/data/legacy_test_object_04.expected | 2 + .../test/data/legacy_test_object_04.json | 3 + .../legacy_test_preserve_comment_01.expected | 11 + .../data/legacy_test_preserve_comment_01.json | 14 + .../test/data/legacy_test_real_01.expected | 3 + .../test/data/legacy_test_real_01.json | 3 + .../test/data/legacy_test_real_02.expected | 3 + .../test/data/legacy_test_real_02.json | 3 + .../test/data/legacy_test_real_03.expected | 3 + .../test/data/legacy_test_real_03.json | 3 + .../test/data/legacy_test_real_04.expected | 3 + .../test/data/legacy_test_real_04.json | 3 + .../test/data/legacy_test_real_05.expected | 4 + .../test/data/legacy_test_real_05.json | 3 + .../test/data/legacy_test_real_06.expected | 4 + .../test/data/legacy_test_real_06.json | 3 + .../test/data/legacy_test_real_07.expected | 4 + .../test/data/legacy_test_real_07.json | 3 + .../test/data/legacy_test_real_08.expected | 4 + .../test/data/legacy_test_real_08.json | 4 + .../test/data/legacy_test_real_09.expected | 4 + .../test/data/legacy_test_real_09.json | 4 + .../test/data/legacy_test_real_10.expected | 4 + .../test/data/legacy_test_real_10.json | 4 + .../test/data/legacy_test_real_11.expected | 4 + .../test/data/legacy_test_real_11.json | 4 + .../test/data/legacy_test_real_12.expected | 2 + .../test/data/legacy_test_real_12.json | 2 + .../test/data/legacy_test_real_13.expected | 3 + .../test/data/legacy_test_real_13.json | 1 + .../test/data/legacy_test_string_01.expected | 1 + .../test/data/legacy_test_string_01.json | 1 + .../test/data/legacy_test_string_02.expected | 1 + .../test/data/legacy_test_string_02.json | 1 + .../test/data/legacy_test_string_03.expected | 1 + .../test/data/legacy_test_string_03.json | 1 + .../test/data/legacy_test_string_04.expected | 2 + .../test/data/legacy_test_string_04.json | 2 + .../test/data/legacy_test_string_05.expected | 2 + .../test/data/legacy_test_string_05.json | 2 + .../legacy_test_string_unicode_01.expected | 1 + .../data/legacy_test_string_unicode_01.json | 1 + .../legacy_test_string_unicode_02.expected | 1 + .../data/legacy_test_string_unicode_02.json | 1 + .../legacy_test_string_unicode_03.expected | 1 + .../data/legacy_test_string_unicode_03.json | 1 + .../legacy_test_string_unicode_04.expected | 1 + .../data/legacy_test_string_unicode_04.json | 1 + .../legacy_test_string_unicode_05.expected | 2 + .../data/legacy_test_string_unicode_05.json | 1 + .../jsoncpp/test/data/test_array_08.expected | 2 + deps/3rd/jsoncpp/test/data/test_array_08.json | 1 + .../jsoncpp/test/data/test_object_05.expected | 2 + .../3rd/jsoncpp/test/data/test_object_05.json | 1 + deps/3rd/jsoncpp/test/generate_expected.py | 17 + deps/3rd/jsoncpp/test/jsonchecker/fail1.json | 1 + deps/3rd/jsoncpp/test/jsonchecker/fail10.json | 1 + deps/3rd/jsoncpp/test/jsonchecker/fail11.json | 1 + deps/3rd/jsoncpp/test/jsonchecker/fail12.json | 1 + deps/3rd/jsoncpp/test/jsonchecker/fail13.json | 1 + deps/3rd/jsoncpp/test/jsonchecker/fail14.json | 1 + deps/3rd/jsoncpp/test/jsonchecker/fail15.json | 1 + deps/3rd/jsoncpp/test/jsonchecker/fail16.json | 1 + deps/3rd/jsoncpp/test/jsonchecker/fail17.json | 1 + deps/3rd/jsoncpp/test/jsonchecker/fail18.json | 1 + deps/3rd/jsoncpp/test/jsonchecker/fail19.json | 1 + deps/3rd/jsoncpp/test/jsonchecker/fail2.json | 1 + deps/3rd/jsoncpp/test/jsonchecker/fail20.json | 1 + deps/3rd/jsoncpp/test/jsonchecker/fail21.json | 1 + deps/3rd/jsoncpp/test/jsonchecker/fail22.json | 1 + deps/3rd/jsoncpp/test/jsonchecker/fail23.json | 1 + deps/3rd/jsoncpp/test/jsonchecker/fail24.json | 1 + deps/3rd/jsoncpp/test/jsonchecker/fail25.json | 1 + deps/3rd/jsoncpp/test/jsonchecker/fail26.json | 1 + deps/3rd/jsoncpp/test/jsonchecker/fail27.json | 2 + deps/3rd/jsoncpp/test/jsonchecker/fail28.json | 2 + deps/3rd/jsoncpp/test/jsonchecker/fail29.json | 1 + deps/3rd/jsoncpp/test/jsonchecker/fail3.json | 1 + deps/3rd/jsoncpp/test/jsonchecker/fail30.json | 1 + deps/3rd/jsoncpp/test/jsonchecker/fail31.json | 1 + deps/3rd/jsoncpp/test/jsonchecker/fail32.json | 1 + deps/3rd/jsoncpp/test/jsonchecker/fail33.json | 1 + deps/3rd/jsoncpp/test/jsonchecker/fail4.json | 1 + deps/3rd/jsoncpp/test/jsonchecker/fail5.json | 1 + deps/3rd/jsoncpp/test/jsonchecker/fail6.json | 1 + deps/3rd/jsoncpp/test/jsonchecker/fail7.json | 1 + deps/3rd/jsoncpp/test/jsonchecker/fail8.json | 1 + deps/3rd/jsoncpp/test/jsonchecker/fail9.json | 1 + deps/3rd/jsoncpp/test/jsonchecker/pass1.json | 58 + deps/3rd/jsoncpp/test/jsonchecker/pass2.json | 1 + deps/3rd/jsoncpp/test/jsonchecker/pass3.json | 6 + deps/3rd/jsoncpp/test/jsonchecker/readme.txt | 3 + deps/3rd/jsoncpp/test/pyjsontestrunner.py | 71 + deps/3rd/jsoncpp/test/runjsontests.py | 191 + deps/3rd/jsoncpp/test/rununittests.py | 84 + deps/3rd/jsoncpp/version.in | 1 + deps/3rd/libevent/.clang-format | 63 + deps/3rd/libevent/.github/workflows/abi.yml | 42 + deps/3rd/libevent/.github/workflows/linux.yml | 210 + deps/3rd/libevent/.github/workflows/macos.yml | 168 + deps/3rd/libevent/.github/workflows/mingw.yml | 170 + .../libevent/.github/workflows/windows.yml | 256 + deps/3rd/libevent/.gitignore | 162 + deps/3rd/libevent/.mailmap | 7 + deps/3rd/libevent/.uncrustify | 55 + deps/3rd/libevent/CMakeLists.txt | 1575 ++++ deps/3rd/libevent/CONTRIBUTING.md | 35 + deps/3rd/libevent/ChangeLog | 2162 +++++ deps/3rd/libevent/ChangeLog-1.4 | 231 + deps/3rd/libevent/ChangeLog-2.0 | 1280 +++ deps/3rd/libevent/Doxyfile | 257 + deps/3rd/libevent/LICENSE | 99 + deps/3rd/libevent/Makefile.am | 344 + deps/3rd/libevent/Makefile.nmake | 82 + deps/3rd/libevent/README.md | 487 ++ deps/3rd/libevent/Vagrantfile | 397 + deps/3rd/libevent/WIN32-Code/getopt.c | 149 + deps/3rd/libevent/WIN32-Code/getopt.h | 33 + deps/3rd/libevent/WIN32-Code/getopt_long.c | 234 + .../WIN32-Code/nmake/evconfig-private.h | 6 + .../WIN32-Code/nmake/event2/event-config.h | 350 + deps/3rd/libevent/WIN32-Code/tree.h | 677 ++ deps/3rd/libevent/arc4random.c | 546 ++ deps/3rd/libevent/autogen.sh | 22 + deps/3rd/libevent/buffer.c | 3467 ++++++++ deps/3rd/libevent/buffer_iocp.c | 327 + deps/3rd/libevent/bufferevent-internal.h | 518 ++ deps/3rd/libevent/bufferevent.c | 1036 +++ deps/3rd/libevent/bufferevent_async.c | 706 ++ deps/3rd/libevent/bufferevent_filter.c | 625 ++ deps/3rd/libevent/bufferevent_openssl.c | 1524 ++++ deps/3rd/libevent/bufferevent_pair.c | 365 + deps/3rd/libevent/bufferevent_ratelim.c | 1089 +++ deps/3rd/libevent/bufferevent_sock.c | 707 ++ deps/3rd/libevent/changelist-internal.h | 102 + deps/3rd/libevent/checkpatch.sh | 299 + .../3rd/libevent/cmake/AddCompilerFlags.cmake | 13 + deps/3rd/libevent/cmake/AddEventLibrary.cmake | 193 + deps/3rd/libevent/cmake/COPYING-CMAKE-SCRIPTS | 22 + .../3rd/libevent/cmake/CheckConstExists.cmake | 25 + deps/3rd/libevent/cmake/CheckFileOffsetBits.c | 14 + .../libevent/cmake/CheckFileOffsetBits.cmake | 43 + .../cmake/CheckFunctionKeywords.cmake | 14 + .../cmake/CheckPrototypeDefinition.c.in | 29 + .../cmake/CheckPrototypeDefinition.cmake | 82 + .../libevent/cmake/CheckWorkingKqueue.cmake | 52 + deps/3rd/libevent/cmake/CodeCoverage.cmake | 165 + deps/3rd/libevent/cmake/Copyright.txt | 57 + .../libevent/cmake/LibeventConfig.cmake.in | 183 + .../cmake/LibeventConfigVersion.cmake.in | 11 + deps/3rd/libevent/cmake/Macros.cmake | 36 + deps/3rd/libevent/cmake/Uninstall.cmake.in | 23 + deps/3rd/libevent/cmake/UseDoxygen.cmake | 111 + deps/3rd/libevent/cmake/VersionViaGit.cmake | 66 + deps/3rd/libevent/compat/sys/queue.h | 488 ++ deps/3rd/libevent/configure.ac | 1007 +++ deps/3rd/libevent/defer-internal.h | 73 + deps/3rd/libevent/devpoll.c | 311 + deps/3rd/libevent/doxygen.am | 55 + deps/3rd/libevent/epoll.c | 545 ++ deps/3rd/libevent/epoll_sub.c | 66 + deps/3rd/libevent/epolltable-internal.h | 1166 +++ deps/3rd/libevent/evbuffer-internal.h | 351 + deps/3rd/libevent/evconfig-private.h.cmake | 40 + deps/3rd/libevent/evconfig-private.h.in | 55 + deps/3rd/libevent/evdns.3 | 322 + deps/3rd/libevent/evdns.c | 4847 ++++++++++ deps/3rd/libevent/event-config.h.cmake | 513 ++ deps/3rd/libevent/event-internal.h | 488 ++ deps/3rd/libevent/event.3 | 624 ++ deps/3rd/libevent/event.c | 4020 +++++++++ deps/3rd/libevent/event_iocp.c | 294 + deps/3rd/libevent/event_rpcgen.py | 1925 ++++ deps/3rd/libevent/event_tagging.c | 609 ++ deps/3rd/libevent/evmap-internal.h | 117 + deps/3rd/libevent/evmap.c | 1062 +++ deps/3rd/libevent/evport.c | 451 + deps/3rd/libevent/evrpc-internal.h | 205 + deps/3rd/libevent/evrpc.c | 1171 +++ deps/3rd/libevent/evsignal-internal.h | 65 + deps/3rd/libevent/evthread-internal.h | 406 + deps/3rd/libevent/evthread.c | 509 ++ deps/3rd/libevent/evthread_pthread.c | 191 + deps/3rd/libevent/evthread_win32.c | 341 + deps/3rd/libevent/evutil.c | 2765 ++++++ deps/3rd/libevent/evutil_rand.c | 206 + deps/3rd/libevent/evutil_time.c | 621 ++ deps/3rd/libevent/extra/abi-check/README.md | 35 + .../3rd/libevent/extra/abi-check/abi_check.sh | 53 + .../libevent/extra/abi-check/libevent.json | 12 + deps/3rd/libevent/extra/lsan.supp | 3 + deps/3rd/libevent/extra/tsan.supp | 2 + deps/3rd/libevent/ht-internal.h | 487 ++ deps/3rd/libevent/http-internal.h | 206 + deps/3rd/libevent/http.c | 5128 +++++++++++ deps/3rd/libevent/include/evdns.h | 45 + deps/3rd/libevent/include/event.h | 83 + deps/3rd/libevent/include/event2/buffer.h | 1077 +++ .../libevent/include/event2/buffer_compat.h | 116 + .../3rd/libevent/include/event2/bufferevent.h | 1024 +++ .../include/event2/bufferevent_compat.h | 104 + .../libevent/include/event2/bufferevent_ssl.h | 134 + .../include/event2/bufferevent_struct.h | 116 + deps/3rd/libevent/include/event2/dns.h | 751 ++ deps/3rd/libevent/include/event2/dns_compat.h | 358 + deps/3rd/libevent/include/event2/dns_struct.h | 80 + deps/3rd/libevent/include/event2/event.h | 1672 ++++ .../libevent/include/event2/event_compat.h | 230 + .../libevent/include/event2/event_struct.h | 180 + deps/3rd/libevent/include/event2/http.h | 1192 +++ .../3rd/libevent/include/event2/http_compat.h | 94 + .../3rd/libevent/include/event2/http_struct.h | 152 + .../libevent/include/event2/keyvalq_struct.h | 80 + deps/3rd/libevent/include/event2/listener.h | 192 + deps/3rd/libevent/include/event2/rpc.h | 626 ++ deps/3rd/libevent/include/event2/rpc_compat.h | 61 + deps/3rd/libevent/include/event2/rpc_struct.h | 114 + deps/3rd/libevent/include/event2/tag.h | 146 + deps/3rd/libevent/include/event2/tag_compat.h | 49 + deps/3rd/libevent/include/event2/thread.h | 253 + deps/3rd/libevent/include/event2/util.h | 888 ++ deps/3rd/libevent/include/event2/visibility.h | 67 + deps/3rd/libevent/include/evhttp.h | 45 + deps/3rd/libevent/include/evrpc.h | 45 + deps/3rd/libevent/include/evutil.h | 39 + deps/3rd/libevent/include/include.am | 49 + deps/3rd/libevent/iocp-internal.h | 215 + deps/3rd/libevent/ipv6-internal.h | 83 + deps/3rd/libevent/kqueue-internal.h | 39 + deps/3rd/libevent/kqueue.c | 580 ++ deps/3rd/libevent/libevent.pc.in | 16 + deps/3rd/libevent/libevent_core.pc.in | 16 + deps/3rd/libevent/libevent_extra.pc.in | 16 + deps/3rd/libevent/libevent_openssl.pc.in | 16 + deps/3rd/libevent/libevent_pthreads.pc.in | 16 + deps/3rd/libevent/listener.c | 899 ++ deps/3rd/libevent/log-internal.h | 94 + deps/3rd/libevent/log.c | 244 + .../3rd/libevent/m4/ac_backport_259_ssizet.m4 | 3 + deps/3rd/libevent/m4/acx_pthread.m4 | 279 + deps/3rd/libevent/m4/ax_check_funcs_ex.m4 | 22 + deps/3rd/libevent/m4/ax_prog_doxygen.m4 | 600 ++ deps/3rd/libevent/m4/libevent_openssl.m4 | 61 + deps/3rd/libevent/m4/ntp_pkg_config.m4 | 27 + deps/3rd/libevent/make-event-config.sed | 27 + deps/3rd/libevent/make_epoll_table.py | 63 + deps/3rd/libevent/minheap-internal.h | 192 + deps/3rd/libevent/mm-internal.h | 92 + deps/3rd/libevent/openssl-compat.h | 47 + deps/3rd/libevent/poll.c | 358 + deps/3rd/libevent/ratelim-internal.h | 105 + deps/3rd/libevent/sample/dns-example.c | 264 + deps/3rd/libevent/sample/event-read-fifo.c | 162 + deps/3rd/libevent/sample/hello-world.c | 140 + deps/3rd/libevent/sample/hostcheck.c | 217 + deps/3rd/libevent/sample/hostcheck.h | 30 + deps/3rd/libevent/sample/http-connect.c | 131 + deps/3rd/libevent/sample/http-server.c | 582 ++ deps/3rd/libevent/sample/https-client.c | 544 ++ deps/3rd/libevent/sample/include.am | 56 + deps/3rd/libevent/sample/le-proxy.c | 305 + .../sample/openssl_hostname_validation.c | 178 + .../sample/openssl_hostname_validation.h | 56 + deps/3rd/libevent/sample/signal-test.c | 83 + deps/3rd/libevent/sample/time-test.c | 110 + deps/3rd/libevent/select.c | 346 + deps/3rd/libevent/signal.c | 481 + deps/3rd/libevent/strlcpy-internal.h | 24 + deps/3rd/libevent/strlcpy.c | 75 + deps/3rd/libevent/test-export/CMakeLists.txt | 15 + deps/3rd/libevent/test-export/test-export.c | 122 + deps/3rd/libevent/test-export/test-export.py | 199 + deps/3rd/libevent/test/Makefile.nmake | 79 + deps/3rd/libevent/test/bench.c | 235 + deps/3rd/libevent/test/bench_cascade.c | 188 + deps/3rd/libevent/test/bench_http.c | 200 + deps/3rd/libevent/test/bench_httpclient.c | 240 + deps/3rd/libevent/test/check-dumpevents.py | 54 + deps/3rd/libevent/test/include.am | 176 + deps/3rd/libevent/test/print-winsock-errors.c | 86 + deps/3rd/libevent/test/regress.c | 3615 ++++++++ deps/3rd/libevent/test/regress.h | 149 + deps/3rd/libevent/test/regress.rpc | 25 + deps/3rd/libevent/test/regress_buffer.c | 2870 ++++++ deps/3rd/libevent/test/regress_bufferevent.c | 1467 ++++ deps/3rd/libevent/test/regress_dns.c | 2518 ++++++ deps/3rd/libevent/test/regress_et.c | 270 + deps/3rd/libevent/test/regress_finalize.c | 395 + deps/3rd/libevent/test/regress_http.c | 4807 ++++++++++ deps/3rd/libevent/test/regress_iocp.c | 352 + deps/3rd/libevent/test/regress_listener.c | 348 + deps/3rd/libevent/test/regress_main.c | 528 ++ deps/3rd/libevent/test/regress_minheap.c | 99 + deps/3rd/libevent/test/regress_rpc.c | 952 ++ deps/3rd/libevent/test/regress_ssl.c | 1078 +++ deps/3rd/libevent/test/regress_testutils.c | 233 + deps/3rd/libevent/test/regress_testutils.h | 67 + deps/3rd/libevent/test/regress_thread.c | 590 ++ deps/3rd/libevent/test/regress_thread.h | 56 + deps/3rd/libevent/test/regress_util.c | 1681 ++++ deps/3rd/libevent/test/regress_zlib.c | 348 + deps/3rd/libevent/test/rpcgen_wrapper.sh | 43 + deps/3rd/libevent/test/test-changelist.c | 224 + deps/3rd/libevent/test/test-closed.c | 111 + deps/3rd/libevent/test/test-dumpevents.c | 179 + deps/3rd/libevent/test/test-eof.c | 117 + deps/3rd/libevent/test/test-fdleak.c | 252 + deps/3rd/libevent/test/test-init.c | 65 + deps/3rd/libevent/test/test-ratelim.c | 688 ++ deps/3rd/libevent/test/test-ratelim.sh | 88 + deps/3rd/libevent/test/test-time.c | 123 + deps/3rd/libevent/test/test-weof.c | 114 + deps/3rd/libevent/test/test.sh | 188 + deps/3rd/libevent/test/tinytest.c | 610 ++ deps/3rd/libevent/test/tinytest.h | 103 + deps/3rd/libevent/test/tinytest_demo.c | 292 + deps/3rd/libevent/test/tinytest_local.h | 12 + deps/3rd/libevent/test/tinytest_macros.h | 213 + deps/3rd/libevent/time-internal.h | 101 + deps/3rd/libevent/util-internal.h | 551 ++ deps/3rd/libevent/whatsnew-2.0.txt | 609 ++ deps/3rd/libevent/whatsnew-2.1.txt | 768 ++ deps/3rd/libevent/win32select.c | 389 + deps/CMakeLists.txt | 2 + deps/common/CMakeLists.txt | 36 + deps/common/conf/ini.cpp | 230 + deps/common/conf/ini.h | 128 + deps/common/defs.h | 58 + deps/common/io/io.cpp | 390 + deps/common/io/io.h | 80 + deps/common/io/roll_select_dir.cpp | 60 + deps/common/io/roll_select_dir.h | 53 + deps/common/io/select_dir.h | 29 + deps/common/lang/bitmap.cpp | 119 + deps/common/lang/bitmap.h | 40 + deps/common/lang/comparator.cpp | 63 + deps/common/lang/comparator.h | 24 + deps/common/lang/defer.h | 44 + deps/common/lang/lower_bound.h | 126 + deps/common/lang/lru_cache.h | 229 + deps/common/lang/mutex.cpp | 451 + deps/common/lang/mutex.h | 328 + deps/common/lang/serializable.h | 68 + deps/common/lang/string.cpp | 287 + deps/common/lang/string.h | 174 + deps/common/log/log.cpp | 384 + deps/common/log/log.h | 334 + deps/common/math/md5.cpp | 422 + deps/common/math/md5.h | 70 + deps/common/math/random_generator.cpp | 42 + deps/common/math/random_generator.h | 40 + deps/common/math/regex.cpp | 33 + deps/common/math/regex.h | 22 + deps/common/metrics/console_reporter.cpp | 42 + deps/common/metrics/console_reporter.h | 29 + deps/common/metrics/histogram_snapshot.cpp | 152 + deps/common/metrics/histogram_snapshot.h | 75 + deps/common/metrics/log_reporter.cpp | 42 + deps/common/metrics/log_reporter.h | 29 + deps/common/metrics/metric.h | 36 + deps/common/metrics/metrics.cpp | 211 + deps/common/metrics/metrics.h | 118 + deps/common/metrics/metrics_registry.cpp | 68 + deps/common/metrics/metrics_registry.h | 51 + deps/common/metrics/reporter.cpp | 15 + deps/common/metrics/reporter.h | 28 + deps/common/metrics/reservoir.cpp | 28 + deps/common/metrics/reservoir.h | 48 + deps/common/metrics/sampler.cpp | 60 + deps/common/metrics/sampler.h | 43 + deps/common/metrics/snapshot.h | 81 + deps/common/metrics/timer_snapshot.cpp | 44 + deps/common/metrics/timer_snapshot.h | 33 + deps/common/metrics/uniform_reservoir.cpp | 118 + deps/common/metrics/uniform_reservoir.h | 58 + deps/common/mm/debug_new.h | 49 + deps/common/mm/mem.h | 133 + deps/common/mm/mem_pool.cpp | 152 + deps/common/mm/mem_pool.h | 453 + deps/common/os/os.cpp | 43 + deps/common/os/os.h | 23 + deps/common/os/path.cpp | 216 + deps/common/os/path.h | 69 + deps/common/os/pidfile.cpp | 78 + deps/common/os/pidfile.h | 39 + deps/common/os/process.cpp | 160 + deps/common/os/process.h | 45 + deps/common/os/process_param.cpp | 44 + deps/common/os/process_param.h | 159 + deps/common/os/signal.cpp | 94 + deps/common/os/signal.h | 43 + deps/common/seda/callback.cpp | 92 + deps/common/seda/callback.h | 123 + deps/common/seda/class_factory.h | 140 + deps/common/seda/event_dispatcher.cpp | 138 + deps/common/seda/event_dispatcher.h | 157 + deps/common/seda/example_stage.cpp | 97 + deps/common/seda/example_stage.h | 37 + deps/common/seda/init.cpp | 85 + deps/common/seda/init.h | 40 + deps/common/seda/kill_thread.cpp | 53 + deps/common/seda/kill_thread.h | 100 + deps/common/seda/metrics_report_event.cpp | 15 + deps/common/seda/metrics_report_event.h | 32 + deps/common/seda/metrics_stage.cpp | 132 + deps/common/seda/metrics_stage.h | 44 + deps/common/seda/seda_config.cpp | 496 ++ deps/common/seda/seda_config.h | 233 + deps/common/seda/seda_defs.h | 30 + deps/common/seda/stage.cpp | 235 + deps/common/seda/stage.h | 350 + deps/common/seda/stage_event.cpp | 177 + deps/common/seda/stage_event.h | 178 + deps/common/seda/stage_factory.h | 25 + deps/common/seda/thread_pool.cpp | 345 + deps/common/seda/thread_pool.h | 169 + deps/common/seda/timer_stage.cpp | 515 ++ deps/common/seda/timer_stage.h | 323 + deps/common/time/datetime.cpp | 424 + deps/common/time/datetime.h | 492 ++ deps/common/time/timeout_info.cpp | 65 + deps/common/time/timeout_info.h | 76 + docker/Dockerfile | 44 + docker/README.md | 10 + docker/bin/starter-code.sh | 63 + docker/bin/starter-sshd.sh | 15 + docker/bin/starter.sh | 4 + docker/docker-compose.yml | 22 + docs/book.toml | 14 + docs/src/SUMMARY.md | 47 + docs/src/blog/1.md | 353 + .../blog/images/1-hekaton-storage-engine.png | Bin 0 -> 341360 bytes .../src/blog/images/1-range-index-bw-tree.png | Bin 0 -> 359553 bytes docs/src/blog/images/1-record-lock.png | Bin 0 -> 135905 bytes .../images/1-storage-engine-prototype.png | Bin 0 -> 251713 bytes .../images/1-transaction-process-phases-2.png | Bin 0 -> 238305 bytes .../images/1-transaction-process-phases.png | Bin 0 -> 248774 bytes docs/src/blog/images/1-transaction-state.png | Bin 0 -> 130904 bytes docs/src/blog/introduction.md | 1 + docs/src/design/images/bplus-tree.jpg | Bin 0 -> 73828 bytes .../miniob-bplus-tree-deletion-migration.png | Bin 0 -> 53277 bytes .../miniob-bplus-tree-deletion-move.png | Bin 0 -> 27724 bytes .../miniob-bplus-tree-deletion-move2.png | Bin 0 -> 28716 bytes .../images/miniob-bplus-tree-deletion.png | Bin 0 -> 15930 bytes .../images/miniob-bplus-tree-index-file.png | Bin 0 -> 82685 bytes .../miniob-bplus-tree-internal-node.png | Bin 0 -> 95645 bytes .../miniob-bplus-tree-internal-struct.png | Bin 0 -> 22207 bytes .../miniob-bplus-tree-internal-struct2.png | Bin 0 -> 13057 bytes .../images/miniob-bplus-tree-leaf-node.png | Bin 0 -> 45668 bytes .../images/miniob-bplus-tree-leaf-page.png | Bin 0 -> 24139 bytes .../miniob-bplus-tree-pages-in-file.png | Bin 0 -> 20839 bytes .../images/miniob-buffer-pool-directory.png | Bin 0 -> 47832 bytes .../miniob-buffer-pool-implementation.png | Bin 0 -> 32752 bytes .../design/images/miniob-buffer-pool-page.png | Bin 0 -> 35270 bytes .../images/miniob-buffer-pool-record.png | Bin 0 -> 24142 bytes docs/src/design/images/miniob-overview.png | Bin 0 -> 106637 bytes docs/src/design/images/mysql-auth.png | Bin 0 -> 214034 bytes .../design/images/mysql-command-packet.png | Bin 0 -> 22233 bytes docs/src/design/images/mysql-error-packet.png | Bin 0 -> 75043 bytes docs/src/design/images/mysql-flow.png | Bin 0 -> 195423 bytes docs/src/design/images/mysql-handshake.png | Bin 0 -> 85990 bytes .../src/design/images/mysql-ok-eof-packet.png | Bin 0 -> 175937 bytes docs/src/design/images/mysql-ok-packet.png | Bin 0 -> 175937 bytes docs/src/design/images/mysql-packet-flow.png | Bin 0 -> 500783 bytes .../design/images/mysql-result-set-packet.png | Bin 0 -> 260010 bytes docs/src/design/introduction.md | 12 + .../design/miniob-bplus-tree-concurrency.md | 165 + docs/src/design/miniob-bplus-tree.md | 66 + docs/src/design/miniob-buffer-pool.md | 81 + docs/src/design/miniob-clog.md | 80 + docs/src/design/miniob-how-to-add-new-sql.md | 80 + docs/src/design/miniob-mysql-protocol.md | 84 + docs/src/design/miniob-sql-expression.md | 167 + docs/src/design/miniob-sql-parser.md | 133 + docs/src/design/miniob-transaction.md | 196 + docs/src/dev-env/dev_by_gitpod.md | 202 + docs/src/dev-env/how-to-dev-using-docker.md | 36 + ...ow_to_dev_in_docker_container_by_vscode.md | 252 + ...n_docker_container_by_vscode_on_windows.md | 248 + .../how_to_dev_miniob_by_docker_on_windows.md | 105 + .../dev-env/how_to_dev_miniob_by_vscode.md | 166 + .../images/dev_by_gitpod_build_init.png | Bin 0 -> 73355 bytes .../dev_by_gitpod_build_init_output.png | Bin 0 -> 183030 bytes .../images/dev_by_gitpod_build_others.png | Bin 0 -> 58056 bytes .../images/dev_by_gitpod_build_output.png | Bin 0 -> 220355 bytes .../dev_by_gitpod_build_run_build_task.png | Bin 0 -> 231517 bytes .../images/dev_by_gitpod_build_run_task.png | Bin 0 -> 386898 bytes .../images/dev_by_gitpod_dashboard.png | Bin 0 -> 169014 bytes .../images/dev_by_gitpod_debug_breakpoint.png | Bin 0 -> 113474 bytes .../images/dev_by_gitpod_debug_console.png | Bin 0 -> 107992 bytes .../dev_by_gitpod_debug_debugging_view.png | Bin 0 -> 346498 bytes .../images/dev_by_gitpod_debug_start.png | Bin 0 -> 70667 bytes .../dev_by_gitpod_debug_take_breakpoint.png | Bin 0 -> 304422 bytes .../images/dev_by_gitpod_debug_terminal.png | Bin 0 -> 44512 bytes .../images/dev_by_gitpod_fork_repo.png | Bin 0 -> 228138 bytes .../dev-env/images/dev_by_gitpod_git_auth.png | Bin 0 -> 188305 bytes .../images/dev_by_gitpod_git_auth1.png | Bin 0 -> 74151 bytes .../images/dev_by_gitpod_git_commit.png | Bin 0 -> 151910 bytes .../dev_by_gitpod_git_edit_permissions.png | Bin 0 -> 167362 bytes .../images/dev_by_gitpod_git_operations.png | Bin 0 -> 155818 bytes ...dev_by_gitpod_git_pre_edit_permissions.png | Bin 0 -> 122091 bytes .../images/dev_by_gitpod_git_push_error.png | Bin 0 -> 318040 bytes .../dev_by_gitpod_gitpod_new_workspace.png | Bin 0 -> 141635 bytes .../src/dev-env/images/dev_by_gitpod_ides.png | Bin 0 -> 94171 bytes .../images/dev_by_gitpod_miniob_workspace.png | Bin 0 -> 112652 bytes .../images/dev_by_gitpod_open_gitpod.png | Bin 0 -> 187354 bytes .../images/dev_by_gitpod_open_miniob.jpg | Bin 0 -> 132530 bytes .../images/dev_by_gitpod_vscode_homepage.png | Bin 0 -> 291663 bytes .../images/dev_by_gitpod_workspace.png | Bin 0 -> 152191 bytes ..._container_by_vscode_on_windows_Docker.png | Bin 0 -> 14069 bytes ...r_container_by_vscode_on_windows_clone.png | Bin 0 -> 45451 bytes ...iner_by_vscode_on_windows_clone_branch.png | Bin 0 -> 18355 bytes ...tainer_by_vscode_on_windows_clone_done.png | Bin 0 -> 29441 bytes ...r_by_vscode_on_windows_clone_file_info.png | Bin 0 -> 95435 bytes ...er_by_vscode_on_windows_downloadDocker.png | Bin 0 -> 50941 bytes ..._container_by_vscode_on_windows_plugin.png | Bin 0 -> 86796 bytes ...er_by_vscode_on_windows_prepareDocker1.png | Bin 0 -> 73100 bytes ...er_by_vscode_on_windows_prepareDocker2.png | Bin 0 -> 16979 bytes ...er_by_vscode_on_windows_prepareDocker3.png | Bin 0 -> 154131 bytes ...ntainer_by_vscode_on_windows_searchEnv.png | Bin 0 -> 342253 bytes ...tainer_by_vscode_on_windows_searchEnv2.png | Bin 0 -> 35824 bytes ...tainer_by_vscode_on_windows_searchEnv3.png | Bin 0 -> 59050 bytes ...ode_on_windows_startDocker_in_vscode_1.png | Bin 0 -> 44487 bytes ...ode_on_windows_startDocker_in_vscode_2.png | Bin 0 -> 35792 bytes ...ode_on_windows_startDocker_in_vscode_3.png | Bin 0 -> 35783 bytes ...ode_on_windows_startDocker_in_vscode_4.png | Bin 0 -> 81725 bytes .../dev-env/images/vsc_add_new_ssh_host.png | Bin 0 -> 30629 bytes docs/src/dev-env/images/vsc_config_file.png | Bin 0 -> 21509 bytes .../dev-env/images/vsc_container_started.png | Bin 0 -> 57769 bytes .../src/dev-env/images/vsc_cpp_extensions.png | Bin 0 -> 34250 bytes docs/src/dev-env/images/vsc_debug.png | Bin 0 -> 185932 bytes .../src/dev-env/images/vsc_kit_for_miniob.png | Bin 0 -> 100180 bytes docs/src/dev-env/images/vsc_open_folder.png | Bin 0 -> 54039 bytes docs/src/dev-env/images/vsc_pwd.png | Bin 0 -> 23679 bytes .../images/vsc_remote_ssh_connect_cmd.png | Bin 0 -> 56815 bytes .../images/vsc_remote_ssh_extension.png | Bin 0 -> 66108 bytes .../src/dev-env/images/vsc_server_started.png | Bin 0 -> 156020 bytes docs/src/dev-env/images/vsc_ssh_connect.png | Bin 0 -> 16758 bytes .../images/vscode_C++_plugs_detail.png | Bin 0 -> 29803 bytes .../src/dev-env/images/vscode_break_point.png | Bin 0 -> 83507 bytes .../src/dev-env/images/vscode_build_ouput.png | Bin 0 -> 48193 bytes docs/src/dev-env/images/vscode_cmake.png | Bin 0 -> 96406 bytes .../dev-env/images/vscode_debug_miniob.png | Bin 0 -> 191919 bytes .../dev-env/images/vscode_search_plugs.png | Bin 0 -> 27385 bytes .../windows-enable-disable-functions.png | Bin 0 -> 35558 bytes .../dev-env/images/windows-enable-service.png | Bin 0 -> 186086 bytes docs/src/dev-env/images/windows-functions.png | Bin 0 -> 64960 bytes .../dev-env/images/windows-search-service.png | Bin 0 -> 502406 bytes .../images/windows-terminal-mutli-shell.png | Bin 0 -> 157986 bytes docs/src/dev-env/images/windows-terminal.png | Bin 0 -> 65597 bytes docs/src/dev-env/images/windows-wsl.png | Bin 0 -> 39353 bytes docs/src/dev-env/introduction.md | 11 + docs/src/dev-env/miniob-how-to-debug.md | 231 + docs/src/game/debug-output.md | 40 + docs/src/game/gitee-instructions.md | 145 + docs/src/game/github-introduction.md | 65 + docs/src/game/images/add-members.png | Bin 0 -> 8483 bytes docs/src/game/images/create-repo.png | Bin 0 -> 62248 bytes docs/src/game/images/create-repo2.png | Bin 0 -> 38199 bytes docs/src/game/images/github-add-people.png | Bin 0 -> 464122 bytes docs/src/game/images/github-add-tester-2.png | Bin 0 -> 136322 bytes docs/src/game/images/github-add-tester.png | Bin 0 -> 142532 bytes .../game/images/github-begin-import-form.png | Bin 0 -> 522805 bytes docs/src/game/images/github-import-done.png | Bin 0 -> 142739 bytes .../game/images/github-import-repository.png | Bin 0 -> 485632 bytes .../src/game/images/github-invite-success.png | Bin 0 -> 128566 bytes .../src/game/images/github-pending-invite.png | Bin 0 -> 155462 bytes docs/src/game/images/github-view-repo.png | Bin 0 -> 262687 bytes docs/src/game/images/invite-users.png | Bin 0 -> 23840 bytes docs/src/game/images/reporter.png | Bin 0 -> 32317 bytes docs/src/game/introduction.md | 42 + docs/src/game/miniob-date-implementation.md | 162 + .../game/miniob-drop-table-implementation.md | 103 + docs/src/game/miniob-output-convention.md | 33 + docs/src/game/miniob-test-comment-date.md | 83 + docs/src/game/miniob_topics.md | 268 + docs/src/how_to_build.md | 42 + docs/src/how_to_run.md | 79 + ...miniob-introduction-running-the-client.png | Bin 0 -> 83026 bytes ...miniob-introduction-running-the-server.png | Bin 0 -> 30081 bytes .../images/miniob-introduction-sql-flow.png | Bin 0 -> 105583 bytes docs/src/lectures/copyright.md | 8 + docs/src/lectures/images/1-1.png | Bin 0 -> 129366 bytes docs/src/lectures/images/1.3.1.3-1.png | Bin 0 -> 1976 bytes docs/src/lectures/images/1.3.1.3-2.png | Bin 0 -> 1918 bytes docs/src/lectures/images/2-1.png | Bin 0 -> 28170 bytes docs/src/lectures/images/2-2.png | Bin 0 -> 40154 bytes docs/src/lectures/images/2-3.png | Bin 0 -> 30260 bytes docs/src/lectures/images/2-4.png | Bin 0 -> 24312 bytes docs/src/lectures/images/2-5.png | Bin 0 -> 32326 bytes docs/src/lectures/images/2-6.png | Bin 0 -> 20526 bytes docs/src/lectures/images/2-7.png | Bin 0 -> 16117 bytes docs/src/lectures/images/2-8.png | Bin 0 -> 25596 bytes docs/src/lectures/images/3-1.png | Bin 0 -> 15122 bytes docs/src/lectures/images/3-2-a.png | Bin 0 -> 11343 bytes docs/src/lectures/images/3-2-b.png | Bin 0 -> 18437 bytes docs/src/lectures/images/3-2-c.png | Bin 0 -> 20019 bytes docs/src/lectures/images/3-3-a.png | Bin 0 -> 10492 bytes docs/src/lectures/images/3-3-b.png | Bin 0 -> 20590 bytes docs/src/lectures/images/3-3-c.png | Bin 0 -> 10027 bytes docs/src/lectures/images/3-4.png | Bin 0 -> 12132 bytes docs/src/lectures/images/3-5.png | Bin 0 -> 18622 bytes docs/src/lectures/images/3-6-a.png | Bin 0 -> 16698 bytes docs/src/lectures/images/3-6-b.png | Bin 0 -> 22509 bytes docs/src/lectures/images/3-7-a.png | Bin 0 -> 8416 bytes docs/src/lectures/images/3-7-b.png | Bin 0 -> 13900 bytes docs/src/lectures/images/3-7-c.png | Bin 0 -> 20453 bytes docs/src/lectures/images/4-1.png | Bin 0 -> 52320 bytes docs/src/lectures/images/4-2.png | Bin 0 -> 160287 bytes docs/src/lectures/images/4-3.png | Bin 0 -> 72434 bytes docs/src/lectures/images/4-4.png | Bin 0 -> 35403 bytes docs/src/lectures/images/4-5.png | Bin 0 -> 58555 bytes docs/src/lectures/images/4-6.png | Bin 0 -> 38157 bytes docs/src/lectures/images/5-1.png | Bin 0 -> 33574 bytes docs/src/lectures/images/5.2.1.1-1.png | Bin 0 -> 1389 bytes docs/src/lectures/images/5.2.1.1-2.png | Bin 0 -> 1348 bytes docs/src/lectures/images/5.2.1.1-3.png | Bin 0 -> 2673 bytes docs/src/lectures/images/5.2.1.1-4.png | Bin 0 -> 3695 bytes docs/src/lectures/images/5.2.2.1-1.png | Bin 0 -> 7855 bytes docs/src/lectures/images/5.3.1.1-4.png | Bin 0 -> 2545 bytes docs/src/lectures/images/6-1.png | Bin 0 -> 29254 bytes docs/src/lectures/images/6-2.png | Bin 0 -> 25211 bytes docs/src/lectures/images/6-3.png | Bin 0 -> 64121 bytes docs/src/lectures/images/6-4.png | Bin 0 -> 36389 bytes docs/src/lectures/index.md | 19 + docs/src/lectures/lecture-1.md | 144 + docs/src/lectures/lecture-2.md | 237 + docs/src/lectures/lecture-3.md | 281 + docs/src/lectures/lecture-4.md | 246 + docs/src/lectures/lecture-5.md | 664 ++ docs/src/lectures/lecture-6.md | 318 + docs/src/lectures/references.md | 8 + docs/src/miniob-introduction.md | 146 + etc/observer.ini | 57 + src/obclient/CMakeLists.txt | 30 + src/obclient/client.cpp | 232 + src/observer/CMakeLists.txt | 54 + src/observer/common/global_context.cpp | 22 + src/observer/common/global_context.h | 34 + src/observer/common/ini_setting.h | 27 + src/observer/common/init.cpp | 287 + src/observer/common/init.h | 21 + src/observer/common/rc.cpp | 35 + src/observer/common/rc.h | 88 + src/observer/common/types.h | 27 + src/observer/event/session_event.cpp | 35 + src/observer/event/session_event.h | 53 + src/observer/event/sql_debug.cpp | 64 + src/observer/event/sql_debug.h | 48 + src/observer/event/sql_event.cpp | 36 + src/observer/event/sql_event.h | 84 + src/observer/event/storage_event.h | 35 + src/observer/main.cpp | 202 + src/observer/net/buffered_writer.cpp | 135 + src/observer/net/buffered_writer.h | 72 + src/observer/net/cli_communicator.cpp | 148 + src/observer/net/cli_communicator.h | 37 + src/observer/net/communicator.cpp | 68 + src/observer/net/communicator.h | 118 + src/observer/net/mysql_communicator.cpp | 1006 +++ src/observer/net/mysql_communicator.h | 102 + src/observer/net/plain_communicator.cpp | 296 + src/observer/net/plain_communicator.h | 43 + src/observer/net/ring_buffer.cpp | 114 + src/observer/net/ring_buffer.h | 94 + src/observer/net/server.cpp | 387 + src/observer/net/server.h | 95 + src/observer/net/server_param.h | 49 + src/observer/session/session.cpp | 102 + src/observer/session/session.h | 100 + src/observer/session/session_stage.cpp | 160 + src/observer/session/session_stage.h | 65 + src/observer/session/thread_data.cpp | 23 + src/observer/session/thread_data.h | 40 + .../sql/executor/command_executor.cpp | 91 + src/observer/sql/executor/command_executor.h | 37 + .../sql/executor/create_index_executor.cpp | 35 + .../sql/executor/create_index_executor.h | 33 + .../sql/executor/create_table_executor.cpp | 40 + .../sql/executor/create_table_executor.h | 32 + .../sql/executor/desc_table_executor.cpp | 70 + .../sql/executor/desc_table_executor.h | 32 + src/observer/sql/executor/execute_stage.cpp | 100 + src/observer/sql/executor/execute_stage.h | 36 + src/observer/sql/executor/help_executor.h | 62 + .../sql/executor/load_data_executor.cpp | 173 + .../sql/executor/load_data_executor.h | 37 + .../sql/executor/set_variable_executor.h | 106 + .../sql/executor/show_tables_executor.h | 58 + src/observer/sql/executor/sql_result.cpp | 80 + src/observer/sql/executor/sql_result.h | 78 + .../sql/executor/trx_begin_executor.h | 46 + src/observer/sql/executor/trx_end_executor.h | 51 + src/observer/sql/expr/expression.cpp | 330 + src/observer/sql/expr/expression.h | 302 + src/observer/sql/expr/tuple.h | 426 + src/observer/sql/expr/tuple_cell.cpp | 46 + src/observer/sql/expr/tuple_cell.h | 44 + .../sql/operator/calc_logical_operator.h | 38 + .../sql/operator/calc_physical_operator.h | 84 + .../sql/operator/delete_logical_operator.cpp | 18 + .../sql/operator/delete_logical_operator.h | 40 + .../sql/operator/delete_physical_operator.cpp | 73 + .../sql/operator/delete_physical_operator.h | 51 + .../sql/operator/explain_logical_operator.h | 35 + .../operator/explain_physical_operator.cpp | 117 + .../sql/operator/explain_physical_operator.h | 45 + .../operator/index_scan_physical_operator.cpp | 145 + .../operator/index_scan_physical_operator.h | 71 + .../sql/operator/insert_logical_operator.cpp | 20 + .../sql/operator/insert_logical_operator.h | 44 + .../sql/operator/insert_physical_operator.cpp | 50 + .../sql/operator/insert_physical_operator.h | 48 + .../sql/operator/join_logical_operator.h | 36 + .../sql/operator/join_physical_operator.cpp | 136 + .../sql/operator/join_physical_operator.h | 56 + .../sql/operator/logical_operator.cpp | 23 + src/observer/sql/operator/logical_operator.h | 73 + .../sql/operator/physical_operator.cpp | 54 + src/observer/sql/operator/physical_operator.h | 89 + .../operator/predicate_logical_operator.cpp | 20 + .../sql/operator/predicate_logical_operator.h | 34 + .../operator/predicate_physical_operator.cpp | 71 + .../operator/predicate_physical_operator.h | 47 + .../sql/operator/project_logical_operator.cpp | 18 + .../sql/operator/project_logical_operator.h | 59 + .../operator/project_physical_operator.cpp | 63 + .../sql/operator/project_physical_operator.h | 55 + .../operator/string_list_physical_operator.h | 102 + .../operator/table_get_logical_operator.cpp | 24 + .../sql/operator/table_get_logical_operator.h | 54 + .../operator/table_scan_physical_operator.cpp | 102 + .../operator/table_scan_physical_operator.h | 62 + .../comparison_simplification_rule.cpp | 35 + .../comparison_simplification_rule.h | 37 + .../conjunction_simplification_rule.cpp | 82 + .../conjunction_simplification_rule.h | 35 + .../sql/optimizer/expression_rewriter.cpp | 137 + .../sql/optimizer/expression_rewriter.h | 37 + .../sql/optimizer/logical_plan_generator.cpp | 215 + .../sql/optimizer/logical_plan_generator.h | 45 + src/observer/sql/optimizer/optimize_stage.cpp | 111 + src/observer/sql/optimizer/optimize_stage.h | 81 + .../sql/optimizer/physical_plan_generator.cpp | 294 + .../sql/optimizer/physical_plan_generator.h | 55 + .../optimizer/predicate_pushdown_rewriter.cpp | 124 + .../optimizer/predicate_pushdown_rewriter.h | 36 + .../sql/optimizer/predicate_rewrite.cpp | 58 + .../sql/optimizer/predicate_rewrite.h | 31 + src/observer/sql/optimizer/rewrite_rule.h | 46 + src/observer/sql/optimizer/rewriter.cpp | 64 + src/observer/sql/optimizer/rewriter.h | 51 + src/observer/sql/parser/gen_parser.sh | 3 + src/observer/sql/parser/lex_sql.cpp | 2452 ++++++ src/observer/sql/parser/lex_sql.h | 550 ++ src/observer/sql/parser/lex_sql.l | 142 + src/observer/sql/parser/parse.cpp | 49 + src/observer/sql/parser/parse.h | 20 + src/observer/sql/parser/parse_defs.h | 328 + src/observer/sql/parser/parse_stage.cpp | 62 + src/observer/sql/parser/parse_stage.h | 29 + src/observer/sql/parser/resolve_stage.cpp | 58 + src/observer/sql/parser/resolve_stage.h | 29 + src/observer/sql/parser/value.cpp | 303 + src/observer/sql/parser/value.h | 107 + src/observer/sql/parser/yacc_sql.cpp | 2618 ++++++ src/observer/sql/parser/yacc_sql.hpp | 160 + src/observer/sql/parser/yacc_sql.y | 690 ++ .../sql/plan_cache/plan_cache_stage.cpp | 25 + .../sql/plan_cache/plan_cache_stage.h | 27 + .../sql/query_cache/query_cache_stage.cpp | 30 + .../sql/query_cache/query_cache_stage.h | 34 + src/observer/sql/stmt/calc_stmt.h | 62 + src/observer/sql/stmt/create_index_stmt.cpp | 57 + src/observer/sql/stmt/create_index_stmt.h | 53 + src/observer/sql/stmt/create_table_stmt.cpp | 23 + src/observer/sql/stmt/create_table_stmt.h | 48 + src/observer/sql/stmt/delete_stmt.cpp | 60 + src/observer/sql/stmt/delete_stmt.h | 53 + src/observer/sql/stmt/desc_table_stmt.cpp | 25 + src/observer/sql/stmt/desc_table_stmt.h | 45 + src/observer/sql/stmt/exit_stmt.h | 40 + src/observer/sql/stmt/explain_stmt.cpp | 34 + src/observer/sql/stmt/explain_stmt.h | 44 + src/observer/sql/stmt/filter_stmt.cpp | 131 + src/observer/sql/stmt/filter_stmt.h | 112 + src/observer/sql/stmt/help_stmt.h | 40 + src/observer/sql/stmt/insert_stmt.cpp | 66 + src/observer/sql/stmt/insert_stmt.h | 59 + src/observer/sql/stmt/load_data_stmt.cpp | 48 + src/observer/sql/stmt/load_data_stmt.h | 41 + src/observer/sql/stmt/select_stmt.cpp | 154 + src/observer/sql/stmt/select_stmt.h | 65 + src/observer/sql/stmt/set_variable_stmt.h | 47 + src/observer/sql/stmt/show_tables_stmt.h | 42 + src/observer/sql/stmt/stmt.cpp | 102 + src/observer/sql/stmt/stmt.h | 89 + src/observer/sql/stmt/trx_begin_stmt.h | 40 + src/observer/sql/stmt/trx_end_stmt.h | 45 + src/observer/sql/stmt/update_stmt.cpp | 26 + src/observer/sql/stmt/update_stmt.h | 53 + .../storage/buffer/disk_buffer_pool.cpp | 767 ++ .../storage/buffer/disk_buffer_pool.h | 326 + src/observer/storage/buffer/frame.cpp | 295 + src/observer/storage/buffer/frame.h | 155 + src/observer/storage/buffer/page.h | 38 + src/observer/storage/clog/clog.cpp | 576 ++ src/observer/storage/clog/clog.h | 422 + .../storage/common/condition_filter.cpp | 222 + .../storage/common/condition_filter.h | 109 + src/observer/storage/common/meta_util.cpp | 29 + src/observer/storage/common/meta_util.h | 25 + src/observer/storage/db/db.cpp | 196 + src/observer/storage/db/db.h | 74 + .../storage/default/default_handler.cpp | 211 + .../storage/default/default_handler.h | 106 + src/observer/storage/field/field.cpp | 38 + src/observer/storage/field/field.h | 72 + src/observer/storage/field/field_meta.cpp | 146 + src/observer/storage/field/field_meta.h | 59 + src/observer/storage/index/bplus_tree.cpp | 1921 ++++ src/observer/storage/index/bplus_tree.h | 636 ++ .../storage/index/bplus_tree_index.cpp | 142 + src/observer/storage/index/bplus_tree_index.h | 68 + src/observer/storage/index/index.cpp | 22 + src/observer/storage/index/index.h | 107 + src/observer/storage/index/index_meta.cpp | 81 + src/observer/storage/index/index_meta.h | 53 + src/observer/storage/persist/persist.cpp | 300 + src/observer/storage/persist/persist.h | 66 + src/observer/storage/record/record.h | 163 + .../storage/record/record_manager.cpp | 627 ++ src/observer/storage/record/record_manager.h | 385 + src/observer/storage/table/table.cpp | 512 ++ src/observer/storage/table/table.h | 120 + src/observer/storage/table/table_meta.cpp | 331 + src/observer/storage/table/table_meta.h | 80 + src/observer/storage/trx/latch_memo.cpp | 173 + src/observer/storage/trx/latch_memo.h | 82 + src/observer/storage/trx/mvcc_trx.cpp | 466 + src/observer/storage/trx/mvcc_trx.h | 107 + src/observer/storage/trx/trx.cpp | 67 + src/observer/storage/trx/trx.h | 158 + src/observer/storage/trx/vacuous_trx.cpp | 82 + src/observer/storage/trx/vacuous_trx.h | 52 + test/case/README.md | 17 + test/case/miniob_test.py | 1084 +++ test/case/result/basic.result | 140 + .../result/primary-aggregation-func.result | 99 + .../result/primary-complex-sub-query.result | 113 + test/case/result/primary-date.result | 69 + test/case/result/primary-drop-table.result | 69 + test/case/result/primary-expression.result | 77 + test/case/result/primary-group-by.result | 81 + test/case/result/primary-insert.result | 22 + test/case/result/primary-join-tables.result | 1375 +++ test/case/result/primary-multi-index.result | 169 + test/case/result/primary-null.result | 184 + test/case/result/primary-order-by.result | 181 + test/case/result/primary-select-meta.result | 13 + test/case/result/primary-select-tables.result | 107 + .../result/primary-simple-sub-query.result | 109 + test/case/result/primary-text.result | 50 + test/case/result/primary-unique.result | 24 + test/case/result/primary-update.result | 81 + test/case/test/basic.test | 51 + test/case/test/primary-aggregation-func.test | 57 + test/case/test/primary-complex-sub-query.test | 54 + test/case/test/primary-date.test | 34 + test/case/test/primary-drop-table.test | 39 + test/case/test/primary-expression.test | 33 + test/case/test/primary-group-by.test | 34 + test/case/test/primary-insert.test | 13 + test/case/test/primary-join-tables.test | 646 ++ test/case/test/primary-multi-index.test | 77 + test/case/test/primary-null.test | 83 + test/case/test/primary-order-by.test | 43 + test/case/test/primary-select-meta.test | 9 + test/case/test/primary-select-tables.test | 41 + test/case/test/primary-simple-sub-query.test | 46 + test/case/test/primary-text.test | 23 + test/case/test/primary-unique.test | 13 + test/case/test/primary-update.test | 42 + test/perf/CMakeLists.txt | 13 + test/perf/client_performance_test.cpp | 132 + test/sysbench/miniob_common.lua | 484 + test/sysbench/miniob_insert.lua | 44 + tools/CMakeLists.txt | 13 + tools/clog_reader_cmd.cpp | 60 + unittest/CMakeLists.txt | 21 + unittest/arithmetic_expression_test.cpp | 149 + unittest/bitmap_test.cpp | 78 + unittest/bp_manager_test.cpp | 137 + unittest/bplus_tree_test.cpp | 754 ++ unittest/clog_test.cpp | 58 + unittest/log_test.cpp | 110 + unittest/log_test.h | 33 + unittest/lower_bound_test.cpp | 52 + unittest/md5_test.cpp | 48 + unittest/md5_test.h | 29 + unittest/mem_pool_test.cpp | 69 + unittest/persist_test.cpp | 143 + unittest/pidfile_test.cpp | 44 + unittest/record_manager_test.cpp | 195 + unittest/ring_buffer_test.cpp | 127 + 1508 files changed, 326645 insertions(+), 2 deletions(-) create mode 100644 .clang-format create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/enhancement.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md create mode 100644 .github/ISSUE_TEMPLATE/question.md create mode 100644 .github/pull_request_template.md create mode 100644 .github/workflows/build.yml create mode 100644 .github/workflows/codeql.yml create mode 100644 .github/workflows/gh-pages.yml create mode 100644 .github/workflows/test.yml create mode 100644 .gitignore create mode 100644 .gitmodules create mode 100644 .gitpod.yml create mode 100644 CMakeLists.txt create mode 100644 CODE_OF_CONDUCT.md create mode 100644 CONTRIBUTING.md create mode 100644 Doxyfile create mode 100644 License create mode 100644 NOTICE create mode 100644 benchmark/CMakeLists.txt create mode 100644 benchmark/bplus_tree_concurrency_test.cpp create mode 100644 benchmark/integer_generator.h create mode 100644 benchmark/record_manager_concurrency_test.cpp create mode 100644 benchmark/server_concurrency_test.cpp create mode 100755 build.sh create mode 100644 cmake/readline.cmake create mode 100644 deps/3rd/benchmark/.clang-format create mode 100644 deps/3rd/benchmark/.clang-tidy create mode 100644 deps/3rd/benchmark/.github/ISSUE_TEMPLATE/bug_report.md create mode 100644 deps/3rd/benchmark/.github/ISSUE_TEMPLATE/feature_request.md create mode 100644 deps/3rd/benchmark/.github/install_bazel.sh create mode 100755 deps/3rd/benchmark/.github/libcxx-setup.sh create mode 100644 deps/3rd/benchmark/.github/workflows/bazel.yml create mode 100644 deps/3rd/benchmark/.github/workflows/build-and-test-min-cmake.yml create mode 100644 deps/3rd/benchmark/.github/workflows/build-and-test-perfcounters.yml create mode 100644 deps/3rd/benchmark/.github/workflows/build-and-test.yml create mode 100644 deps/3rd/benchmark/.github/workflows/clang-format-lint.yml create mode 100644 deps/3rd/benchmark/.github/workflows/clang-tidy.yml create mode 100644 deps/3rd/benchmark/.github/workflows/doxygen.yml create mode 100644 deps/3rd/benchmark/.github/workflows/pylint.yml create mode 100644 deps/3rd/benchmark/.github/workflows/sanitizer.yml create mode 100644 deps/3rd/benchmark/.github/workflows/test_bindings.yml create mode 100644 deps/3rd/benchmark/.github/workflows/wheels.yml create mode 100644 deps/3rd/benchmark/.gitignore create mode 100644 deps/3rd/benchmark/.travis.yml create mode 100644 deps/3rd/benchmark/.ycm_extra_conf.py create mode 100644 deps/3rd/benchmark/AUTHORS create mode 100644 deps/3rd/benchmark/BUILD.bazel create mode 100644 deps/3rd/benchmark/CMakeLists.txt create mode 100644 deps/3rd/benchmark/CONTRIBUTING.md create mode 100644 deps/3rd/benchmark/CONTRIBUTORS create mode 100644 deps/3rd/benchmark/LICENSE create mode 100644 deps/3rd/benchmark/README.md create mode 100644 deps/3rd/benchmark/WORKSPACE create mode 100644 deps/3rd/benchmark/_config.yml create mode 100644 deps/3rd/benchmark/appveyor.yml create mode 100644 deps/3rd/benchmark/bazel/benchmark_deps.bzl create mode 100644 deps/3rd/benchmark/bindings/python/BUILD create mode 100644 deps/3rd/benchmark/bindings/python/google_benchmark/BUILD create mode 100644 deps/3rd/benchmark/bindings/python/google_benchmark/__init__.py create mode 100644 deps/3rd/benchmark/bindings/python/google_benchmark/benchmark.cc create mode 100644 deps/3rd/benchmark/bindings/python/google_benchmark/example.py create mode 100644 deps/3rd/benchmark/bindings/python/nanobind.BUILD create mode 100644 deps/3rd/benchmark/bindings/python/python_headers.BUILD create mode 100644 deps/3rd/benchmark/bindings/python/requirements.txt create mode 100644 deps/3rd/benchmark/cmake/AddCXXCompilerFlag.cmake create mode 100644 deps/3rd/benchmark/cmake/CXXFeatureCheck.cmake create mode 100644 deps/3rd/benchmark/cmake/Config.cmake.in create mode 100644 deps/3rd/benchmark/cmake/GetGitVersion.cmake create mode 100644 deps/3rd/benchmark/cmake/GoogleTest.cmake create mode 100644 deps/3rd/benchmark/cmake/GoogleTest.cmake.in create mode 100644 deps/3rd/benchmark/cmake/benchmark.pc.in create mode 100644 deps/3rd/benchmark/cmake/gnu_posix_regex.cpp create mode 100644 deps/3rd/benchmark/cmake/llvm-toolchain.cmake create mode 100644 deps/3rd/benchmark/cmake/posix_regex.cpp create mode 100644 deps/3rd/benchmark/cmake/pthread_affinity.cpp create mode 100644 deps/3rd/benchmark/cmake/split_list.cmake create mode 100644 deps/3rd/benchmark/cmake/std_regex.cpp create mode 100644 deps/3rd/benchmark/cmake/steady_clock.cpp create mode 100644 deps/3rd/benchmark/cmake/thread_safety_attributes.cpp create mode 100644 deps/3rd/benchmark/docs/AssemblyTests.md create mode 100644 deps/3rd/benchmark/docs/_config.yml create mode 100644 deps/3rd/benchmark/docs/dependencies.md create mode 100644 deps/3rd/benchmark/docs/index.md create mode 100644 deps/3rd/benchmark/docs/perf_counters.md create mode 100644 deps/3rd/benchmark/docs/platform_specific_build_instructions.md create mode 100644 deps/3rd/benchmark/docs/python_bindings.md create mode 100644 deps/3rd/benchmark/docs/random_interleaving.md create mode 100644 deps/3rd/benchmark/docs/reducing_variance.md create mode 100644 deps/3rd/benchmark/docs/releasing.md create mode 100644 deps/3rd/benchmark/docs/tools.md create mode 100644 deps/3rd/benchmark/docs/user_guide.md create mode 100644 deps/3rd/benchmark/include/benchmark/benchmark.h create mode 100644 deps/3rd/benchmark/include/benchmark/export.h create mode 100644 deps/3rd/benchmark/requirements.txt create mode 100644 deps/3rd/benchmark/setup.py create mode 100644 deps/3rd/benchmark/src/CMakeLists.txt create mode 100644 deps/3rd/benchmark/src/arraysize.h create mode 100644 deps/3rd/benchmark/src/benchmark.cc create mode 100644 deps/3rd/benchmark/src/benchmark_api_internal.cc create mode 100644 deps/3rd/benchmark/src/benchmark_api_internal.h create mode 100644 deps/3rd/benchmark/src/benchmark_main.cc create mode 100644 deps/3rd/benchmark/src/benchmark_name.cc create mode 100644 deps/3rd/benchmark/src/benchmark_register.cc create mode 100644 deps/3rd/benchmark/src/benchmark_register.h create mode 100644 deps/3rd/benchmark/src/benchmark_runner.cc create mode 100644 deps/3rd/benchmark/src/benchmark_runner.h create mode 100644 deps/3rd/benchmark/src/check.cc create mode 100644 deps/3rd/benchmark/src/check.h create mode 100644 deps/3rd/benchmark/src/colorprint.cc create mode 100644 deps/3rd/benchmark/src/colorprint.h create mode 100644 deps/3rd/benchmark/src/commandlineflags.cc create mode 100644 deps/3rd/benchmark/src/commandlineflags.h create mode 100644 deps/3rd/benchmark/src/complexity.cc create mode 100644 deps/3rd/benchmark/src/complexity.h create mode 100644 deps/3rd/benchmark/src/console_reporter.cc create mode 100644 deps/3rd/benchmark/src/counter.cc create mode 100644 deps/3rd/benchmark/src/counter.h create mode 100644 deps/3rd/benchmark/src/csv_reporter.cc create mode 100644 deps/3rd/benchmark/src/cycleclock.h create mode 100644 deps/3rd/benchmark/src/internal_macros.h create mode 100644 deps/3rd/benchmark/src/json_reporter.cc create mode 100644 deps/3rd/benchmark/src/log.h create mode 100644 deps/3rd/benchmark/src/mutex.h create mode 100644 deps/3rd/benchmark/src/perf_counters.cc create mode 100644 deps/3rd/benchmark/src/perf_counters.h create mode 100644 deps/3rd/benchmark/src/re.h create mode 100644 deps/3rd/benchmark/src/reporter.cc create mode 100644 deps/3rd/benchmark/src/statistics.cc create mode 100644 deps/3rd/benchmark/src/statistics.h create mode 100644 deps/3rd/benchmark/src/string_util.cc create mode 100644 deps/3rd/benchmark/src/string_util.h create mode 100644 deps/3rd/benchmark/src/sysinfo.cc create mode 100644 deps/3rd/benchmark/src/thread_manager.h create mode 100644 deps/3rd/benchmark/src/thread_timer.h create mode 100644 deps/3rd/benchmark/src/timers.cc create mode 100644 deps/3rd/benchmark/src/timers.h create mode 100644 deps/3rd/benchmark/test/AssemblyTests.cmake create mode 100644 deps/3rd/benchmark/test/BUILD create mode 100644 deps/3rd/benchmark/test/CMakeLists.txt create mode 100644 deps/3rd/benchmark/test/args_product_test.cc create mode 100644 deps/3rd/benchmark/test/basic_test.cc create mode 100644 deps/3rd/benchmark/test/benchmark_gtest.cc create mode 100644 deps/3rd/benchmark/test/benchmark_min_time_flag_iters_test.cc create mode 100644 deps/3rd/benchmark/test/benchmark_min_time_flag_time_test.cc create mode 100644 deps/3rd/benchmark/test/benchmark_name_gtest.cc create mode 100644 deps/3rd/benchmark/test/benchmark_random_interleaving_gtest.cc create mode 100644 deps/3rd/benchmark/test/benchmark_setup_teardown_test.cc create mode 100644 deps/3rd/benchmark/test/benchmark_test.cc create mode 100644 deps/3rd/benchmark/test/clobber_memory_assembly_test.cc create mode 100644 deps/3rd/benchmark/test/commandlineflags_gtest.cc create mode 100644 deps/3rd/benchmark/test/complexity_test.cc create mode 100644 deps/3rd/benchmark/test/cxx03_test.cc create mode 100644 deps/3rd/benchmark/test/diagnostics_test.cc create mode 100644 deps/3rd/benchmark/test/display_aggregates_only_test.cc create mode 100644 deps/3rd/benchmark/test/donotoptimize_assembly_test.cc create mode 100644 deps/3rd/benchmark/test/donotoptimize_test.cc create mode 100644 deps/3rd/benchmark/test/filter_test.cc create mode 100644 deps/3rd/benchmark/test/fixture_test.cc create mode 100644 deps/3rd/benchmark/test/internal_threading_test.cc create mode 100644 deps/3rd/benchmark/test/link_main_test.cc create mode 100644 deps/3rd/benchmark/test/map_test.cc create mode 100644 deps/3rd/benchmark/test/memory_manager_test.cc create mode 100644 deps/3rd/benchmark/test/min_time_parse_gtest.cc create mode 100644 deps/3rd/benchmark/test/multiple_ranges_test.cc create mode 100644 deps/3rd/benchmark/test/options_test.cc create mode 100644 deps/3rd/benchmark/test/output_test.h create mode 100644 deps/3rd/benchmark/test/output_test_helper.cc create mode 100644 deps/3rd/benchmark/test/perf_counters_gtest.cc create mode 100644 deps/3rd/benchmark/test/perf_counters_test.cc create mode 100644 deps/3rd/benchmark/test/register_benchmark_test.cc create mode 100644 deps/3rd/benchmark/test/repetitions_test.cc create mode 100644 deps/3rd/benchmark/test/report_aggregates_only_test.cc create mode 100644 deps/3rd/benchmark/test/reporter_output_test.cc create mode 100644 deps/3rd/benchmark/test/skip_with_error_test.cc create mode 100644 deps/3rd/benchmark/test/spec_arg_test.cc create mode 100644 deps/3rd/benchmark/test/spec_arg_verbosity_test.cc create mode 100644 deps/3rd/benchmark/test/state_assembly_test.cc create mode 100644 deps/3rd/benchmark/test/statistics_gtest.cc create mode 100644 deps/3rd/benchmark/test/string_util_gtest.cc create mode 100644 deps/3rd/benchmark/test/templated_fixture_test.cc create mode 100644 deps/3rd/benchmark/test/time_unit_gtest.cc create mode 100644 deps/3rd/benchmark/test/user_counters_tabular_test.cc create mode 100644 deps/3rd/benchmark/test/user_counters_test.cc create mode 100644 deps/3rd/benchmark/test/user_counters_thousands_test.cc create mode 100644 deps/3rd/benchmark/tools/BUILD.bazel create mode 100755 deps/3rd/benchmark/tools/compare.py create mode 100644 deps/3rd/benchmark/tools/gbench/Inputs/test1_run1.json create mode 100644 deps/3rd/benchmark/tools/gbench/Inputs/test1_run2.json create mode 100644 deps/3rd/benchmark/tools/gbench/Inputs/test2_run.json create mode 100644 deps/3rd/benchmark/tools/gbench/Inputs/test3_run0.json create mode 100644 deps/3rd/benchmark/tools/gbench/Inputs/test3_run1.json create mode 100644 deps/3rd/benchmark/tools/gbench/Inputs/test4_run.json create mode 100644 deps/3rd/benchmark/tools/gbench/Inputs/test4_run0.json create mode 100644 deps/3rd/benchmark/tools/gbench/Inputs/test4_run1.json create mode 100644 deps/3rd/benchmark/tools/gbench/__init__.py create mode 100644 deps/3rd/benchmark/tools/gbench/report.py create mode 100644 deps/3rd/benchmark/tools/gbench/util.py create mode 100644 deps/3rd/benchmark/tools/libpfm.BUILD.bazel create mode 100644 deps/3rd/benchmark/tools/requirements.txt create mode 100755 deps/3rd/benchmark/tools/strip_asm.py create mode 100644 deps/3rd/googletest/.clang-format create mode 100644 deps/3rd/googletest/.github/ISSUE_TEMPLATE/00-bug_report.yml create mode 100644 deps/3rd/googletest/.github/ISSUE_TEMPLATE/10-feature_request.yml create mode 100644 deps/3rd/googletest/.github/ISSUE_TEMPLATE/config.yml create mode 100644 deps/3rd/googletest/.github/workflows/gtest-ci.yml create mode 100644 deps/3rd/googletest/.gitignore create mode 100644 deps/3rd/googletest/BUILD.bazel create mode 100644 deps/3rd/googletest/CMakeLists.txt create mode 100644 deps/3rd/googletest/CONTRIBUTING.md create mode 100644 deps/3rd/googletest/CONTRIBUTORS create mode 100644 deps/3rd/googletest/LICENSE create mode 100644 deps/3rd/googletest/README.md create mode 100644 deps/3rd/googletest/WORKSPACE create mode 100644 deps/3rd/googletest/ci/linux-presubmit.sh create mode 100644 deps/3rd/googletest/ci/macos-presubmit.sh create mode 100644 deps/3rd/googletest/ci/windows-presubmit.bat create mode 100644 deps/3rd/googletest/docs/_config.yml create mode 100644 deps/3rd/googletest/docs/_data/navigation.yml create mode 100644 deps/3rd/googletest/docs/_layouts/default.html create mode 100644 deps/3rd/googletest/docs/_sass/main.scss create mode 100644 deps/3rd/googletest/docs/advanced.md create mode 100644 deps/3rd/googletest/docs/assets/css/style.scss create mode 100644 deps/3rd/googletest/docs/community_created_documentation.md create mode 100644 deps/3rd/googletest/docs/faq.md create mode 100644 deps/3rd/googletest/docs/gmock_cheat_sheet.md create mode 100644 deps/3rd/googletest/docs/gmock_cook_book.md create mode 100644 deps/3rd/googletest/docs/gmock_faq.md create mode 100644 deps/3rd/googletest/docs/gmock_for_dummies.md create mode 100644 deps/3rd/googletest/docs/index.md create mode 100644 deps/3rd/googletest/docs/pkgconfig.md create mode 100644 deps/3rd/googletest/docs/platforms.md create mode 100644 deps/3rd/googletest/docs/primer.md create mode 100644 deps/3rd/googletest/docs/quickstart-bazel.md create mode 100644 deps/3rd/googletest/docs/quickstart-cmake.md create mode 100644 deps/3rd/googletest/docs/reference/actions.md create mode 100644 deps/3rd/googletest/docs/reference/assertions.md create mode 100644 deps/3rd/googletest/docs/reference/matchers.md create mode 100644 deps/3rd/googletest/docs/reference/mocking.md create mode 100644 deps/3rd/googletest/docs/reference/testing.md create mode 100644 deps/3rd/googletest/docs/samples.md create mode 100644 deps/3rd/googletest/googlemock/CMakeLists.txt create mode 100644 deps/3rd/googletest/googlemock/README.md create mode 100644 deps/3rd/googletest/googlemock/cmake/gmock.pc.in create mode 100644 deps/3rd/googletest/googlemock/cmake/gmock_main.pc.in create mode 100644 deps/3rd/googletest/googlemock/docs/README.md create mode 100644 deps/3rd/googletest/googlemock/include/gmock/gmock-actions.h create mode 100644 deps/3rd/googletest/googlemock/include/gmock/gmock-cardinalities.h create mode 100644 deps/3rd/googletest/googlemock/include/gmock/gmock-function-mocker.h create mode 100644 deps/3rd/googletest/googlemock/include/gmock/gmock-matchers.h create mode 100644 deps/3rd/googletest/googlemock/include/gmock/gmock-more-actions.h create mode 100644 deps/3rd/googletest/googlemock/include/gmock/gmock-more-matchers.h create mode 100644 deps/3rd/googletest/googlemock/include/gmock/gmock-nice-strict.h create mode 100644 deps/3rd/googletest/googlemock/include/gmock/gmock-spec-builders.h create mode 100644 deps/3rd/googletest/googlemock/include/gmock/gmock.h create mode 100644 deps/3rd/googletest/googlemock/include/gmock/internal/custom/README.md create mode 100644 deps/3rd/googletest/googlemock/include/gmock/internal/custom/gmock-generated-actions.h create mode 100644 deps/3rd/googletest/googlemock/include/gmock/internal/custom/gmock-matchers.h create mode 100644 deps/3rd/googletest/googlemock/include/gmock/internal/custom/gmock-port.h create mode 100644 deps/3rd/googletest/googlemock/include/gmock/internal/gmock-internal-utils.h create mode 100644 deps/3rd/googletest/googlemock/include/gmock/internal/gmock-port.h create mode 100644 deps/3rd/googletest/googlemock/include/gmock/internal/gmock-pp.h create mode 100644 deps/3rd/googletest/googlemock/src/gmock-all.cc create mode 100644 deps/3rd/googletest/googlemock/src/gmock-cardinalities.cc create mode 100644 deps/3rd/googletest/googlemock/src/gmock-internal-utils.cc create mode 100644 deps/3rd/googletest/googlemock/src/gmock-matchers.cc create mode 100644 deps/3rd/googletest/googlemock/src/gmock-spec-builders.cc create mode 100644 deps/3rd/googletest/googlemock/src/gmock.cc create mode 100644 deps/3rd/googletest/googlemock/src/gmock_main.cc create mode 100644 deps/3rd/googletest/googlemock/test/BUILD.bazel create mode 100644 deps/3rd/googletest/googlemock/test/gmock-actions_test.cc create mode 100644 deps/3rd/googletest/googlemock/test/gmock-cardinalities_test.cc create mode 100644 deps/3rd/googletest/googlemock/test/gmock-function-mocker_test.cc create mode 100644 deps/3rd/googletest/googlemock/test/gmock-internal-utils_test.cc create mode 100644 deps/3rd/googletest/googlemock/test/gmock-matchers-arithmetic_test.cc create mode 100644 deps/3rd/googletest/googlemock/test/gmock-matchers-comparisons_test.cc create mode 100644 deps/3rd/googletest/googlemock/test/gmock-matchers-containers_test.cc create mode 100644 deps/3rd/googletest/googlemock/test/gmock-matchers-misc_test.cc create mode 100644 deps/3rd/googletest/googlemock/test/gmock-matchers_test.h create mode 100644 deps/3rd/googletest/googlemock/test/gmock-more-actions_test.cc create mode 100644 deps/3rd/googletest/googlemock/test/gmock-nice-strict_test.cc create mode 100644 deps/3rd/googletest/googlemock/test/gmock-port_test.cc create mode 100644 deps/3rd/googletest/googlemock/test/gmock-pp-string_test.cc create mode 100644 deps/3rd/googletest/googlemock/test/gmock-pp_test.cc create mode 100644 deps/3rd/googletest/googlemock/test/gmock-spec-builders_test.cc create mode 100644 deps/3rd/googletest/googlemock/test/gmock_all_test.cc create mode 100644 deps/3rd/googletest/googlemock/test/gmock_ex_test.cc create mode 100755 deps/3rd/googletest/googlemock/test/gmock_leak_test.py create mode 100644 deps/3rd/googletest/googlemock/test/gmock_leak_test_.cc create mode 100644 deps/3rd/googletest/googlemock/test/gmock_link2_test.cc create mode 100644 deps/3rd/googletest/googlemock/test/gmock_link_test.cc create mode 100644 deps/3rd/googletest/googlemock/test/gmock_link_test.h create mode 100755 deps/3rd/googletest/googlemock/test/gmock_output_test.py create mode 100644 deps/3rd/googletest/googlemock/test/gmock_output_test_.cc create mode 100644 deps/3rd/googletest/googlemock/test/gmock_output_test_golden.txt create mode 100644 deps/3rd/googletest/googlemock/test/gmock_stress_test.cc create mode 100644 deps/3rd/googletest/googlemock/test/gmock_test.cc create mode 100755 deps/3rd/googletest/googlemock/test/gmock_test_utils.py create mode 100644 deps/3rd/googletest/googletest/CMakeLists.txt create mode 100644 deps/3rd/googletest/googletest/README.md create mode 100644 deps/3rd/googletest/googletest/cmake/Config.cmake.in create mode 100644 deps/3rd/googletest/googletest/cmake/gtest.pc.in create mode 100644 deps/3rd/googletest/googletest/cmake/gtest_main.pc.in create mode 100644 deps/3rd/googletest/googletest/cmake/internal_utils.cmake create mode 100644 deps/3rd/googletest/googletest/cmake/libgtest.la.in create mode 100644 deps/3rd/googletest/googletest/docs/README.md create mode 100644 deps/3rd/googletest/googletest/include/gtest/gtest-assertion-result.h create mode 100644 deps/3rd/googletest/googletest/include/gtest/gtest-death-test.h create mode 100644 deps/3rd/googletest/googletest/include/gtest/gtest-matchers.h create mode 100644 deps/3rd/googletest/googletest/include/gtest/gtest-message.h create mode 100644 deps/3rd/googletest/googletest/include/gtest/gtest-param-test.h create mode 100644 deps/3rd/googletest/googletest/include/gtest/gtest-printers.h create mode 100644 deps/3rd/googletest/googletest/include/gtest/gtest-spi.h create mode 100644 deps/3rd/googletest/googletest/include/gtest/gtest-test-part.h create mode 100644 deps/3rd/googletest/googletest/include/gtest/gtest-typed-test.h create mode 100644 deps/3rd/googletest/googletest/include/gtest/gtest.h create mode 100644 deps/3rd/googletest/googletest/include/gtest/gtest_pred_impl.h create mode 100644 deps/3rd/googletest/googletest/include/gtest/gtest_prod.h create mode 100644 deps/3rd/googletest/googletest/include/gtest/internal/custom/README.md create mode 100644 deps/3rd/googletest/googletest/include/gtest/internal/custom/gtest-port.h create mode 100644 deps/3rd/googletest/googletest/include/gtest/internal/custom/gtest-printers.h create mode 100644 deps/3rd/googletest/googletest/include/gtest/internal/custom/gtest.h create mode 100644 deps/3rd/googletest/googletest/include/gtest/internal/gtest-death-test-internal.h create mode 100644 deps/3rd/googletest/googletest/include/gtest/internal/gtest-filepath.h create mode 100644 deps/3rd/googletest/googletest/include/gtest/internal/gtest-internal.h create mode 100644 deps/3rd/googletest/googletest/include/gtest/internal/gtest-param-util.h create mode 100644 deps/3rd/googletest/googletest/include/gtest/internal/gtest-port-arch.h create mode 100644 deps/3rd/googletest/googletest/include/gtest/internal/gtest-port.h create mode 100644 deps/3rd/googletest/googletest/include/gtest/internal/gtest-string.h create mode 100644 deps/3rd/googletest/googletest/include/gtest/internal/gtest-type-util.h create mode 100644 deps/3rd/googletest/googletest/samples/prime_tables.h create mode 100644 deps/3rd/googletest/googletest/samples/sample1.cc create mode 100644 deps/3rd/googletest/googletest/samples/sample1.h create mode 100644 deps/3rd/googletest/googletest/samples/sample10_unittest.cc create mode 100644 deps/3rd/googletest/googletest/samples/sample1_unittest.cc create mode 100644 deps/3rd/googletest/googletest/samples/sample2.cc create mode 100644 deps/3rd/googletest/googletest/samples/sample2.h create mode 100644 deps/3rd/googletest/googletest/samples/sample2_unittest.cc create mode 100644 deps/3rd/googletest/googletest/samples/sample3-inl.h create mode 100644 deps/3rd/googletest/googletest/samples/sample3_unittest.cc create mode 100644 deps/3rd/googletest/googletest/samples/sample4.cc create mode 100644 deps/3rd/googletest/googletest/samples/sample4.h create mode 100644 deps/3rd/googletest/googletest/samples/sample4_unittest.cc create mode 100644 deps/3rd/googletest/googletest/samples/sample5_unittest.cc create mode 100644 deps/3rd/googletest/googletest/samples/sample6_unittest.cc create mode 100644 deps/3rd/googletest/googletest/samples/sample7_unittest.cc create mode 100644 deps/3rd/googletest/googletest/samples/sample8_unittest.cc create mode 100644 deps/3rd/googletest/googletest/samples/sample9_unittest.cc create mode 100644 deps/3rd/googletest/googletest/src/gtest-all.cc create mode 100644 deps/3rd/googletest/googletest/src/gtest-assertion-result.cc create mode 100644 deps/3rd/googletest/googletest/src/gtest-death-test.cc create mode 100644 deps/3rd/googletest/googletest/src/gtest-filepath.cc create mode 100644 deps/3rd/googletest/googletest/src/gtest-internal-inl.h create mode 100644 deps/3rd/googletest/googletest/src/gtest-matchers.cc create mode 100644 deps/3rd/googletest/googletest/src/gtest-port.cc create mode 100644 deps/3rd/googletest/googletest/src/gtest-printers.cc create mode 100644 deps/3rd/googletest/googletest/src/gtest-test-part.cc create mode 100644 deps/3rd/googletest/googletest/src/gtest-typed-test.cc create mode 100644 deps/3rd/googletest/googletest/src/gtest.cc create mode 100644 deps/3rd/googletest/googletest/src/gtest_main.cc create mode 100644 deps/3rd/googletest/googletest/test/BUILD.bazel create mode 100755 deps/3rd/googletest/googletest/test/googletest-break-on-failure-unittest.py create mode 100644 deps/3rd/googletest/googletest/test/googletest-break-on-failure-unittest_.cc create mode 100755 deps/3rd/googletest/googletest/test/googletest-catch-exceptions-test.py create mode 100644 deps/3rd/googletest/googletest/test/googletest-catch-exceptions-test_.cc create mode 100755 deps/3rd/googletest/googletest/test/googletest-color-test.py create mode 100644 deps/3rd/googletest/googletest/test/googletest-color-test_.cc create mode 100644 deps/3rd/googletest/googletest/test/googletest-death-test-test.cc create mode 100644 deps/3rd/googletest/googletest/test/googletest-death-test_ex_test.cc create mode 100755 deps/3rd/googletest/googletest/test/googletest-env-var-test.py create mode 100644 deps/3rd/googletest/googletest/test/googletest-env-var-test_.cc create mode 100755 deps/3rd/googletest/googletest/test/googletest-failfast-unittest.py create mode 100644 deps/3rd/googletest/googletest/test/googletest-failfast-unittest_.cc create mode 100644 deps/3rd/googletest/googletest/test/googletest-filepath-test.cc create mode 100755 deps/3rd/googletest/googletest/test/googletest-filter-unittest.py create mode 100644 deps/3rd/googletest/googletest/test/googletest-filter-unittest_.cc create mode 100644 deps/3rd/googletest/googletest/test/googletest-global-environment-unittest.py create mode 100644 deps/3rd/googletest/googletest/test/googletest-global-environment-unittest_.cc create mode 100644 deps/3rd/googletest/googletest/test/googletest-json-outfiles-test.py create mode 100644 deps/3rd/googletest/googletest/test/googletest-json-output-unittest.py create mode 100755 deps/3rd/googletest/googletest/test/googletest-list-tests-unittest.py create mode 100644 deps/3rd/googletest/googletest/test/googletest-list-tests-unittest_.cc create mode 100644 deps/3rd/googletest/googletest/test/googletest-listener-test.cc create mode 100644 deps/3rd/googletest/googletest/test/googletest-message-test.cc create mode 100644 deps/3rd/googletest/googletest/test/googletest-options-test.cc create mode 100644 deps/3rd/googletest/googletest/test/googletest-output-test-golden-lin.txt create mode 100755 deps/3rd/googletest/googletest/test/googletest-output-test.py create mode 100644 deps/3rd/googletest/googletest/test/googletest-output-test_.cc create mode 100644 deps/3rd/googletest/googletest/test/googletest-param-test-invalid-name1-test.py create mode 100644 deps/3rd/googletest/googletest/test/googletest-param-test-invalid-name1-test_.cc create mode 100644 deps/3rd/googletest/googletest/test/googletest-param-test-invalid-name2-test.py create mode 100644 deps/3rd/googletest/googletest/test/googletest-param-test-invalid-name2-test_.cc create mode 100644 deps/3rd/googletest/googletest/test/googletest-param-test-test.cc create mode 100644 deps/3rd/googletest/googletest/test/googletest-param-test-test.h create mode 100644 deps/3rd/googletest/googletest/test/googletest-param-test2-test.cc create mode 100644 deps/3rd/googletest/googletest/test/googletest-port-test.cc create mode 100644 deps/3rd/googletest/googletest/test/googletest-printers-test.cc create mode 100755 deps/3rd/googletest/googletest/test/googletest-setuptestsuite-test.py create mode 100644 deps/3rd/googletest/googletest/test/googletest-setuptestsuite-test_.cc create mode 100755 deps/3rd/googletest/googletest/test/googletest-shuffle-test.py create mode 100644 deps/3rd/googletest/googletest/test/googletest-shuffle-test_.cc create mode 100644 deps/3rd/googletest/googletest/test/googletest-test-part-test.cc create mode 100755 deps/3rd/googletest/googletest/test/googletest-throw-on-failure-test.py create mode 100644 deps/3rd/googletest/googletest/test/googletest-throw-on-failure-test_.cc create mode 100755 deps/3rd/googletest/googletest/test/googletest-uninitialized-test.py create mode 100644 deps/3rd/googletest/googletest/test/googletest-uninitialized-test_.cc create mode 100644 deps/3rd/googletest/googletest/test/gtest-typed-test2_test.cc create mode 100644 deps/3rd/googletest/googletest/test/gtest-typed-test_test.cc create mode 100644 deps/3rd/googletest/googletest/test/gtest-typed-test_test.h create mode 100644 deps/3rd/googletest/googletest/test/gtest-unittest-api_test.cc create mode 100644 deps/3rd/googletest/googletest/test/gtest_all_test.cc create mode 100644 deps/3rd/googletest/googletest/test/gtest_assert_by_exception_test.cc create mode 100644 deps/3rd/googletest/googletest/test/gtest_dirs_test.cc create mode 100644 deps/3rd/googletest/googletest/test/gtest_environment_test.cc create mode 100755 deps/3rd/googletest/googletest/test/gtest_help_test.py create mode 100644 deps/3rd/googletest/googletest/test/gtest_help_test_.cc create mode 100644 deps/3rd/googletest/googletest/test/gtest_json_test_utils.py create mode 100644 deps/3rd/googletest/googletest/test/gtest_list_output_unittest.py create mode 100644 deps/3rd/googletest/googletest/test/gtest_list_output_unittest_.cc create mode 100644 deps/3rd/googletest/googletest/test/gtest_main_unittest.cc create mode 100644 deps/3rd/googletest/googletest/test/gtest_no_test_unittest.cc create mode 100644 deps/3rd/googletest/googletest/test/gtest_pred_impl_unittest.cc create mode 100644 deps/3rd/googletest/googletest/test/gtest_premature_exit_test.cc create mode 100644 deps/3rd/googletest/googletest/test/gtest_prod_test.cc create mode 100644 deps/3rd/googletest/googletest/test/gtest_repeat_test.cc create mode 100755 deps/3rd/googletest/googletest/test/gtest_skip_check_output_test.py create mode 100755 deps/3rd/googletest/googletest/test/gtest_skip_environment_check_output_test.py create mode 100644 deps/3rd/googletest/googletest/test/gtest_skip_in_environment_setup_test.cc create mode 100644 deps/3rd/googletest/googletest/test/gtest_skip_test.cc create mode 100644 deps/3rd/googletest/googletest/test/gtest_sole_header_test.cc create mode 100644 deps/3rd/googletest/googletest/test/gtest_stress_test.cc create mode 100644 deps/3rd/googletest/googletest/test/gtest_test_macro_stack_footprint_test.cc create mode 100755 deps/3rd/googletest/googletest/test/gtest_test_utils.py create mode 100755 deps/3rd/googletest/googletest/test/gtest_testbridge_test.py create mode 100644 deps/3rd/googletest/googletest/test/gtest_testbridge_test_.cc create mode 100644 deps/3rd/googletest/googletest/test/gtest_throw_on_failure_ex_test.cc create mode 100644 deps/3rd/googletest/googletest/test/gtest_unittest.cc create mode 100644 deps/3rd/googletest/googletest/test/gtest_xml_outfile1_test_.cc create mode 100644 deps/3rd/googletest/googletest/test/gtest_xml_outfile2_test_.cc create mode 100755 deps/3rd/googletest/googletest/test/gtest_xml_outfiles_test.py create mode 100755 deps/3rd/googletest/googletest/test/gtest_xml_output_unittest.py create mode 100644 deps/3rd/googletest/googletest/test/gtest_xml_output_unittest_.cc create mode 100755 deps/3rd/googletest/googletest/test/gtest_xml_test_utils.py create mode 100644 deps/3rd/googletest/googletest/test/production.cc create mode 100644 deps/3rd/googletest/googletest/test/production.h create mode 100644 deps/3rd/googletest/googletest_deps.bzl create mode 100644 deps/3rd/jsoncpp/.clang-format create mode 100644 deps/3rd/jsoncpp/.clang-tidy create mode 100644 deps/3rd/jsoncpp/.gitattributes create mode 100644 deps/3rd/jsoncpp/.github/ISSUE_TEMPLATE/bug_report.md create mode 100644 deps/3rd/jsoncpp/.github/ISSUE_TEMPLATE/feature_request.md create mode 100644 deps/3rd/jsoncpp/.gitignore create mode 100644 deps/3rd/jsoncpp/.travis.yml create mode 100755 deps/3rd/jsoncpp/.travis_scripts/cmake_builder.sh create mode 100755 deps/3rd/jsoncpp/.travis_scripts/meson_builder.sh create mode 100755 deps/3rd/jsoncpp/.travis_scripts/run-clang-format.py create mode 100755 deps/3rd/jsoncpp/.travis_scripts/run-clang-format.sh create mode 100644 deps/3rd/jsoncpp/.travis_scripts/travis.before_install.linux.sh create mode 100644 deps/3rd/jsoncpp/.travis_scripts/travis.before_install.osx.sh create mode 100644 deps/3rd/jsoncpp/.travis_scripts/travis.install.linux.sh create mode 100644 deps/3rd/jsoncpp/.travis_scripts/travis.install.osx.sh create mode 100644 deps/3rd/jsoncpp/AUTHORS create mode 100644 deps/3rd/jsoncpp/BUILD.bazel create mode 100644 deps/3rd/jsoncpp/CMakeLists.txt create mode 100644 deps/3rd/jsoncpp/CONTRIBUTING.md create mode 100644 deps/3rd/jsoncpp/CTestConfig.cmake create mode 100644 deps/3rd/jsoncpp/LICENSE create mode 100644 deps/3rd/jsoncpp/README.md create mode 100755 deps/3rd/jsoncpp/amalgamate.py create mode 100644 deps/3rd/jsoncpp/appveyor.yml create mode 100644 deps/3rd/jsoncpp/cmake/JoinPaths.cmake create mode 100644 deps/3rd/jsoncpp/dev.makefile create mode 100644 deps/3rd/jsoncpp/devtools/__init__.py create mode 100644 deps/3rd/jsoncpp/devtools/agent_vmw7.json create mode 100644 deps/3rd/jsoncpp/devtools/agent_vmxp.json create mode 100644 deps/3rd/jsoncpp/devtools/antglob.py create mode 100644 deps/3rd/jsoncpp/devtools/batchbuild.py create mode 100644 deps/3rd/jsoncpp/devtools/fixeol.py create mode 100644 deps/3rd/jsoncpp/devtools/licenseupdater.py create mode 100644 deps/3rd/jsoncpp/devtools/tarball.py create mode 100644 deps/3rd/jsoncpp/doc/doxyfile.in create mode 100644 deps/3rd/jsoncpp/doc/footer.html create mode 100644 deps/3rd/jsoncpp/doc/header.html create mode 100644 deps/3rd/jsoncpp/doc/jsoncpp.dox create mode 100644 deps/3rd/jsoncpp/doc/readme.txt create mode 100644 deps/3rd/jsoncpp/doc/roadmap.dox create mode 100644 deps/3rd/jsoncpp/doc/web_doxyfile.in create mode 100644 deps/3rd/jsoncpp/doxybuild.py create mode 100644 deps/3rd/jsoncpp/example/CMakeLists.txt create mode 100644 deps/3rd/jsoncpp/example/README.md create mode 100644 deps/3rd/jsoncpp/example/readFromStream/errorFormat.json create mode 100644 deps/3rd/jsoncpp/example/readFromStream/readFromStream.cpp create mode 100644 deps/3rd/jsoncpp/example/readFromStream/withComment.json create mode 100644 deps/3rd/jsoncpp/example/readFromString/readFromString.cpp create mode 100644 deps/3rd/jsoncpp/example/streamWrite/streamWrite.cpp create mode 100644 deps/3rd/jsoncpp/example/stringWrite/stringWrite.cpp create mode 100644 deps/3rd/jsoncpp/get_version.pl create mode 100644 deps/3rd/jsoncpp/include/CMakeLists.txt create mode 100644 deps/3rd/jsoncpp/include/PreventInBuildInstalls.cmake create mode 100644 deps/3rd/jsoncpp/include/PreventInSourceBuilds.cmake create mode 100644 deps/3rd/jsoncpp/include/json/allocator.h create mode 100644 deps/3rd/jsoncpp/include/json/assertions.h create mode 100644 deps/3rd/jsoncpp/include/json/config.h create mode 100644 deps/3rd/jsoncpp/include/json/forwards.h create mode 100644 deps/3rd/jsoncpp/include/json/json.h create mode 100644 deps/3rd/jsoncpp/include/json/json_features.h create mode 100644 deps/3rd/jsoncpp/include/json/reader.h create mode 100644 deps/3rd/jsoncpp/include/json/value.h create mode 100644 deps/3rd/jsoncpp/include/json/version.h create mode 100644 deps/3rd/jsoncpp/include/json/writer.h create mode 100644 deps/3rd/jsoncpp/jsoncpp-namespaced-targets.cmake create mode 100644 deps/3rd/jsoncpp/jsoncppConfig.cmake.in create mode 100644 deps/3rd/jsoncpp/meson.build create mode 100644 deps/3rd/jsoncpp/meson_options.txt create mode 100644 deps/3rd/jsoncpp/pkg-config/jsoncpp.pc.in create mode 100755 deps/3rd/jsoncpp/reformat.sh create mode 100644 deps/3rd/jsoncpp/src/CMakeLists.txt create mode 100644 deps/3rd/jsoncpp/src/jsontestrunner/CMakeLists.txt create mode 100644 deps/3rd/jsoncpp/src/jsontestrunner/main.cpp create mode 100644 deps/3rd/jsoncpp/src/lib_json/CMakeLists.txt create mode 100644 deps/3rd/jsoncpp/src/lib_json/json_reader.cpp create mode 100644 deps/3rd/jsoncpp/src/lib_json/json_tool.h create mode 100644 deps/3rd/jsoncpp/src/lib_json/json_value.cpp create mode 100644 deps/3rd/jsoncpp/src/lib_json/json_valueiterator.inl create mode 100644 deps/3rd/jsoncpp/src/lib_json/json_writer.cpp create mode 100644 deps/3rd/jsoncpp/src/test_lib_json/CMakeLists.txt create mode 100644 deps/3rd/jsoncpp/src/test_lib_json/fuzz.cpp create mode 100644 deps/3rd/jsoncpp/src/test_lib_json/fuzz.dict create mode 100644 deps/3rd/jsoncpp/src/test_lib_json/fuzz.h create mode 100644 deps/3rd/jsoncpp/src/test_lib_json/jsontest.cpp create mode 100644 deps/3rd/jsoncpp/src/test_lib_json/jsontest.h create mode 100644 deps/3rd/jsoncpp/src/test_lib_json/main.cpp create mode 100644 deps/3rd/jsoncpp/test/cleantests.py create mode 100644 deps/3rd/jsoncpp/test/data/fail_invalid_quote.json create mode 100644 deps/3rd/jsoncpp/test/data/fail_test_array_01.json create mode 100644 deps/3rd/jsoncpp/test/data/fail_test_array_02.json create mode 100644 deps/3rd/jsoncpp/test/data/fail_test_object_01.json create mode 100644 deps/3rd/jsoncpp/test/data/fail_test_stack_limit.json create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_array_01.expected create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_array_01.json create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_array_02.expected create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_array_02.json create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_array_03.expected create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_array_03.json create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_array_04.expected create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_array_04.json create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_array_05.expected create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_array_05.json create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_array_06.expected create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_array_06.json create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_array_07.expected create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_array_07.json create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_basic_01.expected create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_basic_01.json create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_basic_02.expected create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_basic_02.json create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_basic_03.expected create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_basic_03.json create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_basic_04.expected create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_basic_04.json create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_basic_05.expected create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_basic_05.json create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_basic_06.expected create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_basic_06.json create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_basic_07.expected create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_basic_07.json create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_basic_08.expected create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_basic_08.json create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_basic_09.expected create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_basic_09.json create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_comment_00.expected create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_comment_00.json create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_comment_01.expected create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_comment_01.json create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_comment_02.expected create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_comment_02.json create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_complex_01.expected create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_complex_01.json create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_integer_01.expected create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_integer_01.json create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_integer_02.expected create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_integer_02.json create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_integer_03.expected create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_integer_03.json create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_integer_04.expected create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_integer_04.json create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_integer_05.expected create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_integer_05.json create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_integer_06_64bits.expected create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_integer_06_64bits.json create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_integer_07_64bits.expected create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_integer_07_64bits.json create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_integer_08_64bits.expected create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_integer_08_64bits.json create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_large_01.expected create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_large_01.json create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_object_01.expected create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_object_01.json create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_object_02.expected create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_object_02.json create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_object_03.expected create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_object_03.json create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_object_04.expected create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_object_04.json create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_preserve_comment_01.expected create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_preserve_comment_01.json create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_real_01.expected create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_real_01.json create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_real_02.expected create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_real_02.json create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_real_03.expected create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_real_03.json create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_real_04.expected create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_real_04.json create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_real_05.expected create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_real_05.json create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_real_06.expected create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_real_06.json create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_real_07.expected create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_real_07.json create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_real_08.expected create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_real_08.json create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_real_09.expected create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_real_09.json create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_real_10.expected create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_real_10.json create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_real_11.expected create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_real_11.json create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_real_12.expected create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_real_12.json create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_real_13.expected create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_real_13.json create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_string_01.expected create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_string_01.json create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_string_02.expected create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_string_02.json create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_string_03.expected create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_string_03.json create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_string_04.expected create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_string_04.json create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_string_05.expected create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_string_05.json create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_string_unicode_01.expected create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_string_unicode_01.json create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_string_unicode_02.expected create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_string_unicode_02.json create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_string_unicode_03.expected create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_string_unicode_03.json create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_string_unicode_04.expected create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_string_unicode_04.json create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_string_unicode_05.expected create mode 100644 deps/3rd/jsoncpp/test/data/legacy_test_string_unicode_05.json create mode 100644 deps/3rd/jsoncpp/test/data/test_array_08.expected create mode 100644 deps/3rd/jsoncpp/test/data/test_array_08.json create mode 100644 deps/3rd/jsoncpp/test/data/test_object_05.expected create mode 100644 deps/3rd/jsoncpp/test/data/test_object_05.json create mode 100644 deps/3rd/jsoncpp/test/generate_expected.py create mode 100644 deps/3rd/jsoncpp/test/jsonchecker/fail1.json create mode 100644 deps/3rd/jsoncpp/test/jsonchecker/fail10.json create mode 100644 deps/3rd/jsoncpp/test/jsonchecker/fail11.json create mode 100644 deps/3rd/jsoncpp/test/jsonchecker/fail12.json create mode 100644 deps/3rd/jsoncpp/test/jsonchecker/fail13.json create mode 100644 deps/3rd/jsoncpp/test/jsonchecker/fail14.json create mode 100644 deps/3rd/jsoncpp/test/jsonchecker/fail15.json create mode 100644 deps/3rd/jsoncpp/test/jsonchecker/fail16.json create mode 100644 deps/3rd/jsoncpp/test/jsonchecker/fail17.json create mode 100644 deps/3rd/jsoncpp/test/jsonchecker/fail18.json create mode 100644 deps/3rd/jsoncpp/test/jsonchecker/fail19.json create mode 100644 deps/3rd/jsoncpp/test/jsonchecker/fail2.json create mode 100644 deps/3rd/jsoncpp/test/jsonchecker/fail20.json create mode 100644 deps/3rd/jsoncpp/test/jsonchecker/fail21.json create mode 100644 deps/3rd/jsoncpp/test/jsonchecker/fail22.json create mode 100644 deps/3rd/jsoncpp/test/jsonchecker/fail23.json create mode 100644 deps/3rd/jsoncpp/test/jsonchecker/fail24.json create mode 100644 deps/3rd/jsoncpp/test/jsonchecker/fail25.json create mode 100644 deps/3rd/jsoncpp/test/jsonchecker/fail26.json create mode 100644 deps/3rd/jsoncpp/test/jsonchecker/fail27.json create mode 100644 deps/3rd/jsoncpp/test/jsonchecker/fail28.json create mode 100644 deps/3rd/jsoncpp/test/jsonchecker/fail29.json create mode 100644 deps/3rd/jsoncpp/test/jsonchecker/fail3.json create mode 100644 deps/3rd/jsoncpp/test/jsonchecker/fail30.json create mode 100644 deps/3rd/jsoncpp/test/jsonchecker/fail31.json create mode 100644 deps/3rd/jsoncpp/test/jsonchecker/fail32.json create mode 100644 deps/3rd/jsoncpp/test/jsonchecker/fail33.json create mode 100644 deps/3rd/jsoncpp/test/jsonchecker/fail4.json create mode 100644 deps/3rd/jsoncpp/test/jsonchecker/fail5.json create mode 100644 deps/3rd/jsoncpp/test/jsonchecker/fail6.json create mode 100644 deps/3rd/jsoncpp/test/jsonchecker/fail7.json create mode 100644 deps/3rd/jsoncpp/test/jsonchecker/fail8.json create mode 100644 deps/3rd/jsoncpp/test/jsonchecker/fail9.json create mode 100644 deps/3rd/jsoncpp/test/jsonchecker/pass1.json create mode 100644 deps/3rd/jsoncpp/test/jsonchecker/pass2.json create mode 100644 deps/3rd/jsoncpp/test/jsonchecker/pass3.json create mode 100644 deps/3rd/jsoncpp/test/jsonchecker/readme.txt create mode 100644 deps/3rd/jsoncpp/test/pyjsontestrunner.py create mode 100644 deps/3rd/jsoncpp/test/runjsontests.py create mode 100644 deps/3rd/jsoncpp/test/rununittests.py create mode 100644 deps/3rd/jsoncpp/version.in create mode 100644 deps/3rd/libevent/.clang-format create mode 100644 deps/3rd/libevent/.github/workflows/abi.yml create mode 100644 deps/3rd/libevent/.github/workflows/linux.yml create mode 100644 deps/3rd/libevent/.github/workflows/macos.yml create mode 100644 deps/3rd/libevent/.github/workflows/mingw.yml create mode 100644 deps/3rd/libevent/.github/workflows/windows.yml create mode 100644 deps/3rd/libevent/.gitignore create mode 100644 deps/3rd/libevent/.mailmap create mode 100644 deps/3rd/libevent/.uncrustify create mode 100644 deps/3rd/libevent/CMakeLists.txt create mode 100644 deps/3rd/libevent/CONTRIBUTING.md create mode 100644 deps/3rd/libevent/ChangeLog create mode 100644 deps/3rd/libevent/ChangeLog-1.4 create mode 100644 deps/3rd/libevent/ChangeLog-2.0 create mode 100644 deps/3rd/libevent/Doxyfile create mode 100644 deps/3rd/libevent/LICENSE create mode 100644 deps/3rd/libevent/Makefile.am create mode 100644 deps/3rd/libevent/Makefile.nmake create mode 100644 deps/3rd/libevent/README.md create mode 100644 deps/3rd/libevent/Vagrantfile create mode 100644 deps/3rd/libevent/WIN32-Code/getopt.c create mode 100644 deps/3rd/libevent/WIN32-Code/getopt.h create mode 100644 deps/3rd/libevent/WIN32-Code/getopt_long.c create mode 100644 deps/3rd/libevent/WIN32-Code/nmake/evconfig-private.h create mode 100644 deps/3rd/libevent/WIN32-Code/nmake/event2/event-config.h create mode 100644 deps/3rd/libevent/WIN32-Code/tree.h create mode 100644 deps/3rd/libevent/arc4random.c create mode 100755 deps/3rd/libevent/autogen.sh create mode 100644 deps/3rd/libevent/buffer.c create mode 100644 deps/3rd/libevent/buffer_iocp.c create mode 100644 deps/3rd/libevent/bufferevent-internal.h create mode 100644 deps/3rd/libevent/bufferevent.c create mode 100644 deps/3rd/libevent/bufferevent_async.c create mode 100644 deps/3rd/libevent/bufferevent_filter.c create mode 100644 deps/3rd/libevent/bufferevent_openssl.c create mode 100644 deps/3rd/libevent/bufferevent_pair.c create mode 100644 deps/3rd/libevent/bufferevent_ratelim.c create mode 100644 deps/3rd/libevent/bufferevent_sock.c create mode 100644 deps/3rd/libevent/changelist-internal.h create mode 100755 deps/3rd/libevent/checkpatch.sh create mode 100644 deps/3rd/libevent/cmake/AddCompilerFlags.cmake create mode 100644 deps/3rd/libevent/cmake/AddEventLibrary.cmake create mode 100644 deps/3rd/libevent/cmake/COPYING-CMAKE-SCRIPTS create mode 100644 deps/3rd/libevent/cmake/CheckConstExists.cmake create mode 100644 deps/3rd/libevent/cmake/CheckFileOffsetBits.c create mode 100644 deps/3rd/libevent/cmake/CheckFileOffsetBits.cmake create mode 100644 deps/3rd/libevent/cmake/CheckFunctionKeywords.cmake create mode 100644 deps/3rd/libevent/cmake/CheckPrototypeDefinition.c.in create mode 100644 deps/3rd/libevent/cmake/CheckPrototypeDefinition.cmake create mode 100644 deps/3rd/libevent/cmake/CheckWorkingKqueue.cmake create mode 100644 deps/3rd/libevent/cmake/CodeCoverage.cmake create mode 100644 deps/3rd/libevent/cmake/Copyright.txt create mode 100644 deps/3rd/libevent/cmake/LibeventConfig.cmake.in create mode 100644 deps/3rd/libevent/cmake/LibeventConfigVersion.cmake.in create mode 100644 deps/3rd/libevent/cmake/Macros.cmake create mode 100644 deps/3rd/libevent/cmake/Uninstall.cmake.in create mode 100644 deps/3rd/libevent/cmake/UseDoxygen.cmake create mode 100644 deps/3rd/libevent/cmake/VersionViaGit.cmake create mode 100644 deps/3rd/libevent/compat/sys/queue.h create mode 100644 deps/3rd/libevent/configure.ac create mode 100644 deps/3rd/libevent/defer-internal.h create mode 100644 deps/3rd/libevent/devpoll.c create mode 100644 deps/3rd/libevent/doxygen.am create mode 100644 deps/3rd/libevent/epoll.c create mode 100644 deps/3rd/libevent/epoll_sub.c create mode 100644 deps/3rd/libevent/epolltable-internal.h create mode 100644 deps/3rd/libevent/evbuffer-internal.h create mode 100644 deps/3rd/libevent/evconfig-private.h.cmake create mode 100644 deps/3rd/libevent/evconfig-private.h.in create mode 100644 deps/3rd/libevent/evdns.3 create mode 100644 deps/3rd/libevent/evdns.c create mode 100644 deps/3rd/libevent/event-config.h.cmake create mode 100644 deps/3rd/libevent/event-internal.h create mode 100644 deps/3rd/libevent/event.3 create mode 100644 deps/3rd/libevent/event.c create mode 100644 deps/3rd/libevent/event_iocp.c create mode 100755 deps/3rd/libevent/event_rpcgen.py create mode 100644 deps/3rd/libevent/event_tagging.c create mode 100644 deps/3rd/libevent/evmap-internal.h create mode 100644 deps/3rd/libevent/evmap.c create mode 100644 deps/3rd/libevent/evport.c create mode 100644 deps/3rd/libevent/evrpc-internal.h create mode 100644 deps/3rd/libevent/evrpc.c create mode 100644 deps/3rd/libevent/evsignal-internal.h create mode 100644 deps/3rd/libevent/evthread-internal.h create mode 100644 deps/3rd/libevent/evthread.c create mode 100644 deps/3rd/libevent/evthread_pthread.c create mode 100644 deps/3rd/libevent/evthread_win32.c create mode 100644 deps/3rd/libevent/evutil.c create mode 100644 deps/3rd/libevent/evutil_rand.c create mode 100644 deps/3rd/libevent/evutil_time.c create mode 100644 deps/3rd/libevent/extra/abi-check/README.md create mode 100755 deps/3rd/libevent/extra/abi-check/abi_check.sh create mode 100644 deps/3rd/libevent/extra/abi-check/libevent.json create mode 100644 deps/3rd/libevent/extra/lsan.supp create mode 100644 deps/3rd/libevent/extra/tsan.supp create mode 100644 deps/3rd/libevent/ht-internal.h create mode 100644 deps/3rd/libevent/http-internal.h create mode 100644 deps/3rd/libevent/http.c create mode 100644 deps/3rd/libevent/include/evdns.h create mode 100644 deps/3rd/libevent/include/event.h create mode 100644 deps/3rd/libevent/include/event2/buffer.h create mode 100644 deps/3rd/libevent/include/event2/buffer_compat.h create mode 100644 deps/3rd/libevent/include/event2/bufferevent.h create mode 100644 deps/3rd/libevent/include/event2/bufferevent_compat.h create mode 100644 deps/3rd/libevent/include/event2/bufferevent_ssl.h create mode 100644 deps/3rd/libevent/include/event2/bufferevent_struct.h create mode 100644 deps/3rd/libevent/include/event2/dns.h create mode 100644 deps/3rd/libevent/include/event2/dns_compat.h create mode 100644 deps/3rd/libevent/include/event2/dns_struct.h create mode 100644 deps/3rd/libevent/include/event2/event.h create mode 100644 deps/3rd/libevent/include/event2/event_compat.h create mode 100644 deps/3rd/libevent/include/event2/event_struct.h create mode 100644 deps/3rd/libevent/include/event2/http.h create mode 100644 deps/3rd/libevent/include/event2/http_compat.h create mode 100644 deps/3rd/libevent/include/event2/http_struct.h create mode 100644 deps/3rd/libevent/include/event2/keyvalq_struct.h create mode 100644 deps/3rd/libevent/include/event2/listener.h create mode 100644 deps/3rd/libevent/include/event2/rpc.h create mode 100644 deps/3rd/libevent/include/event2/rpc_compat.h create mode 100644 deps/3rd/libevent/include/event2/rpc_struct.h create mode 100644 deps/3rd/libevent/include/event2/tag.h create mode 100644 deps/3rd/libevent/include/event2/tag_compat.h create mode 100644 deps/3rd/libevent/include/event2/thread.h create mode 100644 deps/3rd/libevent/include/event2/util.h create mode 100644 deps/3rd/libevent/include/event2/visibility.h create mode 100644 deps/3rd/libevent/include/evhttp.h create mode 100644 deps/3rd/libevent/include/evrpc.h create mode 100644 deps/3rd/libevent/include/evutil.h create mode 100644 deps/3rd/libevent/include/include.am create mode 100644 deps/3rd/libevent/iocp-internal.h create mode 100644 deps/3rd/libevent/ipv6-internal.h create mode 100644 deps/3rd/libevent/kqueue-internal.h create mode 100644 deps/3rd/libevent/kqueue.c create mode 100644 deps/3rd/libevent/libevent.pc.in create mode 100644 deps/3rd/libevent/libevent_core.pc.in create mode 100644 deps/3rd/libevent/libevent_extra.pc.in create mode 100644 deps/3rd/libevent/libevent_openssl.pc.in create mode 100644 deps/3rd/libevent/libevent_pthreads.pc.in create mode 100644 deps/3rd/libevent/listener.c create mode 100644 deps/3rd/libevent/log-internal.h create mode 100644 deps/3rd/libevent/log.c create mode 100644 deps/3rd/libevent/m4/ac_backport_259_ssizet.m4 create mode 100644 deps/3rd/libevent/m4/acx_pthread.m4 create mode 100644 deps/3rd/libevent/m4/ax_check_funcs_ex.m4 create mode 100644 deps/3rd/libevent/m4/ax_prog_doxygen.m4 create mode 100644 deps/3rd/libevent/m4/libevent_openssl.m4 create mode 100644 deps/3rd/libevent/m4/ntp_pkg_config.m4 create mode 100644 deps/3rd/libevent/make-event-config.sed create mode 100755 deps/3rd/libevent/make_epoll_table.py create mode 100644 deps/3rd/libevent/minheap-internal.h create mode 100644 deps/3rd/libevent/mm-internal.h create mode 100644 deps/3rd/libevent/openssl-compat.h create mode 100644 deps/3rd/libevent/poll.c create mode 100644 deps/3rd/libevent/ratelim-internal.h create mode 100644 deps/3rd/libevent/sample/dns-example.c create mode 100644 deps/3rd/libevent/sample/event-read-fifo.c create mode 100644 deps/3rd/libevent/sample/hello-world.c create mode 100644 deps/3rd/libevent/sample/hostcheck.c create mode 100644 deps/3rd/libevent/sample/hostcheck.h create mode 100644 deps/3rd/libevent/sample/http-connect.c create mode 100644 deps/3rd/libevent/sample/http-server.c create mode 100644 deps/3rd/libevent/sample/https-client.c create mode 100644 deps/3rd/libevent/sample/include.am create mode 100644 deps/3rd/libevent/sample/le-proxy.c create mode 100644 deps/3rd/libevent/sample/openssl_hostname_validation.c create mode 100644 deps/3rd/libevent/sample/openssl_hostname_validation.h create mode 100644 deps/3rd/libevent/sample/signal-test.c create mode 100644 deps/3rd/libevent/sample/time-test.c create mode 100644 deps/3rd/libevent/select.c create mode 100644 deps/3rd/libevent/signal.c create mode 100644 deps/3rd/libevent/strlcpy-internal.h create mode 100644 deps/3rd/libevent/strlcpy.c create mode 100644 deps/3rd/libevent/test-export/CMakeLists.txt create mode 100644 deps/3rd/libevent/test-export/test-export.c create mode 100644 deps/3rd/libevent/test-export/test-export.py create mode 100644 deps/3rd/libevent/test/Makefile.nmake create mode 100644 deps/3rd/libevent/test/bench.c create mode 100644 deps/3rd/libevent/test/bench_cascade.c create mode 100644 deps/3rd/libevent/test/bench_http.c create mode 100644 deps/3rd/libevent/test/bench_httpclient.c create mode 100755 deps/3rd/libevent/test/check-dumpevents.py create mode 100644 deps/3rd/libevent/test/include.am create mode 100644 deps/3rd/libevent/test/print-winsock-errors.c create mode 100644 deps/3rd/libevent/test/regress.c create mode 100644 deps/3rd/libevent/test/regress.h create mode 100644 deps/3rd/libevent/test/regress.rpc create mode 100644 deps/3rd/libevent/test/regress_buffer.c create mode 100644 deps/3rd/libevent/test/regress_bufferevent.c create mode 100644 deps/3rd/libevent/test/regress_dns.c create mode 100644 deps/3rd/libevent/test/regress_et.c create mode 100644 deps/3rd/libevent/test/regress_finalize.c create mode 100644 deps/3rd/libevent/test/regress_http.c create mode 100644 deps/3rd/libevent/test/regress_iocp.c create mode 100644 deps/3rd/libevent/test/regress_listener.c create mode 100644 deps/3rd/libevent/test/regress_main.c create mode 100644 deps/3rd/libevent/test/regress_minheap.c create mode 100644 deps/3rd/libevent/test/regress_rpc.c create mode 100644 deps/3rd/libevent/test/regress_ssl.c create mode 100644 deps/3rd/libevent/test/regress_testutils.c create mode 100644 deps/3rd/libevent/test/regress_testutils.h create mode 100644 deps/3rd/libevent/test/regress_thread.c create mode 100644 deps/3rd/libevent/test/regress_thread.h create mode 100644 deps/3rd/libevent/test/regress_util.c create mode 100644 deps/3rd/libevent/test/regress_zlib.c create mode 100755 deps/3rd/libevent/test/rpcgen_wrapper.sh create mode 100644 deps/3rd/libevent/test/test-changelist.c create mode 100644 deps/3rd/libevent/test/test-closed.c create mode 100644 deps/3rd/libevent/test/test-dumpevents.c create mode 100644 deps/3rd/libevent/test/test-eof.c create mode 100644 deps/3rd/libevent/test/test-fdleak.c create mode 100644 deps/3rd/libevent/test/test-init.c create mode 100644 deps/3rd/libevent/test/test-ratelim.c create mode 100755 deps/3rd/libevent/test/test-ratelim.sh create mode 100644 deps/3rd/libevent/test/test-time.c create mode 100644 deps/3rd/libevent/test/test-weof.c create mode 100755 deps/3rd/libevent/test/test.sh create mode 100644 deps/3rd/libevent/test/tinytest.c create mode 100644 deps/3rd/libevent/test/tinytest.h create mode 100644 deps/3rd/libevent/test/tinytest_demo.c create mode 100644 deps/3rd/libevent/test/tinytest_local.h create mode 100644 deps/3rd/libevent/test/tinytest_macros.h create mode 100644 deps/3rd/libevent/time-internal.h create mode 100644 deps/3rd/libevent/util-internal.h create mode 100644 deps/3rd/libevent/whatsnew-2.0.txt create mode 100644 deps/3rd/libevent/whatsnew-2.1.txt create mode 100644 deps/3rd/libevent/win32select.c create mode 100644 deps/CMakeLists.txt create mode 100644 deps/common/CMakeLists.txt create mode 100644 deps/common/conf/ini.cpp create mode 100644 deps/common/conf/ini.h create mode 100644 deps/common/defs.h create mode 100644 deps/common/io/io.cpp create mode 100644 deps/common/io/io.h create mode 100644 deps/common/io/roll_select_dir.cpp create mode 100644 deps/common/io/roll_select_dir.h create mode 100644 deps/common/io/select_dir.h create mode 100644 deps/common/lang/bitmap.cpp create mode 100644 deps/common/lang/bitmap.h create mode 100644 deps/common/lang/comparator.cpp create mode 100644 deps/common/lang/comparator.h create mode 100644 deps/common/lang/defer.h create mode 100644 deps/common/lang/lower_bound.h create mode 100644 deps/common/lang/lru_cache.h create mode 100644 deps/common/lang/mutex.cpp create mode 100644 deps/common/lang/mutex.h create mode 100644 deps/common/lang/serializable.h create mode 100644 deps/common/lang/string.cpp create mode 100644 deps/common/lang/string.h create mode 100644 deps/common/log/log.cpp create mode 100644 deps/common/log/log.h create mode 100644 deps/common/math/md5.cpp create mode 100644 deps/common/math/md5.h create mode 100644 deps/common/math/random_generator.cpp create mode 100644 deps/common/math/random_generator.h create mode 100644 deps/common/math/regex.cpp create mode 100644 deps/common/math/regex.h create mode 100644 deps/common/metrics/console_reporter.cpp create mode 100644 deps/common/metrics/console_reporter.h create mode 100644 deps/common/metrics/histogram_snapshot.cpp create mode 100644 deps/common/metrics/histogram_snapshot.h create mode 100644 deps/common/metrics/log_reporter.cpp create mode 100644 deps/common/metrics/log_reporter.h create mode 100644 deps/common/metrics/metric.h create mode 100644 deps/common/metrics/metrics.cpp create mode 100644 deps/common/metrics/metrics.h create mode 100644 deps/common/metrics/metrics_registry.cpp create mode 100644 deps/common/metrics/metrics_registry.h create mode 100644 deps/common/metrics/reporter.cpp create mode 100644 deps/common/metrics/reporter.h create mode 100644 deps/common/metrics/reservoir.cpp create mode 100644 deps/common/metrics/reservoir.h create mode 100644 deps/common/metrics/sampler.cpp create mode 100644 deps/common/metrics/sampler.h create mode 100644 deps/common/metrics/snapshot.h create mode 100644 deps/common/metrics/timer_snapshot.cpp create mode 100644 deps/common/metrics/timer_snapshot.h create mode 100644 deps/common/metrics/uniform_reservoir.cpp create mode 100644 deps/common/metrics/uniform_reservoir.h create mode 100644 deps/common/mm/debug_new.h create mode 100644 deps/common/mm/mem.h create mode 100644 deps/common/mm/mem_pool.cpp create mode 100644 deps/common/mm/mem_pool.h create mode 100644 deps/common/os/os.cpp create mode 100644 deps/common/os/os.h create mode 100644 deps/common/os/path.cpp create mode 100644 deps/common/os/path.h create mode 100644 deps/common/os/pidfile.cpp create mode 100644 deps/common/os/pidfile.h create mode 100644 deps/common/os/process.cpp create mode 100644 deps/common/os/process.h create mode 100644 deps/common/os/process_param.cpp create mode 100644 deps/common/os/process_param.h create mode 100644 deps/common/os/signal.cpp create mode 100644 deps/common/os/signal.h create mode 100644 deps/common/seda/callback.cpp create mode 100644 deps/common/seda/callback.h create mode 100644 deps/common/seda/class_factory.h create mode 100644 deps/common/seda/event_dispatcher.cpp create mode 100644 deps/common/seda/event_dispatcher.h create mode 100644 deps/common/seda/example_stage.cpp create mode 100644 deps/common/seda/example_stage.h create mode 100644 deps/common/seda/init.cpp create mode 100644 deps/common/seda/init.h create mode 100644 deps/common/seda/kill_thread.cpp create mode 100644 deps/common/seda/kill_thread.h create mode 100644 deps/common/seda/metrics_report_event.cpp create mode 100644 deps/common/seda/metrics_report_event.h create mode 100644 deps/common/seda/metrics_stage.cpp create mode 100644 deps/common/seda/metrics_stage.h create mode 100644 deps/common/seda/seda_config.cpp create mode 100644 deps/common/seda/seda_config.h create mode 100644 deps/common/seda/seda_defs.h create mode 100644 deps/common/seda/stage.cpp create mode 100644 deps/common/seda/stage.h create mode 100644 deps/common/seda/stage_event.cpp create mode 100644 deps/common/seda/stage_event.h create mode 100644 deps/common/seda/stage_factory.h create mode 100644 deps/common/seda/thread_pool.cpp create mode 100644 deps/common/seda/thread_pool.h create mode 100644 deps/common/seda/timer_stage.cpp create mode 100644 deps/common/seda/timer_stage.h create mode 100644 deps/common/time/datetime.cpp create mode 100644 deps/common/time/datetime.h create mode 100644 deps/common/time/timeout_info.cpp create mode 100644 deps/common/time/timeout_info.h create mode 100644 docker/Dockerfile create mode 100644 docker/README.md create mode 100755 docker/bin/starter-code.sh create mode 100755 docker/bin/starter-sshd.sh create mode 100644 docker/bin/starter.sh create mode 100644 docker/docker-compose.yml create mode 100644 docs/book.toml create mode 100644 docs/src/SUMMARY.md create mode 100644 docs/src/blog/1.md create mode 100644 docs/src/blog/images/1-hekaton-storage-engine.png create mode 100644 docs/src/blog/images/1-range-index-bw-tree.png create mode 100644 docs/src/blog/images/1-record-lock.png create mode 100644 docs/src/blog/images/1-storage-engine-prototype.png create mode 100644 docs/src/blog/images/1-transaction-process-phases-2.png create mode 100644 docs/src/blog/images/1-transaction-process-phases.png create mode 100644 docs/src/blog/images/1-transaction-state.png create mode 100644 docs/src/blog/introduction.md create mode 100644 docs/src/design/images/bplus-tree.jpg create mode 100644 docs/src/design/images/miniob-bplus-tree-deletion-migration.png create mode 100644 docs/src/design/images/miniob-bplus-tree-deletion-move.png create mode 100644 docs/src/design/images/miniob-bplus-tree-deletion-move2.png create mode 100644 docs/src/design/images/miniob-bplus-tree-deletion.png create mode 100644 docs/src/design/images/miniob-bplus-tree-index-file.png create mode 100644 docs/src/design/images/miniob-bplus-tree-internal-node.png create mode 100644 docs/src/design/images/miniob-bplus-tree-internal-struct.png create mode 100644 docs/src/design/images/miniob-bplus-tree-internal-struct2.png create mode 100644 docs/src/design/images/miniob-bplus-tree-leaf-node.png create mode 100644 docs/src/design/images/miniob-bplus-tree-leaf-page.png create mode 100644 docs/src/design/images/miniob-bplus-tree-pages-in-file.png create mode 100644 docs/src/design/images/miniob-buffer-pool-directory.png create mode 100644 docs/src/design/images/miniob-buffer-pool-implementation.png create mode 100644 docs/src/design/images/miniob-buffer-pool-page.png create mode 100644 docs/src/design/images/miniob-buffer-pool-record.png create mode 100644 docs/src/design/images/miniob-overview.png create mode 100644 docs/src/design/images/mysql-auth.png create mode 100644 docs/src/design/images/mysql-command-packet.png create mode 100644 docs/src/design/images/mysql-error-packet.png create mode 100644 docs/src/design/images/mysql-flow.png create mode 100644 docs/src/design/images/mysql-handshake.png create mode 100644 docs/src/design/images/mysql-ok-eof-packet.png create mode 100644 docs/src/design/images/mysql-ok-packet.png create mode 100644 docs/src/design/images/mysql-packet-flow.png create mode 100644 docs/src/design/images/mysql-result-set-packet.png create mode 100644 docs/src/design/introduction.md create mode 100644 docs/src/design/miniob-bplus-tree-concurrency.md create mode 100644 docs/src/design/miniob-bplus-tree.md create mode 100644 docs/src/design/miniob-buffer-pool.md create mode 100644 docs/src/design/miniob-clog.md create mode 100644 docs/src/design/miniob-how-to-add-new-sql.md create mode 100644 docs/src/design/miniob-mysql-protocol.md create mode 100644 docs/src/design/miniob-sql-expression.md create mode 100644 docs/src/design/miniob-sql-parser.md create mode 100644 docs/src/design/miniob-transaction.md create mode 100644 docs/src/dev-env/dev_by_gitpod.md create mode 100644 docs/src/dev-env/how-to-dev-using-docker.md create mode 100644 docs/src/dev-env/how_to_dev_in_docker_container_by_vscode.md create mode 100644 docs/src/dev-env/how_to_dev_in_docker_container_by_vscode_on_windows.md create mode 100644 docs/src/dev-env/how_to_dev_miniob_by_docker_on_windows.md create mode 100644 docs/src/dev-env/how_to_dev_miniob_by_vscode.md create mode 100644 docs/src/dev-env/images/dev_by_gitpod_build_init.png create mode 100644 docs/src/dev-env/images/dev_by_gitpod_build_init_output.png create mode 100644 docs/src/dev-env/images/dev_by_gitpod_build_others.png create mode 100644 docs/src/dev-env/images/dev_by_gitpod_build_output.png create mode 100644 docs/src/dev-env/images/dev_by_gitpod_build_run_build_task.png create mode 100644 docs/src/dev-env/images/dev_by_gitpod_build_run_task.png create mode 100644 docs/src/dev-env/images/dev_by_gitpod_dashboard.png create mode 100644 docs/src/dev-env/images/dev_by_gitpod_debug_breakpoint.png create mode 100644 docs/src/dev-env/images/dev_by_gitpod_debug_console.png create mode 100644 docs/src/dev-env/images/dev_by_gitpod_debug_debugging_view.png create mode 100644 docs/src/dev-env/images/dev_by_gitpod_debug_start.png create mode 100644 docs/src/dev-env/images/dev_by_gitpod_debug_take_breakpoint.png create mode 100644 docs/src/dev-env/images/dev_by_gitpod_debug_terminal.png create mode 100644 docs/src/dev-env/images/dev_by_gitpod_fork_repo.png create mode 100644 docs/src/dev-env/images/dev_by_gitpod_git_auth.png create mode 100644 docs/src/dev-env/images/dev_by_gitpod_git_auth1.png create mode 100644 docs/src/dev-env/images/dev_by_gitpod_git_commit.png create mode 100644 docs/src/dev-env/images/dev_by_gitpod_git_edit_permissions.png create mode 100644 docs/src/dev-env/images/dev_by_gitpod_git_operations.png create mode 100644 docs/src/dev-env/images/dev_by_gitpod_git_pre_edit_permissions.png create mode 100644 docs/src/dev-env/images/dev_by_gitpod_git_push_error.png create mode 100644 docs/src/dev-env/images/dev_by_gitpod_gitpod_new_workspace.png create mode 100644 docs/src/dev-env/images/dev_by_gitpod_ides.png create mode 100644 docs/src/dev-env/images/dev_by_gitpod_miniob_workspace.png create mode 100644 docs/src/dev-env/images/dev_by_gitpod_open_gitpod.png create mode 100644 docs/src/dev-env/images/dev_by_gitpod_open_miniob.jpg create mode 100644 docs/src/dev-env/images/dev_by_gitpod_vscode_homepage.png create mode 100644 docs/src/dev-env/images/dev_by_gitpod_workspace.png create mode 100644 docs/src/dev-env/images/dev_in_docker_container_by_vscode_on_windows_Docker.png create mode 100644 docs/src/dev-env/images/dev_in_docker_container_by_vscode_on_windows_clone.png create mode 100644 docs/src/dev-env/images/dev_in_docker_container_by_vscode_on_windows_clone_branch.png create mode 100644 docs/src/dev-env/images/dev_in_docker_container_by_vscode_on_windows_clone_done.png create mode 100644 docs/src/dev-env/images/dev_in_docker_container_by_vscode_on_windows_clone_file_info.png create mode 100644 docs/src/dev-env/images/dev_in_docker_container_by_vscode_on_windows_downloadDocker.png create mode 100644 docs/src/dev-env/images/dev_in_docker_container_by_vscode_on_windows_plugin.png create mode 100644 docs/src/dev-env/images/dev_in_docker_container_by_vscode_on_windows_prepareDocker1.png create mode 100644 docs/src/dev-env/images/dev_in_docker_container_by_vscode_on_windows_prepareDocker2.png create mode 100644 docs/src/dev-env/images/dev_in_docker_container_by_vscode_on_windows_prepareDocker3.png create mode 100644 docs/src/dev-env/images/dev_in_docker_container_by_vscode_on_windows_searchEnv.png create mode 100644 docs/src/dev-env/images/dev_in_docker_container_by_vscode_on_windows_searchEnv2.png create mode 100644 docs/src/dev-env/images/dev_in_docker_container_by_vscode_on_windows_searchEnv3.png create mode 100644 docs/src/dev-env/images/dev_in_docker_container_by_vscode_on_windows_startDocker_in_vscode_1.png create mode 100644 docs/src/dev-env/images/dev_in_docker_container_by_vscode_on_windows_startDocker_in_vscode_2.png create mode 100644 docs/src/dev-env/images/dev_in_docker_container_by_vscode_on_windows_startDocker_in_vscode_3.png create mode 100644 docs/src/dev-env/images/dev_in_docker_container_by_vscode_on_windows_startDocker_in_vscode_4.png create mode 100644 docs/src/dev-env/images/vsc_add_new_ssh_host.png create mode 100644 docs/src/dev-env/images/vsc_config_file.png create mode 100644 docs/src/dev-env/images/vsc_container_started.png create mode 100644 docs/src/dev-env/images/vsc_cpp_extensions.png create mode 100644 docs/src/dev-env/images/vsc_debug.png create mode 100644 docs/src/dev-env/images/vsc_kit_for_miniob.png create mode 100644 docs/src/dev-env/images/vsc_open_folder.png create mode 100644 docs/src/dev-env/images/vsc_pwd.png create mode 100644 docs/src/dev-env/images/vsc_remote_ssh_connect_cmd.png create mode 100644 docs/src/dev-env/images/vsc_remote_ssh_extension.png create mode 100644 docs/src/dev-env/images/vsc_server_started.png create mode 100644 docs/src/dev-env/images/vsc_ssh_connect.png create mode 100644 docs/src/dev-env/images/vscode_C++_plugs_detail.png create mode 100644 docs/src/dev-env/images/vscode_break_point.png create mode 100644 docs/src/dev-env/images/vscode_build_ouput.png create mode 100644 docs/src/dev-env/images/vscode_cmake.png create mode 100644 docs/src/dev-env/images/vscode_debug_miniob.png create mode 100644 docs/src/dev-env/images/vscode_search_plugs.png create mode 100644 docs/src/dev-env/images/windows-enable-disable-functions.png create mode 100644 docs/src/dev-env/images/windows-enable-service.png create mode 100644 docs/src/dev-env/images/windows-functions.png create mode 100644 docs/src/dev-env/images/windows-search-service.png create mode 100644 docs/src/dev-env/images/windows-terminal-mutli-shell.png create mode 100644 docs/src/dev-env/images/windows-terminal.png create mode 100644 docs/src/dev-env/images/windows-wsl.png create mode 100644 docs/src/dev-env/introduction.md create mode 100644 docs/src/dev-env/miniob-how-to-debug.md create mode 100644 docs/src/game/debug-output.md create mode 100644 docs/src/game/gitee-instructions.md create mode 100644 docs/src/game/github-introduction.md create mode 100644 docs/src/game/images/add-members.png create mode 100644 docs/src/game/images/create-repo.png create mode 100644 docs/src/game/images/create-repo2.png create mode 100644 docs/src/game/images/github-add-people.png create mode 100644 docs/src/game/images/github-add-tester-2.png create mode 100644 docs/src/game/images/github-add-tester.png create mode 100644 docs/src/game/images/github-begin-import-form.png create mode 100644 docs/src/game/images/github-import-done.png create mode 100644 docs/src/game/images/github-import-repository.png create mode 100644 docs/src/game/images/github-invite-success.png create mode 100644 docs/src/game/images/github-pending-invite.png create mode 100644 docs/src/game/images/github-view-repo.png create mode 100644 docs/src/game/images/invite-users.png create mode 100644 docs/src/game/images/reporter.png create mode 100644 docs/src/game/introduction.md create mode 100644 docs/src/game/miniob-date-implementation.md create mode 100644 docs/src/game/miniob-drop-table-implementation.md create mode 100644 docs/src/game/miniob-output-convention.md create mode 100644 docs/src/game/miniob-test-comment-date.md create mode 100644 docs/src/game/miniob_topics.md create mode 100644 docs/src/how_to_build.md create mode 100644 docs/src/how_to_run.md create mode 100644 docs/src/images/miniob-introduction-running-the-client.png create mode 100644 docs/src/images/miniob-introduction-running-the-server.png create mode 100644 docs/src/images/miniob-introduction-sql-flow.png create mode 100644 docs/src/lectures/copyright.md create mode 100644 docs/src/lectures/images/1-1.png create mode 100644 docs/src/lectures/images/1.3.1.3-1.png create mode 100644 docs/src/lectures/images/1.3.1.3-2.png create mode 100644 docs/src/lectures/images/2-1.png create mode 100644 docs/src/lectures/images/2-2.png create mode 100644 docs/src/lectures/images/2-3.png create mode 100644 docs/src/lectures/images/2-4.png create mode 100644 docs/src/lectures/images/2-5.png create mode 100644 docs/src/lectures/images/2-6.png create mode 100644 docs/src/lectures/images/2-7.png create mode 100644 docs/src/lectures/images/2-8.png create mode 100644 docs/src/lectures/images/3-1.png create mode 100644 docs/src/lectures/images/3-2-a.png create mode 100644 docs/src/lectures/images/3-2-b.png create mode 100644 docs/src/lectures/images/3-2-c.png create mode 100644 docs/src/lectures/images/3-3-a.png create mode 100644 docs/src/lectures/images/3-3-b.png create mode 100644 docs/src/lectures/images/3-3-c.png create mode 100644 docs/src/lectures/images/3-4.png create mode 100644 docs/src/lectures/images/3-5.png create mode 100644 docs/src/lectures/images/3-6-a.png create mode 100644 docs/src/lectures/images/3-6-b.png create mode 100644 docs/src/lectures/images/3-7-a.png create mode 100644 docs/src/lectures/images/3-7-b.png create mode 100644 docs/src/lectures/images/3-7-c.png create mode 100644 docs/src/lectures/images/4-1.png create mode 100644 docs/src/lectures/images/4-2.png create mode 100644 docs/src/lectures/images/4-3.png create mode 100644 docs/src/lectures/images/4-4.png create mode 100644 docs/src/lectures/images/4-5.png create mode 100644 docs/src/lectures/images/4-6.png create mode 100644 docs/src/lectures/images/5-1.png create mode 100644 docs/src/lectures/images/5.2.1.1-1.png create mode 100644 docs/src/lectures/images/5.2.1.1-2.png create mode 100644 docs/src/lectures/images/5.2.1.1-3.png create mode 100644 docs/src/lectures/images/5.2.1.1-4.png create mode 100644 docs/src/lectures/images/5.2.2.1-1.png create mode 100644 docs/src/lectures/images/5.3.1.1-4.png create mode 100644 docs/src/lectures/images/6-1.png create mode 100644 docs/src/lectures/images/6-2.png create mode 100644 docs/src/lectures/images/6-3.png create mode 100644 docs/src/lectures/images/6-4.png create mode 100644 docs/src/lectures/index.md create mode 100644 docs/src/lectures/lecture-1.md create mode 100644 docs/src/lectures/lecture-2.md create mode 100644 docs/src/lectures/lecture-3.md create mode 100644 docs/src/lectures/lecture-4.md create mode 100644 docs/src/lectures/lecture-5.md create mode 100644 docs/src/lectures/lecture-6.md create mode 100644 docs/src/lectures/references.md create mode 100644 docs/src/miniob-introduction.md create mode 100644 etc/observer.ini create mode 100644 src/obclient/CMakeLists.txt create mode 100644 src/obclient/client.cpp create mode 100644 src/observer/CMakeLists.txt create mode 100644 src/observer/common/global_context.cpp create mode 100644 src/observer/common/global_context.h create mode 100644 src/observer/common/ini_setting.h create mode 100644 src/observer/common/init.cpp create mode 100644 src/observer/common/init.h create mode 100644 src/observer/common/rc.cpp create mode 100644 src/observer/common/rc.h create mode 100644 src/observer/common/types.h create mode 100644 src/observer/event/session_event.cpp create mode 100644 src/observer/event/session_event.h create mode 100644 src/observer/event/sql_debug.cpp create mode 100644 src/observer/event/sql_debug.h create mode 100644 src/observer/event/sql_event.cpp create mode 100644 src/observer/event/sql_event.h create mode 100644 src/observer/event/storage_event.h create mode 100644 src/observer/main.cpp create mode 100644 src/observer/net/buffered_writer.cpp create mode 100644 src/observer/net/buffered_writer.h create mode 100644 src/observer/net/cli_communicator.cpp create mode 100644 src/observer/net/cli_communicator.h create mode 100644 src/observer/net/communicator.cpp create mode 100644 src/observer/net/communicator.h create mode 100644 src/observer/net/mysql_communicator.cpp create mode 100644 src/observer/net/mysql_communicator.h create mode 100644 src/observer/net/plain_communicator.cpp create mode 100644 src/observer/net/plain_communicator.h create mode 100644 src/observer/net/ring_buffer.cpp create mode 100644 src/observer/net/ring_buffer.h create mode 100644 src/observer/net/server.cpp create mode 100644 src/observer/net/server.h create mode 100644 src/observer/net/server_param.h create mode 100644 src/observer/session/session.cpp create mode 100644 src/observer/session/session.h create mode 100644 src/observer/session/session_stage.cpp create mode 100644 src/observer/session/session_stage.h create mode 100644 src/observer/session/thread_data.cpp create mode 100644 src/observer/session/thread_data.h create mode 100644 src/observer/sql/executor/command_executor.cpp create mode 100644 src/observer/sql/executor/command_executor.h create mode 100644 src/observer/sql/executor/create_index_executor.cpp create mode 100644 src/observer/sql/executor/create_index_executor.h create mode 100644 src/observer/sql/executor/create_table_executor.cpp create mode 100644 src/observer/sql/executor/create_table_executor.h create mode 100644 src/observer/sql/executor/desc_table_executor.cpp create mode 100644 src/observer/sql/executor/desc_table_executor.h create mode 100644 src/observer/sql/executor/execute_stage.cpp create mode 100644 src/observer/sql/executor/execute_stage.h create mode 100644 src/observer/sql/executor/help_executor.h create mode 100644 src/observer/sql/executor/load_data_executor.cpp create mode 100644 src/observer/sql/executor/load_data_executor.h create mode 100644 src/observer/sql/executor/set_variable_executor.h create mode 100644 src/observer/sql/executor/show_tables_executor.h create mode 100644 src/observer/sql/executor/sql_result.cpp create mode 100644 src/observer/sql/executor/sql_result.h create mode 100644 src/observer/sql/executor/trx_begin_executor.h create mode 100644 src/observer/sql/executor/trx_end_executor.h create mode 100644 src/observer/sql/expr/expression.cpp create mode 100644 src/observer/sql/expr/expression.h create mode 100644 src/observer/sql/expr/tuple.h create mode 100644 src/observer/sql/expr/tuple_cell.cpp create mode 100644 src/observer/sql/expr/tuple_cell.h create mode 100644 src/observer/sql/operator/calc_logical_operator.h create mode 100644 src/observer/sql/operator/calc_physical_operator.h create mode 100644 src/observer/sql/operator/delete_logical_operator.cpp create mode 100644 src/observer/sql/operator/delete_logical_operator.h create mode 100644 src/observer/sql/operator/delete_physical_operator.cpp create mode 100644 src/observer/sql/operator/delete_physical_operator.h create mode 100644 src/observer/sql/operator/explain_logical_operator.h create mode 100644 src/observer/sql/operator/explain_physical_operator.cpp create mode 100644 src/observer/sql/operator/explain_physical_operator.h create mode 100644 src/observer/sql/operator/index_scan_physical_operator.cpp create mode 100644 src/observer/sql/operator/index_scan_physical_operator.h create mode 100644 src/observer/sql/operator/insert_logical_operator.cpp create mode 100644 src/observer/sql/operator/insert_logical_operator.h create mode 100644 src/observer/sql/operator/insert_physical_operator.cpp create mode 100644 src/observer/sql/operator/insert_physical_operator.h create mode 100644 src/observer/sql/operator/join_logical_operator.h create mode 100644 src/observer/sql/operator/join_physical_operator.cpp create mode 100644 src/observer/sql/operator/join_physical_operator.h create mode 100644 src/observer/sql/operator/logical_operator.cpp create mode 100644 src/observer/sql/operator/logical_operator.h create mode 100644 src/observer/sql/operator/physical_operator.cpp create mode 100644 src/observer/sql/operator/physical_operator.h create mode 100644 src/observer/sql/operator/predicate_logical_operator.cpp create mode 100644 src/observer/sql/operator/predicate_logical_operator.h create mode 100644 src/observer/sql/operator/predicate_physical_operator.cpp create mode 100644 src/observer/sql/operator/predicate_physical_operator.h create mode 100644 src/observer/sql/operator/project_logical_operator.cpp create mode 100644 src/observer/sql/operator/project_logical_operator.h create mode 100644 src/observer/sql/operator/project_physical_operator.cpp create mode 100644 src/observer/sql/operator/project_physical_operator.h create mode 100644 src/observer/sql/operator/string_list_physical_operator.h create mode 100644 src/observer/sql/operator/table_get_logical_operator.cpp create mode 100644 src/observer/sql/operator/table_get_logical_operator.h create mode 100644 src/observer/sql/operator/table_scan_physical_operator.cpp create mode 100644 src/observer/sql/operator/table_scan_physical_operator.h create mode 100644 src/observer/sql/optimizer/comparison_simplification_rule.cpp create mode 100644 src/observer/sql/optimizer/comparison_simplification_rule.h create mode 100644 src/observer/sql/optimizer/conjunction_simplification_rule.cpp create mode 100644 src/observer/sql/optimizer/conjunction_simplification_rule.h create mode 100644 src/observer/sql/optimizer/expression_rewriter.cpp create mode 100644 src/observer/sql/optimizer/expression_rewriter.h create mode 100644 src/observer/sql/optimizer/logical_plan_generator.cpp create mode 100644 src/observer/sql/optimizer/logical_plan_generator.h create mode 100644 src/observer/sql/optimizer/optimize_stage.cpp create mode 100644 src/observer/sql/optimizer/optimize_stage.h create mode 100644 src/observer/sql/optimizer/physical_plan_generator.cpp create mode 100644 src/observer/sql/optimizer/physical_plan_generator.h create mode 100644 src/observer/sql/optimizer/predicate_pushdown_rewriter.cpp create mode 100644 src/observer/sql/optimizer/predicate_pushdown_rewriter.h create mode 100644 src/observer/sql/optimizer/predicate_rewrite.cpp create mode 100644 src/observer/sql/optimizer/predicate_rewrite.h create mode 100644 src/observer/sql/optimizer/rewrite_rule.h create mode 100644 src/observer/sql/optimizer/rewriter.cpp create mode 100644 src/observer/sql/optimizer/rewriter.h create mode 100755 src/observer/sql/parser/gen_parser.sh create mode 100644 src/observer/sql/parser/lex_sql.cpp create mode 100644 src/observer/sql/parser/lex_sql.h create mode 100644 src/observer/sql/parser/lex_sql.l create mode 100644 src/observer/sql/parser/parse.cpp create mode 100644 src/observer/sql/parser/parse.h create mode 100644 src/observer/sql/parser/parse_defs.h create mode 100644 src/observer/sql/parser/parse_stage.cpp create mode 100644 src/observer/sql/parser/parse_stage.h create mode 100644 src/observer/sql/parser/resolve_stage.cpp create mode 100644 src/observer/sql/parser/resolve_stage.h create mode 100644 src/observer/sql/parser/value.cpp create mode 100644 src/observer/sql/parser/value.h create mode 100644 src/observer/sql/parser/yacc_sql.cpp create mode 100644 src/observer/sql/parser/yacc_sql.hpp create mode 100644 src/observer/sql/parser/yacc_sql.y create mode 100644 src/observer/sql/plan_cache/plan_cache_stage.cpp create mode 100644 src/observer/sql/plan_cache/plan_cache_stage.h create mode 100644 src/observer/sql/query_cache/query_cache_stage.cpp create mode 100644 src/observer/sql/query_cache/query_cache_stage.h create mode 100644 src/observer/sql/stmt/calc_stmt.h create mode 100644 src/observer/sql/stmt/create_index_stmt.cpp create mode 100644 src/observer/sql/stmt/create_index_stmt.h create mode 100644 src/observer/sql/stmt/create_table_stmt.cpp create mode 100644 src/observer/sql/stmt/create_table_stmt.h create mode 100644 src/observer/sql/stmt/delete_stmt.cpp create mode 100644 src/observer/sql/stmt/delete_stmt.h create mode 100644 src/observer/sql/stmt/desc_table_stmt.cpp create mode 100644 src/observer/sql/stmt/desc_table_stmt.h create mode 100644 src/observer/sql/stmt/exit_stmt.h create mode 100644 src/observer/sql/stmt/explain_stmt.cpp create mode 100644 src/observer/sql/stmt/explain_stmt.h create mode 100644 src/observer/sql/stmt/filter_stmt.cpp create mode 100644 src/observer/sql/stmt/filter_stmt.h create mode 100644 src/observer/sql/stmt/help_stmt.h create mode 100644 src/observer/sql/stmt/insert_stmt.cpp create mode 100644 src/observer/sql/stmt/insert_stmt.h create mode 100644 src/observer/sql/stmt/load_data_stmt.cpp create mode 100644 src/observer/sql/stmt/load_data_stmt.h create mode 100644 src/observer/sql/stmt/select_stmt.cpp create mode 100644 src/observer/sql/stmt/select_stmt.h create mode 100644 src/observer/sql/stmt/set_variable_stmt.h create mode 100644 src/observer/sql/stmt/show_tables_stmt.h create mode 100644 src/observer/sql/stmt/stmt.cpp create mode 100644 src/observer/sql/stmt/stmt.h create mode 100644 src/observer/sql/stmt/trx_begin_stmt.h create mode 100644 src/observer/sql/stmt/trx_end_stmt.h create mode 100644 src/observer/sql/stmt/update_stmt.cpp create mode 100644 src/observer/sql/stmt/update_stmt.h create mode 100644 src/observer/storage/buffer/disk_buffer_pool.cpp create mode 100644 src/observer/storage/buffer/disk_buffer_pool.h create mode 100644 src/observer/storage/buffer/frame.cpp create mode 100644 src/observer/storage/buffer/frame.h create mode 100644 src/observer/storage/buffer/page.h create mode 100644 src/observer/storage/clog/clog.cpp create mode 100644 src/observer/storage/clog/clog.h create mode 100644 src/observer/storage/common/condition_filter.cpp create mode 100644 src/observer/storage/common/condition_filter.h create mode 100644 src/observer/storage/common/meta_util.cpp create mode 100644 src/observer/storage/common/meta_util.h create mode 100644 src/observer/storage/db/db.cpp create mode 100644 src/observer/storage/db/db.h create mode 100644 src/observer/storage/default/default_handler.cpp create mode 100644 src/observer/storage/default/default_handler.h create mode 100644 src/observer/storage/field/field.cpp create mode 100644 src/observer/storage/field/field.h create mode 100644 src/observer/storage/field/field_meta.cpp create mode 100644 src/observer/storage/field/field_meta.h create mode 100644 src/observer/storage/index/bplus_tree.cpp create mode 100644 src/observer/storage/index/bplus_tree.h create mode 100644 src/observer/storage/index/bplus_tree_index.cpp create mode 100644 src/observer/storage/index/bplus_tree_index.h create mode 100644 src/observer/storage/index/index.cpp create mode 100644 src/observer/storage/index/index.h create mode 100644 src/observer/storage/index/index_meta.cpp create mode 100644 src/observer/storage/index/index_meta.h create mode 100644 src/observer/storage/persist/persist.cpp create mode 100644 src/observer/storage/persist/persist.h create mode 100644 src/observer/storage/record/record.h create mode 100644 src/observer/storage/record/record_manager.cpp create mode 100644 src/observer/storage/record/record_manager.h create mode 100644 src/observer/storage/table/table.cpp create mode 100644 src/observer/storage/table/table.h create mode 100644 src/observer/storage/table/table_meta.cpp create mode 100644 src/observer/storage/table/table_meta.h create mode 100644 src/observer/storage/trx/latch_memo.cpp create mode 100644 src/observer/storage/trx/latch_memo.h create mode 100644 src/observer/storage/trx/mvcc_trx.cpp create mode 100644 src/observer/storage/trx/mvcc_trx.h create mode 100644 src/observer/storage/trx/trx.cpp create mode 100644 src/observer/storage/trx/trx.h create mode 100644 src/observer/storage/trx/vacuous_trx.cpp create mode 100644 src/observer/storage/trx/vacuous_trx.h create mode 100644 test/case/README.md create mode 100755 test/case/miniob_test.py create mode 100644 test/case/result/basic.result create mode 100644 test/case/result/primary-aggregation-func.result create mode 100644 test/case/result/primary-complex-sub-query.result create mode 100644 test/case/result/primary-date.result create mode 100644 test/case/result/primary-drop-table.result create mode 100644 test/case/result/primary-expression.result create mode 100644 test/case/result/primary-group-by.result create mode 100644 test/case/result/primary-insert.result create mode 100644 test/case/result/primary-join-tables.result create mode 100644 test/case/result/primary-multi-index.result create mode 100644 test/case/result/primary-null.result create mode 100644 test/case/result/primary-order-by.result create mode 100644 test/case/result/primary-select-meta.result create mode 100644 test/case/result/primary-select-tables.result create mode 100644 test/case/result/primary-simple-sub-query.result create mode 100644 test/case/result/primary-text.result create mode 100644 test/case/result/primary-unique.result create mode 100644 test/case/result/primary-update.result create mode 100644 test/case/test/basic.test create mode 100644 test/case/test/primary-aggregation-func.test create mode 100644 test/case/test/primary-complex-sub-query.test create mode 100644 test/case/test/primary-date.test create mode 100644 test/case/test/primary-drop-table.test create mode 100644 test/case/test/primary-expression.test create mode 100644 test/case/test/primary-group-by.test create mode 100644 test/case/test/primary-insert.test create mode 100644 test/case/test/primary-join-tables.test create mode 100644 test/case/test/primary-multi-index.test create mode 100644 test/case/test/primary-null.test create mode 100644 test/case/test/primary-order-by.test create mode 100644 test/case/test/primary-select-meta.test create mode 100644 test/case/test/primary-select-tables.test create mode 100644 test/case/test/primary-simple-sub-query.test create mode 100644 test/case/test/primary-text.test create mode 100644 test/case/test/primary-unique.test create mode 100644 test/case/test/primary-update.test create mode 100644 test/perf/CMakeLists.txt create mode 100644 test/perf/client_performance_test.cpp create mode 100644 test/sysbench/miniob_common.lua create mode 100644 test/sysbench/miniob_insert.lua create mode 100644 tools/CMakeLists.txt create mode 100644 tools/clog_reader_cmd.cpp create mode 100644 unittest/CMakeLists.txt create mode 100644 unittest/arithmetic_expression_test.cpp create mode 100644 unittest/bitmap_test.cpp create mode 100644 unittest/bp_manager_test.cpp create mode 100644 unittest/bplus_tree_test.cpp create mode 100644 unittest/clog_test.cpp create mode 100644 unittest/log_test.cpp create mode 100644 unittest/log_test.h create mode 100644 unittest/lower_bound_test.cpp create mode 100644 unittest/md5_test.cpp create mode 100644 unittest/md5_test.h create mode 100644 unittest/mem_pool_test.cpp create mode 100644 unittest/persist_test.cpp create mode 100644 unittest/pidfile_test.cpp create mode 100644 unittest/record_manager_test.cpp create mode 100644 unittest/ring_buffer_test.cpp diff --git a/.clang-format b/.clang-format new file mode 100644 index 0000000..6b231cb --- /dev/null +++ b/.clang-format @@ -0,0 +1,84 @@ +--- +Language: Cpp +# BasedOnStyle: LLVM +SortIncludes: false +AccessModifierOffset: -2 +AlignAfterOpenBracket: DontAlign +AlignConsecutiveAssignments: true +AlignConsecutiveDeclarations: true +DerivePointerAlignment: false +PointerAlignment: Right +ConstructorInitializerIndentWidth: 4 +AlignEscapedNewlinesLeft: true +AlignTrailingComments: true +AllowAllParametersOfDeclarationOnNextLine: true +AllowShortBlocksOnASingleLine: true +AllowShortFunctionsOnASingleLine: true +AllowShortIfStatementsOnASingleLine: false +AllowShortCaseLabelsOnASingleLine: true +AllowShortLoopsOnASingleLine: false +AlwaysBreakTemplateDeclarations: true +# false表示函数实参要么都在同一行,要么都各自一行 +BinPackArguments: false +# 避免格式化 LOG_* 宏 +WhitespaceSensitiveMacros: ['LOG_DEFAULT', 'LOG_PANIC', 'LOG_ERROR', 'LOG_WARN', 'LOG_INFO', 'LOG_DEBUG', 'LOG_TRACE'] +AlwaysBreakBeforeMultilineStrings: false +BreakBeforeBinaryOperators: None +BreakBeforeTernaryOperators: true +BreakConstructorInitializersBeforeComma: false +BinPackParameters: true +ColumnLimit: 120 +ConstructorInitializerAllOnOneLineOrOnePerLine: true +DerivePointerBinding: true +ExperimentalAutoDetectBinPacking: false +IndentCaseLabels: true +MaxEmptyLinesToKeep: 1 +NamespaceIndentation: None +ObjCSpaceBeforeProtocolList: false +PenaltyBreakBeforeFirstCallParameter: 19 +PenaltyBreakComment: 200 +PenaltyBreakString: 1000 +PenaltyBreakFirstLessLess: 120 +PenaltyExcessCharacter: 1000000 +PenaltyReturnTypeOnItsOwnLine: 200 +AlwaysBreakAfterDefinitionReturnType: None +AlwaysBreakAfterReturnType: None +PointerBindsToType: true +Cpp11BracedListStyle: true +Standard: Auto +IndentWidth: 2 +TabWidth: 4 +UseTab: Never +BreakBeforeBraces: Custom +BraceWrapping: + AfterClass: true + AfterControlStatement: false + AfterEnum: true + AfterFunction: true + AfterNamespace: false + AfterObjCDeclaration: false + AfterStruct: true + AfterUnion: true + AfterExternBlock: false + BeforeCatch: false + BeforeElse: false + IndentBraces: false + SplitEmptyFunction: false + SplitEmptyRecord: false + SplitEmptyNamespace: false +IndentFunctionDeclarationAfterType: true +SpacesInParentheses: false +SpacesInAngles: false +SpaceInEmptyParentheses: false +SpacesInCStyleCastParentheses: false +SpaceAfterControlStatementKeyword: true +SpaceBeforeAssignmentOperators: true +SpacesBeforeTrailingComments: 2 +ContinuationIndentWidth: 4 +CommentPragmas: '^lint' +MacroBlockBegin: " + +END_CATCH_ERROR$" +... + + diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..49bf076 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,30 @@ +--- +name: Bug report +about: Create a report to help us improve +title: "[BUG]" +labels: bug +assignees: '' + +--- + +**Describe the bug** +A clear and concise description of what the bug is. + +** Environment** +Environment Details sometimes important +- OS Version: +- CPU Arch(x86/arm): +- Compiler: +- Others: + +**Fast Reproduce Steps(Required)** +Steps to reproduce the behavior: + +**Expected behavior** +A clear and concise description of what you expected to happen. + +**Actual Behavior** +What is the result? picture is allowed + +**Additional context** +Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/enhancement.md b/.github/ISSUE_TEMPLATE/enhancement.md new file mode 100644 index 0000000..27f43e7 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/enhancement.md @@ -0,0 +1,10 @@ +--- +name: Enhancement +about: I want to make an enhancement. +title: '' +labels: enhancement +assignees: '' + +--- + +**Enhancement** diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000..4fe86d5 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,20 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: '' +labels: feature +assignees: '' + +--- + +**Is your feature request related to a problem? Please describe.** +A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + +**Describe the solution you'd like** +A clear and concise description of what you want to happen. + +**Describe alternatives you've considered** +A clear and concise description of any alternative solutions or features you've considered. + +**Additional context** +Add any other context or screenshots about the feature request here. diff --git a/.github/ISSUE_TEMPLATE/question.md b/.github/ISSUE_TEMPLATE/question.md new file mode 100644 index 0000000..2f6a923 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/question.md @@ -0,0 +1,10 @@ +--- +name: Question +about: I have a question. +title: '' +labels: question +assignees: '' + +--- + +**Question** diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000..c75c34f --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,9 @@ +### What problem were solved in this pull request? + +Issue Number: close #xxx + +Problem: + +### What is changed and how it works? + +### Other information diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..6ca3ffd --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,54 @@ +name: build + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +env: + # Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) + BUILD_TYPE: Release + +jobs: + build-and-test-on-ubuntu: + # The CMake configure and build commands are platform agnostic and should work equally well on Windows or Mac. + # You can convert this to a matrix build if you need cross-platform coverage. + # See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix + runs-on: ubuntu-latest + + steps: + - name: Checkout repository and submodules + uses: actions/checkout@v2 + + - name: Init + shell: bash + run: sudo bash build.sh init + + - name: BuildRelease + shell: bash + run: bash build.sh release --make -j4 + + - name: BuildDebug + shell: bash + run: bash build.sh debug --make -j4 + + - name: Test + shell: bash + run: | + cd build_debug + make test + + build-on-mac: + # The CMake configure and build commands are platform agnostic and should work equally well on Windows or Mac. + # You can convert this to a matrix build if you need cross-platform coverage. + # See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix + runs-on: macos-latest + + steps: + - name: Checkout repository and submodules + uses: actions/checkout@v2 + + - name: Build + shell: bash + run: sudo bash build.sh init && bash build.sh release --make -j4 diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml new file mode 100644 index 0000000..8070ca3 --- /dev/null +++ b/.github/workflows/codeql.yml @@ -0,0 +1,87 @@ +# For most projects, this workflow file will not need changing; you simply need +# to commit it to your repository. +# +# You may wish to alter this file to override the set of languages analyzed, +# or to provide custom queries or build logic. +# +# ******** NOTE ******** +# We have attempted to detect the languages in your repository. Please check +# the `language` matrix defined below to confirm you have the correct set of +# supported CodeQL languages. +# +name: "CodeQL" + +on: + push: + branches: [ "main" ] + pull_request: + # The branches below must be a subset of the branches above + branches: [ "main" ] + schedule: + - cron: '37 12 * * 5' + +jobs: + analyze: + name: Analyze + # Runner size impacts CodeQL analysis time. To learn more, please see: + # - https://gh.io/recommended-hardware-resources-for-running-codeql + # - https://gh.io/supported-runners-and-hardware-resources + # - https://gh.io/using-larger-runners + # Consider using larger runners for possible analysis time improvements. + runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }} + timeout-minutes: ${{ (matrix.language == 'swift' && 120) || 600 }} + permissions: + actions: read + contents: read + security-events: write + + strategy: + fail-fast: false + matrix: + language: [ 'cpp' ] + # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby', 'swift' ] + # Use only 'java' to analyze code written in Java, Kotlin or both + # Use only 'javascript' to analyze code written in JavaScript, TypeScript or both + # Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support + + steps: + - name: Checkout repository + uses: actions/checkout@v3 + + # Initializes the CodeQL tools for scanning. + - name: Initialize CodeQL + uses: github/codeql-action/init@v2 + with: + languages: ${{ matrix.language }} + # If you wish to specify custom queries, you can do so here or in a config file. + # By default, queries listed here will override any specified in a config file. + # Prefix the list here with "+" to use these queries and those in the config file. + + # For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs + # queries: security-extended,security-and-quality + + + - name: Build init + run: sudo bash build.sh init + + # Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift). + # If this step fails, then you should remove it and run the build manually (see below) + - name: Autobuild + uses: github/codeql-action/autobuild@v2 + + # ℹ️ Command-line programs to run using the OS shell. + # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun + + # If the Autobuild fails above, remove it and uncomment the following three lines. + # modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance. + + # - name: Build C++ + # run: | + # echo "Run, Build Application using script" + # sudo bash build.sh init + # bash build.sh + + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v2 + with: + category: "/language:${{matrix.language}}" diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml new file mode 100644 index 0000000..1152f83 --- /dev/null +++ b/.github/workflows/gh-pages.yml @@ -0,0 +1,70 @@ +# Sample workflow for building and deploying a mdBook site to GitHub Pages +# +# To get started with mdBook see: https://rust-lang.github.io/mdBook/index.html +# +name: Deploy mdBook site to Pages + +on: + # Runs on pushes targeting the default branch + push: + branches: ["main"] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages +permissions: + contents: read + pages: write + id-token: write + +# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. +# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. +concurrency: + group: "pages" + cancel-in-progress: false + +jobs: + # Build job + build: + runs-on: ubuntu-latest + env: + MDBOOK_VERSION: 0.4.21 + steps: + - uses: actions/checkout@v3 + - name: Install mdBook + run: | + curl --proto '=https' --tlsv1.2 https://sh.rustup.rs -sSf -y | sh + rustup update + cargo install --version ${MDBOOK_VERSION} mdbook + + - name: Setup Pages + id: pages + uses: actions/configure-pages@v3 + + - name: Build with mdBook + run: mdbook build + working-directory: ./docs + + - name: Doxygen Action + uses: mattnotmitt/doxygen-action@v1.9.5 + with: + working-directory: . + doxyfile-path: ./Doxyfile + + - name: Upload artifact + uses: actions/upload-pages-artifact@v1 + with: + path: docs/book + + # Deployment job + deploy: + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + runs-on: ubuntu-latest + needs: build + steps: + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v2 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..ac36408 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,60 @@ +name: test + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +env: + # Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) + BUILD_TYPE: Release + +jobs: + basic-test: + runs-on: ubuntu-latest + + steps: + - name: Checkout repository and submodules + uses: actions/checkout@v2 + + - name: run basic test + shell: bash + run: | + sudo bash build.sh init + echo "begin test..." + python3 test/case/miniob_test.py --test-cases=basic | tail -1 | grep "basic is success" + + # sysbench cannot work property on this platform. + # I found that sysbench would send more request before receiving last response + # sysbench-test: + # runs-on: ubuntu-latest + + + # steps: + # - name: Checkout repository and submodules + # uses: actions/checkout@v2 + + # - name: install sysbench and mariadb-client + # shell: bash + # run: | + # curl -s https://packagecloud.io/install/repositories/akopytov/sysbench/script.deb.sh -o script.deb.sh + # sudo bash script.deb.sh + # sudo apt -y install sysbench mariadb-client + + # - name: start server + # shell: bash + # run: | + # sudo bash build.sh init + # bash build.sh -DCONCURRENCY=ON -DWITH_UNIT_TESTS=OFF + # nohup ./build_debug/bin/observer -s /tmp/miniob.sock -f etc/observer.ini -P mysql -t mvcc & + # sleep 10 && echo "wake up" + # mysql --version + # mysql -S /tmp/miniob.sock -e "show tables" + + # - name: sysbench test + # shell: bash + # run: | + # cd test/sysbench + # sysbench --mysql-socket=/tmp/miniob.sock --threads=10 miniob_insert prepare + # sysbench --mysql-socket=/tmp/miniob.sock --threads=10 miniob_insert run diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..494dbb8 --- /dev/null +++ b/.gitignore @@ -0,0 +1,28 @@ +./deps/3rd +./deps/libevent +./deps/googletest +./deps/jsoncpp +./deps/benchmark +.vscode +!.vscode/tasks.json +!.vscode/launch.json +./docs/doxy/ +build/* +build_* +cmake-build-*/* +build +.cache/* +.DS_Store +.idea +.ccls-cache +compile_commands.json +./.name +./miniob.iml +./vcs.xml +./workspace.xml +./modules.xml +GRTAGS +GPATH +GTAGS +docs/book +#*# diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..e88278f --- /dev/null +++ b/.gitmodules @@ -0,0 +1,12 @@ +[submodule "deps/3rd/libevent"] + path = deps/3rd/libevent + url = https://github.com/libevent/libevent +[submodule "deps/3rd/jsoncpp"] + path = deps/3rd/jsoncpp + url = https://github.com/open-source-parsers/jsoncpp +[submodule "deps/3rd/googletest"] + path = deps/3rd/googletest + url = https://github.com/google/googletest +[submodule "deps/3rd/benchmark"] + path = deps/3rd/benchmark + url = https://github.com/google/benchmark diff --git a/.gitpod.yml b/.gitpod.yml new file mode 100644 index 0000000..416e840 --- /dev/null +++ b/.gitpod.yml @@ -0,0 +1,10 @@ +github: + prebuilds: + master: false + branches: false +tasks: + - name: install dependencies + init: | + sudo apt install cmake flex bison texinfo libreadline-dev -y + sudo bash build.sh init + echo -e "\033[32m\nDependency installed successfully\033[0m" diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..e8f02b5 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,134 @@ +cmake_minimum_required(VERSION 3.10) +set(CMAKE_CXX_STANDARD 20) + +project(minidb) + +MESSAGE(STATUS "This is Project source dir " ${PROJECT_SOURCE_DIR}) +MESSAGE(STATUS "This is PROJECT_BINARY_DIR dir " ${PROJECT_BINARY_DIR}) + +SET(EXECUTABLE_OUTPUT_PATH ${PROJECT_BINARY_DIR}/bin) + +SET(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_SOURCE_DIR}/cmake) + +OPTION(ENABLE_ASAN "Enable build with address sanitizer" ON) +OPTION(WITH_UNIT_TESTS "Compile miniob with unit tests" ON) +OPTION(CONCURRENCY "Support concurrency operations" OFF) +OPTION(STATIC_STDLIB "Link std library static or dynamic, such as libgcc, libstdc++, libasan" OFF) + +MESSAGE(STATUS "HOME dir: $ENV{HOME}") +#SET(ENV{变量名} 值) +IF(WIN32) + MESSAGE(STATUS "This is windows.") + ADD_DEFINITIONS(-DWIN32) +ELSEIF(WIN64) + MESSAGE(STATUS "This is windows.") + ADD_DEFINITIONS(-DWIN64) +ELSEIF(APPLE) + MESSAGE(STATUS "This is apple") + # normally __MACH__ has already been defined + ADD_DEFINITIONS(-D__MACH__ ) +ELSEIF(UNIX) + MESSAGE(STATUS "This is UNIX") + ADD_DEFINITIONS(-DUNIX -DLINUX) +ELSE() + MESSAGE(STATUS "This is UNKNOW OS") +ENDIF(WIN32) + +# This is for clangd plugin for vscode +SET(CMAKE_COMMON_FLAGS "${CMAKE_COMMON_FLAGS} -Wall -Werror") +IF(DEBUG) + MESSAGE(STATUS "DEBUG has been set as TRUE ${DEBUG}") + SET(CMAKE_COMMON_FLAGS "${CMAKE_COMMON_FLAGS} -O0 -g -DDEBUG ") + ADD_DEFINITIONS(-DENABLE_DEBUG) +ELSEIF(NOT DEFINED ENV{DEBUG}) + MESSAGE(STATUS "Disable debug") + SET(CMAKE_COMMON_FLAGS "${CMAKE_COMMON_FLAGS} -O2 -g ") +ELSE() + MESSAGE(STATUS "Enable debug") + SET(CMAKE_COMMON_FLAGS "${CMAKE_COMMON_FLAGS} -O0 -g -DDEBUG") + ADD_DEFINITIONS(-DENABLE_DEBUG) +ENDIF(DEBUG) + +IF (CONCURRENCY) + MESSAGE(STATUS "CONCURRENCY is ON") + SET(CMAKE_COMMON_FLAGS "${CMAKE_COMMON_FLAGS} -DCONCURRENCY") + ADD_DEFINITIONS(-DCONCURRENCY) +ENDIF (CONCURRENCY) + +MESSAGE(STATUS "CMAKE_CXX_COMPILER_ID is " ${CMAKE_CXX_COMPILER_ID}) +IF ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU" AND ${STATIC_STDLIB}) + ADD_LINK_OPTIONS(-static-libgcc -static-libstdc++) +ENDIF() + +IF (ENABLE_ASAN) + SET(CMAKE_COMMON_FLAGS "${CMAKE_COMMON_FLAGS} -fno-omit-frame-pointer -fsanitize=address") + IF ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU" AND ${STATIC_STDLIB}) + ADD_LINK_OPTIONS(-static-libasan) + ENDIF() +ENDIF() + +IF (CMAKE_INSTALL_PREFIX) + MESSAGE(STATUS "CMAKE_INSTALL_PREFIX has been set as " ${CMAKE_INSTALL_PREFIX} ) +ELSEIF(DEFINED ENV{CMAKE_INSTALL_PREFIX}) + SET(CMAKE_INSTALL_PREFIX $ENV{CMAKE_INSTALL_PREFIX}) +ELSE() + SET(CMAKE_INSTALL_PREFIX /tmp/${PROJECT_NAME}) +ENDIF() +MESSAGE(STATUS "Install target dir is " ${CMAKE_INSTALL_PREFIX}) + +IF (DEFINED ENV{LD_LIBRARY_PATH}) + SET(LD_LIBRARY_PATH_STR $ENV{LD_LIBRARY_PATH}) + string(REPLACE ":" ";" LD_LIBRARY_PATH_LIST ${LD_LIBRARY_PATH_STR}) + MESSAGE(" Add LD_LIBRARY_PATH to -L flags " ${LD_LIBRARY_PATH_LIST}) + LINK_DIRECTORIES(${LD_LIBRARY_PATH_LIST}) +ENDIF () + +IF (EXISTS /usr/local/lib) + LINK_DIRECTORIES (/usr/local/lib) +ENDIF () +IF (EXISTS /usr/local/lib64) + LINK_DIRECTORIES (/usr/local/lib64) +ENDIF () + +INCLUDE_DIRECTORIES(. ${PROJECT_SOURCE_DIR}/deps /usr/local/include) + +# ADD_SUBDIRECTORY(src bin) bin 为目标目录, 可以省略 +ADD_SUBDIRECTORY(deps) +ADD_SUBDIRECTORY(src/obclient) +ADD_SUBDIRECTORY(src/observer) +ADD_SUBDIRECTORY(test/perf) +ADD_SUBDIRECTORY(benchmark) +ADD_SUBDIRECTORY(tools) + +IF(WITH_UNIT_TESTS) + SET(CMAKE_COMMON_FLAGS "${CMAKE_COMMON_FLAGS} -fprofile-arcs -ftest-coverage") + enable_testing() + ADD_SUBDIRECTORY(unittest) +ENDIF(WITH_UNIT_TESTS) + +SET(CMAKE_CXX_FLAGS ${CMAKE_COMMON_FLAGS}) +SET(CMAKE_C_FLAGS ${CMAKE_COMMON_FLAGS}) +MESSAGE(STATUS "CMAKE_CXX_FLAGS is " ${CMAKE_CXX_FLAGS}) + +INSTALL(DIRECTORY etc DESTINATION . + FILE_PERMISSIONS OWNER_WRITE OWNER_READ GROUP_READ WORLD_READ) + +#INSTALL([[SCRIPT ] [CODE ]] [...]) +# script 表示安装时,调用cmake 脚步 +# code 表示安装时,执行cmake 命令, 例如 +INSTALL(CODE "MESSAGE(\"Sample install message.\")") +# EXEC_PROGRAM make时执行命令 +#EXEC_PROGRAM(Executable [directory in which to run] +# [ARGS ] +# [OUTPUT_VARIABLE ] + +#EXEC_PROGRAM(Executable [directory in which to run] +# [ARGS ] +# [OUTPUT_VARIABLE ] +# [RETURN_VALUE ]) +# 生产make时,执行 +#EXEC_PROGRAM(ls ARGS "*.c" OUTPUT_VARIABLE LS_OUTPUT RETURN_VALUE +# LS_RVALUE) +#IF(not LS_RVALUE) +# MESSAGE(STATUS "ls result: " ${LS_OUTPUT}) +#ENDIF(not LS_RVALUE) diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md new file mode 100644 index 0000000..6bdc691 --- /dev/null +++ b/CODE_OF_CONDUCT.md @@ -0,0 +1,45 @@ +# Contributor Covenant Code of Conduct + +## Our Pledge + +In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to make participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, sex characteristics, gender identity, and expression, level of experience, education, socioeconomic status, nationality, personal appearance, race, religion, or sexual identity and orientation. + +## Our Standards + +Examples of behavior that contributes to creating a positive environment include: + +* Using welcoming and inclusive language +* Being respectful of differing viewpoints and experiences +* Gracefully accepting constructive criticism +* Focusing on what is best for the community +* Showing empathy towards other community members + +Examples of unacceptable behavior by participants include: + +* The use of sexualized language or imagery and unwelcome sexual attention or advances +* Trolling, insulting/derogatory comments, and personal or political attacks +* Public or private harassment +* Publishing others' private information, such as a physical or electronic address, without explicit permission +* Other conduct which could reasonably be considered inappropriate in a professional setting + +## Our Responsibilities + +Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior. + +Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful. + +## Scope + +This Code of Conduct applies within all project spaces, and it also applies when an individual is representing the project or its community in public spaces. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers. + +## Enforcement + +Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at support@oceanbase.com. All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. The project team is obligated to maintain confidentiality about the reporter of an incident. Further details of specific enforcement policies may be posted separately. + +Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. + +## Attribution + +This Code of Conduct is adapted from the [Contributor Covenant](https://www.contributor-covenant.org/), version 1.4. + +For answers to common questions about this code of conduct, see [FAQ](https://www.contributor-covenant.org/faq). diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..b7fe94c --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,112 @@ +# OceanBase 贡献指南 + +OceanBase 社区热情欢迎每一位对数据库技术热爱的开发者,期待携手开启思维碰撞之旅。无论是文档格式调整或文字修正、问题修复还是增加新功能,都是对 OceanBase 社区参与和贡献方式之一,立刻开启您的 First Contribution 吧! + +## 阅读建议 + +为了帮助开发者更好的上手并学习 miniob, 建议阅读: + +1. [miniob 框架介绍](docs/src/miniob-introduction.md) +2. [如何编译 miniob 源码](docs/src/how_to_build.md) +3. [开发环境搭建(本地调试, 适用 Linux 和 Mac)](docs/src/dev-env/how_to_dev_miniob_by_vscode.md) +4. [开发环境搭建(远程调试, 适用于 Window, Linux 和 Mac)](docs/src/dev-env/how_to_dev_in_docker_container_by_vscode.md) +5. [手把手教你在windows上用docker和vscode配置环境](docs/src/dev-env/how_to_dev_miniob_by_docker_and_vscode.md) +6. [miniob 文档汇总](docs/src/SUMMARY.md) + +更多的文档, 可以参考 [docs](https://github.com/oceanbase/miniob/tree/main/docs), 为了帮助大家更好的学习数据库基础知识, OceanBase 社区提供了一系列教程, 建议学习: + +1. [《从0到1数据库内核实战教程》 视频教程](https://open.oceanbase.com/activities/4921877?id=4921946) +2. [《从0到1数据库内核实战教程》 基础讲义](https://github.com/oceanbase/kernel-quickstart) +3. [《数据库管理系统实现》 华中科技大学实现教材](docs/src/lectures/index.md) + +## 如何找到一个合适issue + +* 通过[寻找一个合适的issue](https://github.com/oceanbase/miniob/issues), 找到一个可以入手的issue +* 通过`bug`/`new feature`找到当前版本的bug和建议添加的功能 +找到合适的issue之后,可以在issue下回复`/assign` 将issue分配给自己,并添加`developing`标签,这个标签表示当前这个issue在编码开发中 + +## 代码贡献流程 + +以 Mac 操作系统为例 + +### 1. Fork 项目仓库 + +1. 访问项目的 [GitHub 地址](https://github.com/oceanbase/miniob)。 +2. 点击 Fork 按钮创建远程分支。 + +### 2. 配置本地环境变量 + +``` +working_dir=$HOME/workspace # 定义工作目录 +user={GitHub账户名} # 和github上的用户名保持一致 +``` + +### 3. 克隆代码 + +``` +mkdir -p $working_dir +cd $working_dir +git clone git@github.com:$user/miniob.git + +# 添加上游分支 +cd $working_dir/miniob +git remote add upstream git@github.com:oceanbase/miniob.git + +# 为上游分支设置 no_push +git remote set-url --push upstream no_push + +# 确认远程分支有效 +git remote -v +``` + +### 4. 创建新分支 + +``` +# 更新本地 master 分支。 +new_branch_name={issue_xxx} # 设定分支名,建议直接使用issue+id的命名 +cd $working_dir/oceanbase +git fetch upstream +git checkout main +git rebase upstream/main +git checkout -b $new_branch_name +``` + +### 5. 开发 + +在新建的分支上完成开发 + +### 6. 提交代码 + +``` +# 检查本地文件状态 +git status + +# 添加您希望提交的文件 +# 如果您希望提交所有更改,直接使用 `git add .` +git add ... +# 为了让 github 自动将 pull request 关联上 github issue, +# 建议 commit message 中带上 " #{issueid}", 其中{issueid} 为issue 的id, +git commit -m "commit-message: update the xx" + +# 在开发分支执行以下操作 +git fetch upstream +git rebase upstream/main +git push -u origin $new_branch_name +``` + +### 7. 创建 PR + +1. 访问您 Fork 的仓库。 +2. 单击 {new_branch_name} 分支旁的 Compare & pull request 按钮。 + +### 8. 签署 CLA 协议 +签署[Contributor License Agreement (CLA)](https://cla-assistant.io/oceanbase/oceanbase) ;在提交 Pull Request 的过程中需要签署后才能进入下一步流程。如果没有签署,在提交流程会有如下报错: + +![image](https://user-images.githubusercontent.com/5435903/204097095-6a19d2d1-ee0c-4fb6-be2d-77f7577d75d2.png) + +### 9. 代码审查与合并 +有review、合并权限的维护者,会帮助开发者进行代码review;review意见通过后,后续的操作都会由维护者进行,包括运行CI测试(目前包括centos和ubuntu的编译)等,最终代码会有维护者通过后合入. + +### 10. 祝贺成为贡献者 + +当 pull request 合并后, 则所有的 contributing 工作全部完成, 恭喜您, 您成为 OceanBase 贡献者. diff --git a/Doxyfile b/Doxyfile new file mode 100644 index 0000000..689d588 --- /dev/null +++ b/Doxyfile @@ -0,0 +1,2771 @@ +# Doxyfile 1.9.7 + +# This file describes the settings to be used by the documentation system +# doxygen (www.doxygen.org) for a project. +# +# All text after a double hash (##) is considered a comment and is placed in +# front of the TAG it is preceding. +# +# All text after a single hash (#) is considered a comment and will be ignored. +# The format is: +# TAG = value [value, ...] +# For lists, items can also be appended using: +# TAG += value [value, ...] +# Values that contain spaces should be placed between quotes (\" \"). +# +# Note: +# +# Use doxygen to compare the used configuration file with the template +# configuration file: +# doxygen -x [configFile] +# Use doxygen to compare the used configuration file with the template +# configuration file without replacing the environment variables or CMake type +# replacement variables: +# doxygen -x_noenv [configFile] + +#--------------------------------------------------------------------------- +# Project related configuration options +#--------------------------------------------------------------------------- + +# This tag specifies the encoding used for all characters in the configuration +# file that follow. The default is UTF-8 which is also the encoding used for all +# text before the first occurrence of this tag. Doxygen uses libiconv (or the +# iconv built into libc) for the transcoding. See +# https://www.gnu.org/software/libiconv/ for the list of possible encodings. +# The default value is: UTF-8. + +DOXYFILE_ENCODING = UTF-8 + +# The PROJECT_NAME tag is a single word (or a sequence of words surrounded by +# double-quotes, unless you are using Doxywizard) that should identify the +# project for which the documentation is generated. This name is used in the +# title of most generated pages and in a few other places. +# The default value is: My Project. + +PROJECT_NAME = "MiniOB" + +# The PROJECT_NUMBER tag can be used to enter a project or revision number. This +# could be handy for archiving the generated documentation or if some version +# control system is used. + +PROJECT_NUMBER = 1 + +# Using the PROJECT_BRIEF tag one can provide an optional one line description +# for a project that appears at the top of each page and should give viewer a +# quick idea about the purpose of the project. Keep the description short. + +PROJECT_BRIEF = MiniOB is one mini database, helping developers to learn how database works. + +# With the PROJECT_LOGO tag one can specify a logo or an icon that is included +# in the documentation. The maximum height of the logo should not exceed 55 +# pixels and the maximum width should not exceed 200 pixels. Doxygen will copy +# the logo to the output directory. + +PROJECT_LOGO = + +# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path +# into which the generated documentation will be written. If a relative path is +# entered, it will be relative to the location where doxygen was started. If +# left blank the current directory will be used. + +OUTPUT_DIRECTORY = docs/book/design/doxy + +# If the CREATE_SUBDIRS tag is set to YES then doxygen will create up to 4096 +# sub-directories (in 2 levels) under the output directory of each output format +# and will distribute the generated files over these directories. Enabling this +# option can be useful when feeding doxygen a huge amount of source files, where +# putting all generated files in the same directory would otherwise causes +# performance problems for the file system. Adapt CREATE_SUBDIRS_LEVEL to +# control the number of sub-directories. +# The default value is: NO. + +CREATE_SUBDIRS = NO + +# Controls the number of sub-directories that will be created when +# CREATE_SUBDIRS tag is set to YES. Level 0 represents 16 directories, and every +# level increment doubles the number of directories, resulting in 4096 +# directories at level 8 which is the default and also the maximum value. The +# sub-directories are organized in 2 levels, the first level always has a fixed +# number of 16 directories. +# Minimum value: 0, maximum value: 8, default value: 8. +# This tag requires that the tag CREATE_SUBDIRS is set to YES. + +CREATE_SUBDIRS_LEVEL = 8 + +# If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII +# characters to appear in the names of generated files. If set to NO, non-ASCII +# characters will be escaped, for example _xE3_x81_x84 will be used for Unicode +# U+3044. +# The default value is: NO. + +ALLOW_UNICODE_NAMES = NO + +# The OUTPUT_LANGUAGE tag is used to specify the language in which all +# documentation generated by doxygen is written. Doxygen will use this +# information to generate all constant output in the proper language. +# Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Bulgarian, +# Catalan, Chinese, Chinese-Traditional, Croatian, Czech, Danish, Dutch, English +# (United States), Esperanto, Farsi (Persian), Finnish, French, German, Greek, +# Hindi, Hungarian, Indonesian, Italian, Japanese, Japanese-en (Japanese with +# English messages), Korean, Korean-en (Korean with English messages), Latvian, +# Lithuanian, Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, +# Romanian, Russian, Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, +# Swedish, Turkish, Ukrainian and Vietnamese. +# The default value is: English. + +OUTPUT_LANGUAGE = Chinese + +# If the BRIEF_MEMBER_DESC tag is set to YES, doxygen will include brief member +# descriptions after the members that are listed in the file and class +# documentation (similar to Javadoc). Set to NO to disable this. +# The default value is: YES. + +BRIEF_MEMBER_DESC = YES + +# If the REPEAT_BRIEF tag is set to YES, doxygen will prepend the brief +# description of a member or function before the detailed description +# +# Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the +# brief descriptions will be completely suppressed. +# The default value is: YES. + +REPEAT_BRIEF = YES + +# This tag implements a quasi-intelligent brief description abbreviator that is +# used to form the text in various listings. Each string in this list, if found +# as the leading text of the brief description, will be stripped from the text +# and the result, after processing the whole list, is used as the annotated +# text. Otherwise, the brief description is used as-is. If left blank, the +# following values are used ($name is automatically replaced with the name of +# the entity):The $name class, The $name widget, The $name file, is, provides, +# specifies, contains, represents, a, an and the. + +ABBREVIATE_BRIEF = "The $name class" \ + "The $name widget" \ + "The $name file" \ + is \ + provides \ + specifies \ + contains \ + represents \ + a \ + an \ + the + +# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then +# doxygen will generate a detailed section even if there is only a brief +# description. +# The default value is: NO. + +ALWAYS_DETAILED_SEC = NO + +# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all +# inherited members of a class in the documentation of that class as if those +# members were ordinary class members. Constructors, destructors and assignment +# operators of the base classes will not be shown. +# The default value is: NO. + +INLINE_INHERITED_MEMB = NO + +# If the FULL_PATH_NAMES tag is set to YES, doxygen will prepend the full path +# before files name in the file list and in the header files. If set to NO the +# shortest path that makes the file name unique will be used +# The default value is: YES. + +FULL_PATH_NAMES = YES + +# The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path. +# Stripping is only done if one of the specified strings matches the left-hand +# part of the path. The tag can be used to show relative paths in the file list. +# If left blank the directory from which doxygen is run is used as the path to +# strip. +# +# Note that you can specify absolute paths here, but also relative paths, which +# will be relative from the directory where doxygen is started. +# This tag requires that the tag FULL_PATH_NAMES is set to YES. + +STRIP_FROM_PATH = + +# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the +# path mentioned in the documentation of a class, which tells the reader which +# header file to include in order to use a class. If left blank only the name of +# the header file containing the class definition is used. Otherwise one should +# specify the list of include paths that are normally passed to the compiler +# using the -I flag. + +STRIP_FROM_INC_PATH = + +# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but +# less readable) file names. This can be useful is your file systems doesn't +# support long names like on DOS, Mac, or CD-ROM. +# The default value is: NO. + +SHORT_NAMES = NO + +# If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the +# first line (until the first dot) of a Javadoc-style comment as the brief +# description. If set to NO, the Javadoc-style will behave just like regular Qt- +# style comments (thus requiring an explicit @brief command for a brief +# description.) +# The default value is: NO. + +JAVADOC_AUTOBRIEF = NO + +# If the JAVADOC_BANNER tag is set to YES then doxygen will interpret a line +# such as +# /*************** +# as being the beginning of a Javadoc-style comment "banner". If set to NO, the +# Javadoc-style will behave just like regular comments and it will not be +# interpreted by doxygen. +# The default value is: NO. + +JAVADOC_BANNER = NO + +# If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first +# line (until the first dot) of a Qt-style comment as the brief description. If +# set to NO, the Qt-style will behave just like regular Qt-style comments (thus +# requiring an explicit \brief command for a brief description.) +# The default value is: NO. + +QT_AUTOBRIEF = NO + +# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a +# multi-line C++ special comment block (i.e. a block of //! or /// comments) as +# a brief description. This used to be the default behavior. The new default is +# to treat a multi-line C++ comment block as a detailed description. Set this +# tag to YES if you prefer the old behavior instead. +# +# Note that setting this tag to YES also means that rational rose comments are +# not recognized any more. +# The default value is: NO. + +MULTILINE_CPP_IS_BRIEF = YES + +# By default Python docstrings are displayed as preformatted text and doxygen's +# special commands cannot be used. By setting PYTHON_DOCSTRING to NO the +# doxygen's special commands can be used and the contents of the docstring +# documentation blocks is shown as doxygen documentation. +# The default value is: YES. + +PYTHON_DOCSTRING = YES + +# If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the +# documentation from any documented member that it re-implements. +# The default value is: YES. + +INHERIT_DOCS = YES + +# If the SEPARATE_MEMBER_PAGES tag is set to YES then doxygen will produce a new +# page for each member. If set to NO, the documentation of a member will be part +# of the file/class/namespace that contains it. +# The default value is: NO. + +SEPARATE_MEMBER_PAGES = NO + +# The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen +# uses this value to replace tabs by spaces in code fragments. +# Minimum value: 1, maximum value: 16, default value: 4. + +TAB_SIZE = 2 + +# This tag can be used to specify a number of aliases that act as commands in +# the documentation. An alias has the form: +# name=value +# For example adding +# "sideeffect=@par Side Effects:^^" +# will allow you to put the command \sideeffect (or @sideeffect) in the +# documentation, which will result in a user-defined paragraph with heading +# "Side Effects:". Note that you cannot put \n's in the value part of an alias +# to insert newlines (in the resulting output). You can put ^^ in the value part +# of an alias to insert a newline as if a physical newline was in the original +# file. When you need a literal { or } or , in the value part of an alias you +# have to escape them by means of a backslash (\), this can lead to conflicts +# with the commands \{ and \} for these it is advised to use the version @{ and +# @} or use a double escape (\\{ and \\}) + +ALIASES = + +# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources +# only. Doxygen will then generate output that is more tailored for C. For +# instance, some of the names that are used will be different. The list of all +# members will be omitted, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_FOR_C = NO + +# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or +# Python sources only. Doxygen will then generate output that is more tailored +# for that language. For instance, namespaces will be presented as packages, +# qualified scopes will look different, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_JAVA = NO + +# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran +# sources. Doxygen will then generate output that is tailored for Fortran. +# The default value is: NO. + +OPTIMIZE_FOR_FORTRAN = NO + +# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL +# sources. Doxygen will then generate output that is tailored for VHDL. +# The default value is: NO. + +OPTIMIZE_OUTPUT_VHDL = NO + +# Set the OPTIMIZE_OUTPUT_SLICE tag to YES if your project consists of Slice +# sources only. Doxygen will then generate output that is more tailored for that +# language. For instance, namespaces will be presented as modules, types will be +# separated into more groups, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_SLICE = NO + +# Doxygen selects the parser to use depending on the extension of the files it +# parses. With this tag you can assign which parser to use for a given +# extension. Doxygen has a built-in mapping, but you can override or extend it +# using this tag. The format is ext=language, where ext is a file extension, and +# language is one of the parsers supported by doxygen: IDL, Java, JavaScript, +# Csharp (C#), C, C++, Lex, D, PHP, md (Markdown), Objective-C, Python, Slice, +# VHDL, Fortran (fixed format Fortran: FortranFixed, free formatted Fortran: +# FortranFree, unknown formatted Fortran: Fortran. In the later case the parser +# tries to guess whether the code is fixed or free formatted code, this is the +# default for Fortran type files). For instance to make doxygen treat .inc files +# as Fortran files (default is PHP), and .f files as C (default is Fortran), +# use: inc=Fortran f=C. +# +# Note: For files without extension you can use no_extension as a placeholder. +# +# Note that for custom extensions you also need to set FILE_PATTERNS otherwise +# the files are not read by doxygen. When specifying no_extension you should add +# * to the FILE_PATTERNS. +# +# Note see also the list of default file extension mappings. + +EXTENSION_MAPPING = + +# If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments +# according to the Markdown format, which allows for more readable +# documentation. See https://daringfireball.net/projects/markdown/ for details. +# The output of markdown processing is further processed by doxygen, so you can +# mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in +# case of backward compatibilities issues. +# The default value is: YES. + +MARKDOWN_SUPPORT = YES + +# When the TOC_INCLUDE_HEADINGS tag is set to a non-zero value, all headings up +# to that level are automatically included in the table of contents, even if +# they do not have an id attribute. +# Note: This feature currently applies only to Markdown headings. +# Minimum value: 0, maximum value: 99, default value: 5. +# This tag requires that the tag MARKDOWN_SUPPORT is set to YES. + +TOC_INCLUDE_HEADINGS = 5 + +# The MARKDOWN_ID_STYLE tag can be used to specify the algorithm used to +# generate identifiers for the Markdown headings. Note: Every identifier is +# unique. +# Possible values are: DOXYGEN Use a fixed 'autotoc_md' string followed by a +# sequence number starting at 0. and GITHUB Use the lower case version of title +# with any whitespace replaced by '-' and punctations characters removed.. +# The default value is: DOXYGEN. +# This tag requires that the tag MARKDOWN_SUPPORT is set to YES. + +MARKDOWN_ID_STYLE = DOXYGEN + +# When enabled doxygen tries to link words that correspond to documented +# classes, or namespaces to their corresponding documentation. Such a link can +# be prevented in individual cases by putting a % sign in front of the word or +# globally by setting AUTOLINK_SUPPORT to NO. +# The default value is: YES. + +AUTOLINK_SUPPORT = YES + +# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want +# to include (a tag file for) the STL sources as input, then you should set this +# tag to YES in order to let doxygen match functions declarations and +# definitions whose arguments contain STL classes (e.g. func(std::string); +# versus func(std::string) {}). This also make the inheritance and collaboration +# diagrams that involve STL classes more complete and accurate. +# The default value is: NO. + +BUILTIN_STL_SUPPORT = NO + +# If you use Microsoft's C++/CLI language, you should set this option to YES to +# enable parsing support. +# The default value is: NO. + +CPP_CLI_SUPPORT = NO + +# Set the SIP_SUPPORT tag to YES if your project consists of sip (see: +# https://www.riverbankcomputing.com/software/sip/intro) sources only. Doxygen +# will parse them like normal C++ but will assume all classes use public instead +# of private inheritance when no explicit protection keyword is present. +# The default value is: NO. + +SIP_SUPPORT = NO + +# For Microsoft's IDL there are propget and propput attributes to indicate +# getter and setter methods for a property. Setting this option to YES will make +# doxygen to replace the get and set methods by a property in the documentation. +# This will only work if the methods are indeed getting or setting a simple +# type. If this is not the case, or you want to show the methods anyway, you +# should set this option to NO. +# The default value is: YES. + +IDL_PROPERTY_SUPPORT = YES + +# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC +# tag is set to YES then doxygen will reuse the documentation of the first +# member in the group (if any) for the other members of the group. By default +# all members of a group must be documented explicitly. +# The default value is: NO. + +DISTRIBUTE_GROUP_DOC = NO + +# If one adds a struct or class to a group and this option is enabled, then also +# any nested class or struct is added to the same group. By default this option +# is disabled and one has to add nested compounds explicitly via \ingroup. +# The default value is: NO. + +GROUP_NESTED_COMPOUNDS = NO + +# Set the SUBGROUPING tag to YES to allow class member groups of the same type +# (for instance a group of public functions) to be put as a subgroup of that +# type (e.g. under the Public Functions section). Set it to NO to prevent +# subgrouping. Alternatively, this can be done per class using the +# \nosubgrouping command. +# The default value is: YES. + +SUBGROUPING = YES + +# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions +# are shown inside the group in which they are included (e.g. using \ingroup) +# instead of on a separate page (for HTML and Man pages) or section (for LaTeX +# and RTF). +# +# Note that this feature does not work in combination with +# SEPARATE_MEMBER_PAGES. +# The default value is: NO. + +INLINE_GROUPED_CLASSES = NO + +# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions +# with only public data fields or simple typedef fields will be shown inline in +# the documentation of the scope in which they are defined (i.e. file, +# namespace, or group documentation), provided this scope is documented. If set +# to NO, structs, classes, and unions are shown on a separate page (for HTML and +# Man pages) or section (for LaTeX and RTF). +# The default value is: NO. + +INLINE_SIMPLE_STRUCTS = NO + +# When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or +# enum is documented as struct, union, or enum with the name of the typedef. So +# typedef struct TypeS {} TypeT, will appear in the documentation as a struct +# with name TypeT. When disabled the typedef will appear as a member of a file, +# namespace, or class. And the struct will be named TypeS. This can typically be +# useful for C code in case the coding convention dictates that all compound +# types are typedef'ed and only the typedef is referenced, never the tag name. +# The default value is: NO. + +TYPEDEF_HIDES_STRUCT = NO + +# The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This +# cache is used to resolve symbols given their name and scope. Since this can be +# an expensive process and often the same symbol appears multiple times in the +# code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small +# doxygen will become slower. If the cache is too large, memory is wasted. The +# cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range +# is 0..9, the default is 0, corresponding to a cache size of 2^16=65536 +# symbols. At the end of a run doxygen will report the cache usage and suggest +# the optimal cache size from a speed point of view. +# Minimum value: 0, maximum value: 9, default value: 0. + +LOOKUP_CACHE_SIZE = 0 + +# The NUM_PROC_THREADS specifies the number of threads doxygen is allowed to use +# during processing. When set to 0 doxygen will based this on the number of +# cores available in the system. You can set it explicitly to a value larger +# than 0 to get more control over the balance between CPU load and processing +# speed. At this moment only the input processing can be done using multiple +# threads. Since this is still an experimental feature the default is set to 1, +# which effectively disables parallel processing. Please report any issues you +# encounter. Generating dot graphs in parallel is controlled by the +# DOT_NUM_THREADS setting. +# Minimum value: 0, maximum value: 32, default value: 1. + +NUM_PROC_THREADS = 1 + +# If the TIMESTAMP tag is set different from NO then each generated page will +# contain the date or date and time when the page was generated. Setting this to +# NO can help when comparing the output of multiple runs. +# Possible values are: YES, NO, DATETIME and DATE. +# The default value is: NO. + +TIMESTAMP = NO + +#--------------------------------------------------------------------------- +# Build related configuration options +#--------------------------------------------------------------------------- + +# If the EXTRACT_ALL tag is set to YES, doxygen will assume all entities in +# documentation are documented, even if no documentation was available. Private +# class members and static file members will be hidden unless the +# EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES. +# Note: This will also disable the warnings about undocumented members that are +# normally produced when WARNINGS is set to YES. +# The default value is: NO. + +EXTRACT_ALL = NO + +# If the EXTRACT_PRIVATE tag is set to YES, all private members of a class will +# be included in the documentation. +# The default value is: NO. + +EXTRACT_PRIVATE = YES + +# If the EXTRACT_PRIV_VIRTUAL tag is set to YES, documented private virtual +# methods of a class will be included in the documentation. +# The default value is: NO. + +EXTRACT_PRIV_VIRTUAL = YES + +# If the EXTRACT_PACKAGE tag is set to YES, all members with package or internal +# scope will be included in the documentation. +# The default value is: NO. + +EXTRACT_PACKAGE = NO + +# If the EXTRACT_STATIC tag is set to YES, all static members of a file will be +# included in the documentation. +# The default value is: NO. + +EXTRACT_STATIC = YES + +# If the EXTRACT_LOCAL_CLASSES tag is set to YES, classes (and structs) defined +# locally in source files will be included in the documentation. If set to NO, +# only classes defined in header files are included. Does not have any effect +# for Java sources. +# The default value is: YES. + +EXTRACT_LOCAL_CLASSES = YES + +# This flag is only useful for Objective-C code. If set to YES, local methods, +# which are defined in the implementation section but not in the interface are +# included in the documentation. If set to NO, only methods in the interface are +# included. +# The default value is: NO. + +EXTRACT_LOCAL_METHODS = NO + +# If this flag is set to YES, the members of anonymous namespaces will be +# extracted and appear in the documentation as a namespace called +# 'anonymous_namespace{file}', where file will be replaced with the base name of +# the file that contains the anonymous namespace. By default anonymous namespace +# are hidden. +# The default value is: NO. + +EXTRACT_ANON_NSPACES = NO + +# If this flag is set to YES, the name of an unnamed parameter in a declaration +# will be determined by the corresponding definition. By default unnamed +# parameters remain unnamed in the output. +# The default value is: YES. + +RESOLVE_UNNAMED_PARAMS = YES + +# If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all +# undocumented members inside documented classes or files. If set to NO these +# members will be included in the various overviews, but no documentation +# section is generated. This option has no effect if EXTRACT_ALL is enabled. +# The default value is: NO. + +HIDE_UNDOC_MEMBERS = NO + +# If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all +# undocumented classes that are normally visible in the class hierarchy. If set +# to NO, these classes will be included in the various overviews. This option +# will also hide undocumented C++ concepts if enabled. This option has no effect +# if EXTRACT_ALL is enabled. +# The default value is: NO. + +HIDE_UNDOC_CLASSES = NO + +# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend +# declarations. If set to NO, these declarations will be included in the +# documentation. +# The default value is: NO. + +HIDE_FRIEND_COMPOUNDS = NO + +# If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any +# documentation blocks found inside the body of a function. If set to NO, these +# blocks will be appended to the function's detailed documentation block. +# The default value is: NO. + +HIDE_IN_BODY_DOCS = NO + +# The INTERNAL_DOCS tag determines if documentation that is typed after a +# \internal command is included. If the tag is set to NO then the documentation +# will be excluded. Set it to YES to include the internal documentation. +# The default value is: NO. + +INTERNAL_DOCS = YES + +# With the correct setting of option CASE_SENSE_NAMES doxygen will better be +# able to match the capabilities of the underlying filesystem. In case the +# filesystem is case sensitive (i.e. it supports files in the same directory +# whose names only differ in casing), the option must be set to YES to properly +# deal with such files in case they appear in the input. For filesystems that +# are not case sensitive the option should be set to NO to properly deal with +# output files written for symbols that only differ in casing, such as for two +# classes, one named CLASS and the other named Class, and to also support +# references to files without having to specify the exact matching casing. On +# Windows (including Cygwin) and MacOS, users should typically set this option +# to NO, whereas on Linux or other Unix flavors it should typically be set to +# YES. +# Possible values are: SYSTEM, NO and YES. +# The default value is: SYSTEM. + +CASE_SENSE_NAMES = SYSTEM + +# If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with +# their full class and namespace scopes in the documentation. If set to YES, the +# scope will be hidden. +# The default value is: NO. + +HIDE_SCOPE_NAMES = NO + +# If the HIDE_COMPOUND_REFERENCE tag is set to NO (default) then doxygen will +# append additional text to a page's title, such as Class Reference. If set to +# YES the compound reference will be hidden. +# The default value is: NO. + +HIDE_COMPOUND_REFERENCE= NO + +# If the SHOW_HEADERFILE tag is set to YES then the documentation for a class +# will show which file needs to be included to use the class. +# The default value is: YES. + +SHOW_HEADERFILE = YES + +# If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of +# the files that are included by a file in the documentation of that file. +# The default value is: YES. + +SHOW_INCLUDE_FILES = YES + +# If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each +# grouped member an include statement to the documentation, telling the reader +# which file to include in order to use the member. +# The default value is: NO. + +SHOW_GROUPED_MEMB_INC = NO + +# If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include +# files with double quotes in the documentation rather than with sharp brackets. +# The default value is: NO. + +FORCE_LOCAL_INCLUDES = NO + +# If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the +# documentation for inline members. +# The default value is: YES. + +INLINE_INFO = YES + +# If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the +# (detailed) documentation of file and class members alphabetically by member +# name. If set to NO, the members will appear in declaration order. +# The default value is: YES. + +SORT_MEMBER_DOCS = YES + +# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief +# descriptions of file, namespace and class members alphabetically by member +# name. If set to NO, the members will appear in declaration order. Note that +# this will also influence the order of the classes in the class list. +# The default value is: NO. + +SORT_BRIEF_DOCS = NO + +# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the +# (brief and detailed) documentation of class members so that constructors and +# destructors are listed first. If set to NO the constructors will appear in the +# respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS. +# Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief +# member documentation. +# Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting +# detailed member documentation. +# The default value is: NO. + +SORT_MEMBERS_CTORS_1ST = NO + +# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy +# of group names into alphabetical order. If set to NO the group names will +# appear in their defined order. +# The default value is: NO. + +SORT_GROUP_NAMES = NO + +# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by +# fully-qualified names, including namespaces. If set to NO, the class list will +# be sorted only by class name, not including the namespace part. +# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. +# Note: This option applies only to the class list, not to the alphabetical +# list. +# The default value is: NO. + +SORT_BY_SCOPE_NAME = NO + +# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper +# type resolution of all parameters of a function it will reject a match between +# the prototype and the implementation of a member function even if there is +# only one candidate or it is obvious which candidate to choose by doing a +# simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still +# accept a match between prototype and implementation in such cases. +# The default value is: NO. + +STRICT_PROTO_MATCHING = NO + +# The GENERATE_TODOLIST tag can be used to enable (YES) or disable (NO) the todo +# list. This list is created by putting \todo commands in the documentation. +# The default value is: YES. + +GENERATE_TODOLIST = YES + +# The GENERATE_TESTLIST tag can be used to enable (YES) or disable (NO) the test +# list. This list is created by putting \test commands in the documentation. +# The default value is: YES. + +GENERATE_TESTLIST = YES + +# The GENERATE_BUGLIST tag can be used to enable (YES) or disable (NO) the bug +# list. This list is created by putting \bug commands in the documentation. +# The default value is: YES. + +GENERATE_BUGLIST = YES + +# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or disable (NO) +# the deprecated list. This list is created by putting \deprecated commands in +# the documentation. +# The default value is: YES. + +GENERATE_DEPRECATEDLIST= YES + +# The ENABLED_SECTIONS tag can be used to enable conditional documentation +# sections, marked by \if ... \endif and \cond +# ... \endcond blocks. + +ENABLED_SECTIONS = + +# The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the +# initial value of a variable or macro / define can have for it to appear in the +# documentation. If the initializer consists of more lines than specified here +# it will be hidden. Use a value of 0 to hide initializers completely. The +# appearance of the value of individual variables and macros / defines can be +# controlled using \showinitializer or \hideinitializer command in the +# documentation regardless of this setting. +# Minimum value: 0, maximum value: 10000, default value: 30. + +MAX_INITIALIZER_LINES = 30 + +# Set the SHOW_USED_FILES tag to NO to disable the list of files generated at +# the bottom of the documentation of classes and structs. If set to YES, the +# list will mention the files that were used to generate the documentation. +# The default value is: YES. + +SHOW_USED_FILES = YES + +# Set the SHOW_FILES tag to NO to disable the generation of the Files page. This +# will remove the Files entry from the Quick Index and from the Folder Tree View +# (if specified). +# The default value is: YES. + +SHOW_FILES = YES + +# Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces +# page. This will remove the Namespaces entry from the Quick Index and from the +# Folder Tree View (if specified). +# The default value is: YES. + +SHOW_NAMESPACES = YES + +# The FILE_VERSION_FILTER tag can be used to specify a program or script that +# doxygen should invoke to get the current version for each file (typically from +# the version control system). Doxygen will invoke the program by executing (via +# popen()) the command command input-file, where command is the value of the +# FILE_VERSION_FILTER tag, and input-file is the name of an input file provided +# by doxygen. Whatever the program writes to standard output is used as the file +# version. For an example see the documentation. + +FILE_VERSION_FILTER = + +# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed +# by doxygen. The layout file controls the global structure of the generated +# output files in an output format independent way. To create the layout file +# that represents doxygen's defaults, run doxygen with the -l option. You can +# optionally specify a file name after the option, if omitted DoxygenLayout.xml +# will be used as the name of the layout file. See also section "Changing the +# layout of pages" for information. +# +# Note that if you run doxygen from a directory containing a file called +# DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE +# tag is left empty. + +LAYOUT_FILE = + +# The CITE_BIB_FILES tag can be used to specify one or more bib files containing +# the reference definitions. This must be a list of .bib files. The .bib +# extension is automatically appended if omitted. This requires the bibtex tool +# to be installed. See also https://en.wikipedia.org/wiki/BibTeX for more info. +# For LaTeX the style of the bibliography can be controlled using +# LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the +# search path. See also \cite for info how to create references. + +CITE_BIB_FILES = + +#--------------------------------------------------------------------------- +# Configuration options related to warning and progress messages +#--------------------------------------------------------------------------- + +# The QUIET tag can be used to turn on/off the messages that are generated to +# standard output by doxygen. If QUIET is set to YES this implies that the +# messages are off. +# The default value is: NO. + +QUIET = NO + +# The WARNINGS tag can be used to turn on/off the warning messages that are +# generated to standard error (stderr) by doxygen. If WARNINGS is set to YES +# this implies that the warnings are on. +# +# Tip: Turn warnings on while writing the documentation. +# The default value is: YES. + +WARNINGS = YES + +# If the WARN_IF_UNDOCUMENTED tag is set to YES then doxygen will generate +# warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag +# will automatically be disabled. +# The default value is: YES. + +WARN_IF_UNDOCUMENTED = YES + +# If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for +# potential errors in the documentation, such as documenting some parameters in +# a documented function twice, or documenting parameters that don't exist or +# using markup commands wrongly. +# The default value is: YES. + +WARN_IF_DOC_ERROR = YES + +# If WARN_IF_INCOMPLETE_DOC is set to YES, doxygen will warn about incomplete +# function parameter documentation. If set to NO, doxygen will accept that some +# parameters have no documentation without warning. +# The default value is: YES. + +WARN_IF_INCOMPLETE_DOC = YES + +# This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that +# are documented, but have no documentation for their parameters or return +# value. If set to NO, doxygen will only warn about wrong parameter +# documentation, but not about the absence of documentation. If EXTRACT_ALL is +# set to YES then this flag will automatically be disabled. See also +# WARN_IF_INCOMPLETE_DOC +# The default value is: NO. + +WARN_NO_PARAMDOC = NO + +# If WARN_IF_UNDOC_ENUM_VAL option is set to YES, doxygen will warn about +# undocumented enumeration values. If set to NO, doxygen will accept +# undocumented enumeration values. If EXTRACT_ALL is set to YES then this flag +# will automatically be disabled. +# The default value is: NO. + +WARN_IF_UNDOC_ENUM_VAL = NO + +# If the WARN_AS_ERROR tag is set to YES then doxygen will immediately stop when +# a warning is encountered. If the WARN_AS_ERROR tag is set to FAIL_ON_WARNINGS +# then doxygen will continue running as if WARN_AS_ERROR tag is set to NO, but +# at the end of the doxygen process doxygen will return with a non-zero status. +# If the WARN_AS_ERROR tag is set to FAIL_ON_WARNINGS_PRINT then doxygen behaves +# like FAIL_ON_WARNINGS but in case no WARN_LOGFILE is defined doxygen will not +# write the warning messages in between other messages but write them at the end +# of a run, in case a WARN_LOGFILE is defined the warning messages will be +# besides being in the defined file also be shown at the end of a run, unless +# the WARN_LOGFILE is defined as - i.e. standard output (stdout) in that case +# the behavior will remain as with the setting FAIL_ON_WARNINGS. +# Possible values are: NO, YES, FAIL_ON_WARNINGS and FAIL_ON_WARNINGS_PRINT. +# The default value is: NO. + +WARN_AS_ERROR = NO + +# The WARN_FORMAT tag determines the format of the warning messages that doxygen +# can produce. The string should contain the $file, $line, and $text tags, which +# will be replaced by the file and line number from which the warning originated +# and the warning text. Optionally the format may contain $version, which will +# be replaced by the version of the file (if it could be obtained via +# FILE_VERSION_FILTER) +# See also: WARN_LINE_FORMAT +# The default value is: $file:$line: $text. + +WARN_FORMAT = "$file:$line: $text" + +# In the $text part of the WARN_FORMAT command it is possible that a reference +# to a more specific place is given. To make it easier to jump to this place +# (outside of doxygen) the user can define a custom "cut" / "paste" string. +# Example: +# WARN_LINE_FORMAT = "'vi $file +$line'" +# See also: WARN_FORMAT +# The default value is: at line $line of file $file. + +WARN_LINE_FORMAT = "at line $line of file $file" + +# The WARN_LOGFILE tag can be used to specify a file to which warning and error +# messages should be written. If left blank the output is written to standard +# error (stderr). In case the file specified cannot be opened for writing the +# warning and error messages are written to standard error. When as file - is +# specified the warning and error messages are written to standard output +# (stdout). + +WARN_LOGFILE = + +#--------------------------------------------------------------------------- +# Configuration options related to the input files +#--------------------------------------------------------------------------- + +# The INPUT tag is used to specify the files and/or directories that contain +# documented source files. You may enter file names like myfile.cpp or +# directories like /usr/src/myproject. Separate the files or directories with +# spaces. See also FILE_PATTERNS and EXTENSION_MAPPING +# Note: If this tag is empty the current directory is searched. + +INPUT = src/observer + +# This tag can be used to specify the character encoding of the source files +# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses +# libiconv (or the iconv built into libc) for the transcoding. See the libiconv +# documentation (see: +# https://www.gnu.org/software/libiconv/) for the list of possible encodings. +# See also: INPUT_FILE_ENCODING +# The default value is: UTF-8. + +INPUT_ENCODING = UTF-8 + +# This tag can be used to specify the character encoding of the source files +# that doxygen parses The INPUT_FILE_ENCODING tag can be used to specify +# character encoding on a per file pattern basis. Doxygen will compare the file +# name with each pattern and apply the encoding instead of the default +# INPUT_ENCODING) if there is a match. The character encodings are a list of the +# form: pattern=encoding (like *.php=ISO-8859-1). See cfg_input_encoding +# "INPUT_ENCODING" for further information on supported encodings. + +INPUT_FILE_ENCODING = + +# If the value of the INPUT tag contains directories, you can use the +# FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and +# *.h) to filter out the source-files in the directories. +# +# Note that for custom extensions or not directly supported extensions you also +# need to set EXTENSION_MAPPING for the extension otherwise the files are not +# read by doxygen. +# +# Note the list of default checked file patterns might differ from the list of +# default file extension mappings. +# +# If left blank the following patterns are tested:*.c, *.cc, *.cxx, *.cpp, +# *.c++, *.java, *.ii, *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, +# *.hh, *.hxx, *.hpp, *.h++, *.l, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, +# *.inc, *.m, *.markdown, *.md, *.mm, *.dox (to be provided as doxygen C +# comment), *.py, *.pyw, *.f90, *.f95, *.f03, *.f08, *.f18, *.f, *.for, *.vhd, +# *.vhdl, *.ucf, *.qsf and *.ice. + +FILE_PATTERNS = *.c \ + *.cc \ + *.cxx \ + *.cpp \ + *.c++ \ + *.java \ + *.ii \ + *.ixx \ + *.ipp \ + *.i++ \ + *.inl \ + *.idl \ + *.ddl \ + *.odl \ + *.h \ + *.hh \ + *.hxx \ + *.hpp \ + *.h++ \ + *.l \ + *.cs \ + *.d \ + *.php \ + *.php4 \ + *.php5 \ + *.phtml \ + *.inc \ + *.m \ + *.markdown \ + *.md \ + *.mm \ + *.dox \ + *.py \ + *.pyw \ + *.f90 \ + *.f95 \ + *.f03 \ + *.f08 \ + *.f18 \ + *.f \ + *.for \ + *.vhd \ + *.vhdl \ + *.ucf \ + *.qsf \ + *.ice + +# The RECURSIVE tag can be used to specify whether or not subdirectories should +# be searched for input files as well. +# The default value is: NO. + +RECURSIVE = YES + +# The EXCLUDE tag can be used to specify files and/or directories that should be +# excluded from the INPUT source files. This way you can easily exclude a +# subdirectory from a directory tree whose root is specified with the INPUT tag. +# +# Note that relative paths are relative to the directory from which doxygen is +# run. + +EXCLUDE = + +# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or +# directories that are symbolic links (a Unix file system feature) are excluded +# from the input. +# The default value is: NO. + +EXCLUDE_SYMLINKS = NO + +# If the value of the INPUT tag contains directories, you can use the +# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude +# certain files from those directories. +# +# Note that the wildcards are matched against the file with absolute path, so to +# exclude all test directories for example use the pattern */test/* + +EXCLUDE_PATTERNS = + +# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names +# (namespaces, classes, functions, etc.) that should be excluded from the +# output. The symbol name can be a fully qualified name, a word, or if the +# wildcard * is used, a substring. Examples: ANamespace, AClass, +# ANamespace::AClass, ANamespace::*Test + +EXCLUDE_SYMBOLS = + +# The EXAMPLE_PATH tag can be used to specify one or more files or directories +# that contain example code fragments that are included (see the \include +# command). + +EXAMPLE_PATH = + +# If the value of the EXAMPLE_PATH tag contains directories, you can use the +# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and +# *.h) to filter out the source-files in the directories. If left blank all +# files are included. + +EXAMPLE_PATTERNS = * + +# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be +# searched for input files to be used with the \include or \dontinclude commands +# irrespective of the value of the RECURSIVE tag. +# The default value is: NO. + +EXAMPLE_RECURSIVE = NO + +# The IMAGE_PATH tag can be used to specify one or more files or directories +# that contain images that are to be included in the documentation (see the +# \image command). + +IMAGE_PATH = + +# The INPUT_FILTER tag can be used to specify a program that doxygen should +# invoke to filter for each input file. Doxygen will invoke the filter program +# by executing (via popen()) the command: +# +# +# +# where is the value of the INPUT_FILTER tag, and is the +# name of an input file. Doxygen will then use the output that the filter +# program writes to standard output. If FILTER_PATTERNS is specified, this tag +# will be ignored. +# +# Note that the filter must not add or remove lines; it is applied before the +# code is scanned, but not when the output code is generated. If lines are added +# or removed, the anchors will not be placed correctly. +# +# Note that doxygen will use the data processed and written to standard output +# for further processing, therefore nothing else, like debug statements or used +# commands (so in case of a Windows batch file always use @echo OFF), should be +# written to standard output. +# +# Note that for custom extensions or not directly supported extensions you also +# need to set EXTENSION_MAPPING for the extension otherwise the files are not +# properly processed by doxygen. + +INPUT_FILTER = + +# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern +# basis. Doxygen will compare the file name with each pattern and apply the +# filter if there is a match. The filters are a list of the form: pattern=filter +# (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how +# filters are used. If the FILTER_PATTERNS tag is empty or if none of the +# patterns match the file name, INPUT_FILTER is applied. +# +# Note that for custom extensions or not directly supported extensions you also +# need to set EXTENSION_MAPPING for the extension otherwise the files are not +# properly processed by doxygen. + +FILTER_PATTERNS = + +# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using +# INPUT_FILTER) will also be used to filter the input files that are used for +# producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES). +# The default value is: NO. + +FILTER_SOURCE_FILES = NO + +# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file +# pattern. A pattern will override the setting for FILTER_PATTERN (if any) and +# it is also possible to disable source filtering for a specific pattern using +# *.ext= (so without naming a filter). +# This tag requires that the tag FILTER_SOURCE_FILES is set to YES. + +FILTER_SOURCE_PATTERNS = + +# If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that +# is part of the input, its contents will be placed on the main page +# (index.html). This can be useful if you have a project on for instance GitHub +# and want to reuse the introduction page also for the doxygen output. + +USE_MDFILE_AS_MAINPAGE = + +# The Fortran standard specifies that for fixed formatted Fortran code all +# characters from position 72 are to be considered as comment. A common +# extension is to allow longer lines before the automatic comment starts. The +# setting FORTRAN_COMMENT_AFTER will also make it possible that longer lines can +# be processed before the automatic comment starts. +# Minimum value: 7, maximum value: 10000, default value: 72. + +FORTRAN_COMMENT_AFTER = 72 + +#--------------------------------------------------------------------------- +# Configuration options related to source browsing +#--------------------------------------------------------------------------- + +# If the SOURCE_BROWSER tag is set to YES then a list of source files will be +# generated. Documented entities will be cross-referenced with these sources. +# +# Note: To get rid of all source code in the generated output, make sure that +# also VERBATIM_HEADERS is set to NO. +# The default value is: NO. + +SOURCE_BROWSER = NO + +# Setting the INLINE_SOURCES tag to YES will include the body of functions, +# classes and enums directly into the documentation. +# The default value is: NO. + +INLINE_SOURCES = NO + +# Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any +# special comment blocks from generated source code fragments. Normal C, C++ and +# Fortran comments will always remain visible. +# The default value is: YES. + +STRIP_CODE_COMMENTS = YES + +# If the REFERENCED_BY_RELATION tag is set to YES then for each documented +# entity all documented functions referencing it will be listed. +# The default value is: NO. + +REFERENCED_BY_RELATION = NO + +# If the REFERENCES_RELATION tag is set to YES then for each documented function +# all documented entities called/used by that function will be listed. +# The default value is: NO. + +REFERENCES_RELATION = NO + +# If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set +# to YES then the hyperlinks from functions in REFERENCES_RELATION and +# REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will +# link to the documentation. +# The default value is: YES. + +REFERENCES_LINK_SOURCE = YES + +# If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the +# source code will show a tooltip with additional information such as prototype, +# brief description and links to the definition and documentation. Since this +# will make the HTML file larger and loading of large files a bit slower, you +# can opt to disable this feature. +# The default value is: YES. +# This tag requires that the tag SOURCE_BROWSER is set to YES. + +SOURCE_TOOLTIPS = YES + +# If the USE_HTAGS tag is set to YES then the references to source code will +# point to the HTML generated by the htags(1) tool instead of doxygen built-in +# source browser. The htags tool is part of GNU's global source tagging system +# (see https://www.gnu.org/software/global/global.html). You will need version +# 4.8.6 or higher. +# +# To use it do the following: +# - Install the latest version of global +# - Enable SOURCE_BROWSER and USE_HTAGS in the configuration file +# - Make sure the INPUT points to the root of the source tree +# - Run doxygen as normal +# +# Doxygen will invoke htags (and that will in turn invoke gtags), so these +# tools must be available from the command line (i.e. in the search path). +# +# The result: instead of the source browser generated by doxygen, the links to +# source code will now point to the output of htags. +# The default value is: NO. +# This tag requires that the tag SOURCE_BROWSER is set to YES. + +USE_HTAGS = NO + +# If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a +# verbatim copy of the header file for each class for which an include is +# specified. Set to NO to disable this. +# See also: Section \class. +# The default value is: YES. + +VERBATIM_HEADERS = YES + +#--------------------------------------------------------------------------- +# Configuration options related to the alphabetical class index +#--------------------------------------------------------------------------- + +# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all +# compounds will be generated. Enable this if the project contains a lot of +# classes, structs, unions or interfaces. +# The default value is: YES. + +ALPHABETICAL_INDEX = YES + +# The IGNORE_PREFIX tag can be used to specify a prefix (or a list of prefixes) +# that should be ignored while generating the index headers. The IGNORE_PREFIX +# tag works for classes, function and member names. The entity will be placed in +# the alphabetical list under the first letter of the entity name that remains +# after removing the prefix. +# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. + +IGNORE_PREFIX = + +#--------------------------------------------------------------------------- +# Configuration options related to the HTML output +#--------------------------------------------------------------------------- + +# If the GENERATE_HTML tag is set to YES, doxygen will generate HTML output +# The default value is: YES. + +GENERATE_HTML = YES + +# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a +# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of +# it. +# The default directory is: html. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_OUTPUT = html + +# The HTML_FILE_EXTENSION tag can be used to specify the file extension for each +# generated HTML page (for example: .htm, .php, .asp). +# The default value is: .html. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FILE_EXTENSION = .html + +# The HTML_HEADER tag can be used to specify a user-defined HTML header file for +# each generated HTML page. If the tag is left blank doxygen will generate a +# standard header. +# +# To get valid HTML the header file that includes any scripts and style sheets +# that doxygen needs, which is dependent on the configuration options used (e.g. +# the setting GENERATE_TREEVIEW). It is highly recommended to start with a +# default header using +# doxygen -w html new_header.html new_footer.html new_stylesheet.css +# YourConfigFile +# and then modify the file new_header.html. See also section "Doxygen usage" +# for information on how to generate the default header that doxygen normally +# uses. +# Note: The header is subject to change so you typically have to regenerate the +# default header when upgrading to a newer version of doxygen. For a description +# of the possible markers and block names see the documentation. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_HEADER = + +# The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each +# generated HTML page. If the tag is left blank doxygen will generate a standard +# footer. See HTML_HEADER for more information on how to generate a default +# footer and what special commands can be used inside the footer. See also +# section "Doxygen usage" for information on how to generate the default footer +# that doxygen normally uses. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FOOTER = + +# The HTML_STYLESHEET tag can be used to specify a user-defined cascading style +# sheet that is used by each HTML page. It can be used to fine-tune the look of +# the HTML output. If left blank doxygen will generate a default style sheet. +# See also section "Doxygen usage" for information on how to generate the style +# sheet that doxygen normally uses. +# Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as +# it is more robust and this tag (HTML_STYLESHEET) will in the future become +# obsolete. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_STYLESHEET = + +# The HTML_EXTRA_STYLESHEET tag can be used to specify additional user-defined +# cascading style sheets that are included after the standard style sheets +# created by doxygen. Using this option one can overrule certain style aspects. +# This is preferred over using HTML_STYLESHEET since it does not replace the +# standard style sheet and is therefore more robust against future updates. +# Doxygen will copy the style sheet files to the output directory. +# Note: The order of the extra style sheet files is of importance (e.g. the last +# style sheet in the list overrules the setting of the previous ones in the +# list). +# Note: Since the styling of scrollbars can currently not be overruled in +# Webkit/Chromium, the styling will be left out of the default doxygen.css if +# one or more extra stylesheets have been specified. So if scrollbar +# customization is desired it has to be added explicitly. For an example see the +# documentation. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_EXTRA_STYLESHEET = + +# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or +# other source files which should be copied to the HTML output directory. Note +# that these files will be copied to the base HTML output directory. Use the +# $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these +# files. In the HTML_STYLESHEET file, use the file name only. Also note that the +# files will be copied as-is; there are no commands or markers available. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_EXTRA_FILES = + +# The HTML_COLORSTYLE tag can be used to specify if the generated HTML output +# should be rendered with a dark or light theme. +# Possible values are: LIGHT always generate light mode output, DARK always +# generate dark mode output, AUTO_LIGHT automatically set the mode according to +# the user preference, use light mode if no preference is set (the default), +# AUTO_DARK automatically set the mode according to the user preference, use +# dark mode if no preference is set and TOGGLE allow to user to switch between +# light and dark mode via a button. +# The default value is: AUTO_LIGHT. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE = AUTO_LIGHT + +# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen +# will adjust the colors in the style sheet and background images according to +# this color. Hue is specified as an angle on a color-wheel, see +# https://en.wikipedia.org/wiki/Hue for more information. For instance the value +# 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300 +# purple, and 360 is red again. +# Minimum value: 0, maximum value: 359, default value: 220. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_HUE = 220 + +# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors +# in the HTML output. For a value of 0 the output will use gray-scales only. A +# value of 255 will produce the most vivid colors. +# Minimum value: 0, maximum value: 255, default value: 100. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_SAT = 100 + +# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the +# luminance component of the colors in the HTML output. Values below 100 +# gradually make the output lighter, whereas values above 100 make the output +# darker. The value divided by 100 is the actual gamma applied, so 80 represents +# a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not +# change the gamma. +# Minimum value: 40, maximum value: 240, default value: 80. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_GAMMA = 80 + +# If the HTML_DYNAMIC_MENUS tag is set to YES then the generated HTML +# documentation will contain a main index with vertical navigation menus that +# are dynamically created via JavaScript. If disabled, the navigation index will +# consists of multiple levels of tabs that are statically embedded in every HTML +# page. Disable this option to support browsers that do not have JavaScript, +# like the Qt help browser. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_DYNAMIC_MENUS = YES + +# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML +# documentation will contain sections that can be hidden and shown after the +# page has loaded. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_DYNAMIC_SECTIONS = NO + +# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries +# shown in the various tree structured indices initially; the user can expand +# and collapse entries dynamically later on. Doxygen will expand the tree to +# such a level that at most the specified number of entries are visible (unless +# a fully collapsed tree already exceeds this amount). So setting the number of +# entries 1 will produce a full collapsed tree by default. 0 is a special value +# representing an infinite number of entries and will result in a full expanded +# tree by default. +# Minimum value: 0, maximum value: 9999, default value: 100. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_INDEX_NUM_ENTRIES = 100 + +# If the GENERATE_DOCSET tag is set to YES, additional index files will be +# generated that can be used as input for Apple's Xcode 3 integrated development +# environment (see: +# https://developer.apple.com/xcode/), introduced with OSX 10.5 (Leopard). To +# create a documentation set, doxygen will generate a Makefile in the HTML +# output directory. Running make will produce the docset in that directory and +# running make install will install the docset in +# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at +# startup. See https://developer.apple.com/library/archive/featuredarticles/Doxy +# genXcode/_index.html for more information. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_DOCSET = NO + +# This tag determines the name of the docset feed. A documentation feed provides +# an umbrella under which multiple documentation sets from a single provider +# (such as a company or product suite) can be grouped. +# The default value is: Doxygen generated docs. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_FEEDNAME = "Doxygen generated docs" + +# This tag determines the URL of the docset feed. A documentation feed provides +# an umbrella under which multiple documentation sets from a single provider +# (such as a company or product suite) can be grouped. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_FEEDURL = + +# This tag specifies a string that should uniquely identify the documentation +# set bundle. This should be a reverse domain-name style string, e.g. +# com.mycompany.MyDocSet. Doxygen will append .docset to the name. +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_BUNDLE_ID = org.doxygen.Project + +# The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify +# the documentation publisher. This should be a reverse domain-name style +# string, e.g. com.mycompany.MyDocSet.documentation. +# The default value is: org.doxygen.Publisher. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_PUBLISHER_ID = org.doxygen.Publisher + +# The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher. +# The default value is: Publisher. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_PUBLISHER_NAME = Publisher + +# If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three +# additional HTML index files: index.hhp, index.hhc, and index.hhk. The +# index.hhp is a project file that can be read by Microsoft's HTML Help Workshop +# on Windows. In the beginning of 2021 Microsoft took the original page, with +# a.o. the download links, offline the HTML help workshop was already many years +# in maintenance mode). You can download the HTML help workshop from the web +# archives at Installation executable (see: +# http://web.archive.org/web/20160201063255/http://download.microsoft.com/downlo +# ad/0/A/9/0A939EF6-E31C-430F-A3DF-DFAE7960D564/htmlhelp.exe). +# +# The HTML Help Workshop contains a compiler that can convert all HTML output +# generated by doxygen into a single compiled HTML file (.chm). Compiled HTML +# files are now used as the Windows 98 help format, and will replace the old +# Windows help format (.hlp) on all Windows platforms in the future. Compressed +# HTML files also contain an index, a table of contents, and you can search for +# words in the documentation. The HTML workshop also contains a viewer for +# compressed HTML files. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_HTMLHELP = NO + +# The CHM_FILE tag can be used to specify the file name of the resulting .chm +# file. You can add a path in front of the file if the result should not be +# written to the html output directory. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +CHM_FILE = + +# The HHC_LOCATION tag can be used to specify the location (absolute path +# including file name) of the HTML help compiler (hhc.exe). If non-empty, +# doxygen will try to run the HTML help compiler on the generated index.hhp. +# The file has to be specified with full path. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +HHC_LOCATION = + +# The GENERATE_CHI flag controls if a separate .chi index file is generated +# (YES) or that it should be included in the main .chm file (NO). +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +GENERATE_CHI = NO + +# The CHM_INDEX_ENCODING is used to encode HtmlHelp index (hhk), content (hhc) +# and project file content. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +CHM_INDEX_ENCODING = + +# The BINARY_TOC flag controls whether a binary table of contents is generated +# (YES) or a normal table of contents (NO) in the .chm file. Furthermore it +# enables the Previous and Next buttons. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +BINARY_TOC = NO + +# The TOC_EXPAND flag can be set to YES to add extra items for group members to +# the table of contents of the HTML help documentation and to the tree view. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +TOC_EXPAND = NO + +# The SITEMAP_URL tag is used to specify the full URL of the place where the +# generated documentation will be placed on the server by the user during the +# deployment of the documentation. The generated sitemap is called sitemap.xml +# and placed on the directory specified by HTML_OUTPUT. In case no SITEMAP_URL +# is specified no sitemap is generated. For information about the sitemap +# protocol see https://www.sitemaps.org +# This tag requires that the tag GENERATE_HTML is set to YES. + +SITEMAP_URL = + +# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and +# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that +# can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help +# (.qch) of the generated HTML documentation. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_QHP = NO + +# If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify +# the file name of the resulting .qch file. The path specified is relative to +# the HTML output folder. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QCH_FILE = + +# The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help +# Project output. For more information please see Qt Help Project / Namespace +# (see: +# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#namespace). +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_NAMESPACE = org.doxygen.Project + +# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt +# Help Project output. For more information please see Qt Help Project / Virtual +# Folders (see: +# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#virtual-folders). +# The default value is: doc. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_VIRTUAL_FOLDER = doc + +# If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom +# filter to add. For more information please see Qt Help Project / Custom +# Filters (see: +# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom-filters). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_CUST_FILTER_NAME = + +# The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the +# custom filter to add. For more information please see Qt Help Project / Custom +# Filters (see: +# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom-filters). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_CUST_FILTER_ATTRS = + +# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this +# project's filter section matches. Qt Help Project / Filter Attributes (see: +# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#filter-attributes). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_SECT_FILTER_ATTRS = + +# The QHG_LOCATION tag can be used to specify the location (absolute path +# including file name) of Qt's qhelpgenerator. If non-empty doxygen will try to +# run qhelpgenerator on the generated .qhp file. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHG_LOCATION = + +# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be +# generated, together with the HTML files, they form an Eclipse help plugin. To +# install this plugin and make it available under the help contents menu in +# Eclipse, the contents of the directory containing the HTML and XML files needs +# to be copied into the plugins directory of eclipse. The name of the directory +# within the plugins directory should be the same as the ECLIPSE_DOC_ID value. +# After copying Eclipse needs to be restarted before the help appears. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_ECLIPSEHELP = NO + +# A unique identifier for the Eclipse help plugin. When installing the plugin +# the directory name containing the HTML and XML files should also have this +# name. Each documentation set should have its own identifier. +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES. + +ECLIPSE_DOC_ID = org.doxygen.Project + +# If you want full control over the layout of the generated HTML pages it might +# be necessary to disable the index and replace it with your own. The +# DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top +# of each HTML page. A value of NO enables the index and the value YES disables +# it. Since the tabs in the index contain the same information as the navigation +# tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +DISABLE_INDEX = NO + +# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index +# structure should be generated to display hierarchical information. If the tag +# value is set to YES, a side panel will be generated containing a tree-like +# index structure (just like the one that is generated for HTML Help). For this +# to work a browser that supports JavaScript, DHTML, CSS and frames is required +# (i.e. any modern browser). Windows users are probably better off using the +# HTML help feature. Via custom style sheets (see HTML_EXTRA_STYLESHEET) one can +# further fine tune the look of the index (see "Fine-tuning the output"). As an +# example, the default style sheet generated by doxygen has an example that +# shows how to put an image at the root of the tree instead of the PROJECT_NAME. +# Since the tree basically has the same information as the tab index, you could +# consider setting DISABLE_INDEX to YES when enabling this option. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_TREEVIEW = NO + +# When both GENERATE_TREEVIEW and DISABLE_INDEX are set to YES, then the +# FULL_SIDEBAR option determines if the side bar is limited to only the treeview +# area (value NO) or if it should extend to the full height of the window (value +# YES). Setting this to YES gives a layout similar to +# https://docs.readthedocs.io with more room for contents, but less room for the +# project logo, title, and description. If either GENERATE_TREEVIEW or +# DISABLE_INDEX is set to NO, this option has no effect. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +FULL_SIDEBAR = NO + +# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that +# doxygen will group on one line in the generated HTML documentation. +# +# Note that a value of 0 will completely suppress the enum values from appearing +# in the overview section. +# Minimum value: 0, maximum value: 20, default value: 4. +# This tag requires that the tag GENERATE_HTML is set to YES. + +ENUM_VALUES_PER_LINE = 4 + +# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used +# to set the initial width (in pixels) of the frame in which the tree is shown. +# Minimum value: 0, maximum value: 1500, default value: 250. +# This tag requires that the tag GENERATE_HTML is set to YES. + +TREEVIEW_WIDTH = 250 + +# If the EXT_LINKS_IN_WINDOW option is set to YES, doxygen will open links to +# external symbols imported via tag files in a separate window. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +EXT_LINKS_IN_WINDOW = NO + +# If the OBFUSCATE_EMAILS tag is set to YES, doxygen will obfuscate email +# addresses. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +OBFUSCATE_EMAILS = YES + +# If the HTML_FORMULA_FORMAT option is set to svg, doxygen will use the pdf2svg +# tool (see https://github.com/dawbarton/pdf2svg) or inkscape (see +# https://inkscape.org) to generate formulas as SVG images instead of PNGs for +# the HTML output. These images will generally look nicer at scaled resolutions. +# Possible values are: png (the default) and svg (looks nicer but requires the +# pdf2svg or inkscape tool). +# The default value is: png. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FORMULA_FORMAT = png + +# Use this tag to change the font size of LaTeX formulas included as images in +# the HTML documentation. When you change the font size after a successful +# doxygen run you need to manually remove any form_*.png images from the HTML +# output directory to force them to be regenerated. +# Minimum value: 8, maximum value: 50, default value: 10. +# This tag requires that the tag GENERATE_HTML is set to YES. + +FORMULA_FONTSIZE = 10 + +# The FORMULA_MACROFILE can contain LaTeX \newcommand and \renewcommand commands +# to create new LaTeX commands to be used in formulas as building blocks. See +# the section "Including formulas" for details. + +FORMULA_MACROFILE = + +# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see +# https://www.mathjax.org) which uses client side JavaScript for the rendering +# instead of using pre-rendered bitmaps. Use this if you do not have LaTeX +# installed or if you want to formulas look prettier in the HTML output. When +# enabled you may also need to install MathJax separately and configure the path +# to it using the MATHJAX_RELPATH option. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +USE_MATHJAX = NO + +# With MATHJAX_VERSION it is possible to specify the MathJax version to be used. +# Note that the different versions of MathJax have different requirements with +# regards to the different settings, so it is possible that also other MathJax +# settings have to be changed when switching between the different MathJax +# versions. +# Possible values are: MathJax_2 and MathJax_3. +# The default value is: MathJax_2. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_VERSION = MathJax_2 + +# When MathJax is enabled you can set the default output format to be used for +# the MathJax output. For more details about the output format see MathJax +# version 2 (see: +# http://docs.mathjax.org/en/v2.7-latest/output.html) and MathJax version 3 +# (see: +# http://docs.mathjax.org/en/latest/web/components/output.html). +# Possible values are: HTML-CSS (which is slower, but has the best +# compatibility. This is the name for Mathjax version 2, for MathJax version 3 +# this will be translated into chtml), NativeMML (i.e. MathML. Only supported +# for NathJax 2. For MathJax version 3 chtml will be used instead.), chtml (This +# is the name for Mathjax version 3, for MathJax version 2 this will be +# translated into HTML-CSS) and SVG. +# The default value is: HTML-CSS. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_FORMAT = HTML-CSS + +# When MathJax is enabled you need to specify the location relative to the HTML +# output directory using the MATHJAX_RELPATH option. The destination directory +# should contain the MathJax.js script. For instance, if the mathjax directory +# is located at the same level as the HTML output directory, then +# MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax +# Content Delivery Network so you can quickly see the result without installing +# MathJax. However, it is strongly recommended to install a local copy of +# MathJax from https://www.mathjax.org before deployment. The default value is: +# - in case of MathJax version 2: https://cdn.jsdelivr.net/npm/mathjax@2 +# - in case of MathJax version 3: https://cdn.jsdelivr.net/npm/mathjax@3 +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_RELPATH = + +# The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax +# extension names that should be enabled during MathJax rendering. For example +# for MathJax version 2 (see +# https://docs.mathjax.org/en/v2.7-latest/tex.html#tex-and-latex-extensions): +# MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols +# For example for MathJax version 3 (see +# http://docs.mathjax.org/en/latest/input/tex/extensions/index.html): +# MATHJAX_EXTENSIONS = ams +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_EXTENSIONS = + +# The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces +# of code that will be used on startup of the MathJax code. See the MathJax site +# (see: +# http://docs.mathjax.org/en/v2.7-latest/output.html) for more details. For an +# example see the documentation. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_CODEFILE = + +# When the SEARCHENGINE tag is enabled doxygen will generate a search box for +# the HTML output. The underlying search engine uses javascript and DHTML and +# should work on any modern browser. Note that when using HTML help +# (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET) +# there is already a search function so this one should typically be disabled. +# For large projects the javascript based search engine can be slow, then +# enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to +# search using the keyboard; to jump to the search box use + S +# (what the is depends on the OS and browser, but it is typically +# , /