rn-leveldb 3.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +92 -0
- package/android/.project +34 -0
- package/android/.settings/org.eclipse.buildship.core.prefs +13 -0
- package/android/CMakeLists.txt +69 -0
- package/android/build.gradle +125 -0
- package/android/cpp-adapter.cpp +19 -0
- package/android/gradle.properties +6 -0
- package/android/src/main/AndroidManifest.xml +4 -0
- package/android/src/main/java/com/reactnativeleveldb/LeveldbModule.java +57 -0
- package/android/src/main/java/com/reactnativeleveldb/LeveldbPackage.java +28 -0
- package/cpp/leveldb/.appveyor.yml +36 -0
- package/cpp/leveldb/.clang-format +18 -0
- package/cpp/leveldb/.travis.yml +88 -0
- package/cpp/leveldb/AUTHORS +12 -0
- package/cpp/leveldb/CMakeLists.txt +495 -0
- package/cpp/leveldb/CONTRIBUTING.md +36 -0
- package/cpp/leveldb/LICENSE +27 -0
- package/cpp/leveldb/NEWS +17 -0
- package/cpp/leveldb/README.md +231 -0
- package/cpp/leveldb/TODO +14 -0
- package/cpp/leveldb/benchmarks/db_bench.cc +990 -0
- package/cpp/leveldb/benchmarks/db_bench_sqlite3.cc +726 -0
- package/cpp/leveldb/benchmarks/db_bench_tree_db.cc +531 -0
- package/cpp/leveldb/cmake/leveldbConfig.cmake.in +9 -0
- package/cpp/leveldb/db/autocompact_test.cc +115 -0
- package/cpp/leveldb/db/builder.cc +82 -0
- package/cpp/leveldb/db/builder.h +30 -0
- package/cpp/leveldb/db/c.cc +562 -0
- package/cpp/leveldb/db/c_test.c +384 -0
- package/cpp/leveldb/db/corruption_test.cc +367 -0
- package/cpp/leveldb/db/db_impl.cc +1554 -0
- package/cpp/leveldb/db/db_impl.h +217 -0
- package/cpp/leveldb/db/db_iter.cc +318 -0
- package/cpp/leveldb/db/db_iter.h +26 -0
- package/cpp/leveldb/db/db_test.cc +2305 -0
- package/cpp/leveldb/db/dbformat.cc +136 -0
- package/cpp/leveldb/db/dbformat.h +224 -0
- package/cpp/leveldb/db/dbformat_test.cc +133 -0
- package/cpp/leveldb/db/dumpfile.cc +232 -0
- package/cpp/leveldb/db/fault_injection_test.cc +555 -0
- package/cpp/leveldb/db/filename.cc +141 -0
- package/cpp/leveldb/db/filename.h +83 -0
- package/cpp/leveldb/db/filename_test.cc +132 -0
- package/cpp/leveldb/db/leveldbutil.cc +64 -0
- package/cpp/leveldb/db/log_format.h +35 -0
- package/cpp/leveldb/db/log_reader.cc +274 -0
- package/cpp/leveldb/db/log_reader.h +112 -0
- package/cpp/leveldb/db/log_test.cc +563 -0
- package/cpp/leveldb/db/log_writer.cc +111 -0
- package/cpp/leveldb/db/log_writer.h +54 -0
- package/cpp/leveldb/db/memtable.cc +137 -0
- package/cpp/leveldb/db/memtable.h +87 -0
- package/cpp/leveldb/db/recovery_test.cc +339 -0
- package/cpp/leveldb/db/repair.cc +451 -0
- package/cpp/leveldb/db/skiplist.h +382 -0
- package/cpp/leveldb/db/skiplist_test.cc +373 -0
- package/cpp/leveldb/db/snapshot.h +95 -0
- package/cpp/leveldb/db/table_cache.cc +120 -0
- package/cpp/leveldb/db/table_cache.h +57 -0
- package/cpp/leveldb/db/version_edit.cc +257 -0
- package/cpp/leveldb/db/version_edit.h +106 -0
- package/cpp/leveldb/db/version_edit_test.cc +46 -0
- package/cpp/leveldb/db/version_set.cc +1562 -0
- package/cpp/leveldb/db/version_set.h +393 -0
- package/cpp/leveldb/db/version_set_test.cc +336 -0
- package/cpp/leveldb/db/write_batch.cc +150 -0
- package/cpp/leveldb/db/write_batch_internal.h +45 -0
- package/cpp/leveldb/db/write_batch_test.cc +137 -0
- package/cpp/leveldb/doc/benchmark.html +459 -0
- package/cpp/leveldb/doc/impl.md +172 -0
- package/cpp/leveldb/doc/index.md +523 -0
- package/cpp/leveldb/doc/log_format.md +75 -0
- package/cpp/leveldb/doc/table_format.md +107 -0
- package/cpp/leveldb/helpers/memenv/memenv.cc +390 -0
- package/cpp/leveldb/helpers/memenv/memenv.h +22 -0
- package/cpp/leveldb/helpers/memenv/memenv_test.cc +264 -0
- package/cpp/leveldb/include/leveldb/c.h +270 -0
- package/cpp/leveldb/include/leveldb/cache.h +111 -0
- package/cpp/leveldb/include/leveldb/comparator.h +64 -0
- package/cpp/leveldb/include/leveldb/db.h +167 -0
- package/cpp/leveldb/include/leveldb/dumpfile.h +28 -0
- package/cpp/leveldb/include/leveldb/env.h +417 -0
- package/cpp/leveldb/include/leveldb/export.h +33 -0
- package/cpp/leveldb/include/leveldb/filter_policy.h +72 -0
- package/cpp/leveldb/include/leveldb/iterator.h +112 -0
- package/cpp/leveldb/include/leveldb/options.h +187 -0
- package/cpp/leveldb/include/leveldb/slice.h +114 -0
- package/cpp/leveldb/include/leveldb/status.h +122 -0
- package/cpp/leveldb/include/leveldb/table.h +84 -0
- package/cpp/leveldb/include/leveldb/table_builder.h +93 -0
- package/cpp/leveldb/include/leveldb/write_batch.h +83 -0
- package/cpp/leveldb/issues/issue178_test.cc +90 -0
- package/cpp/leveldb/issues/issue200_test.cc +59 -0
- package/cpp/leveldb/issues/issue320_test.cc +131 -0
- package/cpp/leveldb/port/README.md +10 -0
- package/cpp/leveldb/port/port.h +19 -0
- package/cpp/leveldb/port/port_config.h.in +33 -0
- package/cpp/leveldb/port/port_example.h +100 -0
- package/cpp/leveldb/port/port_stdcxx.h +151 -0
- package/cpp/leveldb/port/thread_annotations.h +108 -0
- package/cpp/leveldb/table/block.cc +267 -0
- package/cpp/leveldb/table/block.h +44 -0
- package/cpp/leveldb/table/block_builder.cc +107 -0
- package/cpp/leveldb/table/block_builder.h +54 -0
- package/cpp/leveldb/table/filter_block.cc +106 -0
- package/cpp/leveldb/table/filter_block.h +68 -0
- package/cpp/leveldb/table/filter_block_test.cc +127 -0
- package/cpp/leveldb/table/format.cc +141 -0
- package/cpp/leveldb/table/format.h +99 -0
- package/cpp/leveldb/table/iterator.cc +76 -0
- package/cpp/leveldb/table/iterator_wrapper.h +92 -0
- package/cpp/leveldb/table/merger.cc +191 -0
- package/cpp/leveldb/table/merger.h +26 -0
- package/cpp/leveldb/table/table.cc +271 -0
- package/cpp/leveldb/table/table_builder.cc +265 -0
- package/cpp/leveldb/table/table_test.cc +834 -0
- package/cpp/leveldb/table/two_level_iterator.cc +171 -0
- package/cpp/leveldb/table/two_level_iterator.h +31 -0
- package/cpp/leveldb/third_party/benchmark/.clang-format +5 -0
- package/cpp/leveldb/third_party/benchmark/.github/ISSUE_TEMPLATE/bug_report.md +32 -0
- package/cpp/leveldb/third_party/benchmark/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
- package/cpp/leveldb/third_party/benchmark/.github/workflows/build-and-test.yml +38 -0
- package/cpp/leveldb/third_party/benchmark/.github/workflows/pylint.yml +26 -0
- package/cpp/leveldb/third_party/benchmark/.github/workflows/test_bindings.yml +24 -0
- package/cpp/leveldb/third_party/benchmark/.travis-libcxx-setup.sh +28 -0
- package/cpp/leveldb/third_party/benchmark/.travis.yml +231 -0
- package/cpp/leveldb/third_party/benchmark/.ycm_extra_conf.py +115 -0
- package/cpp/leveldb/third_party/benchmark/AUTHORS +58 -0
- package/cpp/leveldb/third_party/benchmark/BUILD.bazel +44 -0
- package/cpp/leveldb/third_party/benchmark/CMakeLists.txt +287 -0
- package/cpp/leveldb/third_party/benchmark/CONTRIBUTING.md +58 -0
- package/cpp/leveldb/third_party/benchmark/CONTRIBUTORS +83 -0
- package/cpp/leveldb/third_party/benchmark/LICENSE +202 -0
- package/cpp/leveldb/third_party/benchmark/README.md +1323 -0
- package/cpp/leveldb/third_party/benchmark/WORKSPACE +51 -0
- package/cpp/leveldb/third_party/benchmark/_config.yml +1 -0
- package/cpp/leveldb/third_party/benchmark/appveyor.yml +50 -0
- package/cpp/leveldb/third_party/benchmark/bindings/python/BUILD +3 -0
- package/cpp/leveldb/third_party/benchmark/bindings/python/build_defs.bzl +25 -0
- package/cpp/leveldb/third_party/benchmark/bindings/python/google_benchmark/BUILD +38 -0
- package/cpp/leveldb/third_party/benchmark/bindings/python/google_benchmark/__init__.py +156 -0
- package/cpp/leveldb/third_party/benchmark/bindings/python/google_benchmark/benchmark.cc +180 -0
- package/cpp/leveldb/third_party/benchmark/bindings/python/google_benchmark/example.py +136 -0
- package/cpp/leveldb/third_party/benchmark/bindings/python/pybind11.BUILD +20 -0
- package/cpp/leveldb/third_party/benchmark/bindings/python/python_headers.BUILD +6 -0
- package/cpp/leveldb/third_party/benchmark/bindings/python/requirements.txt +2 -0
- package/cpp/leveldb/third_party/benchmark/cmake/AddCXXCompilerFlag.cmake +74 -0
- package/cpp/leveldb/third_party/benchmark/cmake/CXXFeatureCheck.cmake +69 -0
- package/cpp/leveldb/third_party/benchmark/cmake/Config.cmake.in +1 -0
- package/cpp/leveldb/third_party/benchmark/cmake/GetGitVersion.cmake +54 -0
- package/cpp/leveldb/third_party/benchmark/cmake/GoogleTest.cmake +41 -0
- package/cpp/leveldb/third_party/benchmark/cmake/GoogleTest.cmake.in +58 -0
- package/cpp/leveldb/third_party/benchmark/cmake/benchmark.pc.in +12 -0
- package/cpp/leveldb/third_party/benchmark/cmake/gnu_posix_regex.cpp +12 -0
- package/cpp/leveldb/third_party/benchmark/cmake/llvm-toolchain.cmake +8 -0
- package/cpp/leveldb/third_party/benchmark/cmake/posix_regex.cpp +14 -0
- package/cpp/leveldb/third_party/benchmark/cmake/split_list.cmake +3 -0
- package/cpp/leveldb/third_party/benchmark/cmake/std_regex.cpp +10 -0
- package/cpp/leveldb/third_party/benchmark/cmake/steady_clock.cpp +7 -0
- package/cpp/leveldb/third_party/benchmark/cmake/thread_safety_attributes.cpp +4 -0
- package/cpp/leveldb/third_party/benchmark/conan/CMakeLists.txt +7 -0
- package/cpp/leveldb/third_party/benchmark/conan/test_package/CMakeLists.txt +10 -0
- package/cpp/leveldb/third_party/benchmark/conan/test_package/conanfile.py +19 -0
- package/cpp/leveldb/third_party/benchmark/conan/test_package/test_package.cpp +18 -0
- package/cpp/leveldb/third_party/benchmark/conanfile.py +79 -0
- package/cpp/leveldb/third_party/benchmark/dependencies.md +18 -0
- package/cpp/leveldb/third_party/benchmark/docs/AssemblyTests.md +147 -0
- package/cpp/leveldb/third_party/benchmark/docs/_config.yml +1 -0
- package/cpp/leveldb/third_party/benchmark/docs/releasing.md +16 -0
- package/cpp/leveldb/third_party/benchmark/docs/tools.md +203 -0
- package/cpp/leveldb/third_party/benchmark/include/benchmark/benchmark.h +1604 -0
- package/cpp/leveldb/third_party/benchmark/requirements.txt +2 -0
- package/cpp/leveldb/third_party/benchmark/setup.py +140 -0
- package/cpp/leveldb/third_party/benchmark/src/CMakeLists.txt +114 -0
- package/cpp/leveldb/third_party/benchmark/src/arraysize.h +33 -0
- package/cpp/leveldb/third_party/benchmark/src/benchmark.cc +499 -0
- package/cpp/leveldb/third_party/benchmark/src/benchmark_api_internal.cc +15 -0
- package/cpp/leveldb/third_party/benchmark/src/benchmark_api_internal.h +53 -0
- package/cpp/leveldb/third_party/benchmark/src/benchmark_main.cc +17 -0
- package/cpp/leveldb/third_party/benchmark/src/benchmark_name.cc +58 -0
- package/cpp/leveldb/third_party/benchmark/src/benchmark_register.cc +515 -0
- package/cpp/leveldb/third_party/benchmark/src/benchmark_register.h +108 -0
- package/cpp/leveldb/third_party/benchmark/src/benchmark_runner.cc +362 -0
- package/cpp/leveldb/third_party/benchmark/src/benchmark_runner.h +51 -0
- package/cpp/leveldb/third_party/benchmark/src/check.h +82 -0
- package/cpp/leveldb/third_party/benchmark/src/colorprint.cc +188 -0
- package/cpp/leveldb/third_party/benchmark/src/colorprint.h +33 -0
- package/cpp/leveldb/third_party/benchmark/src/commandlineflags.cc +228 -0
- package/cpp/leveldb/third_party/benchmark/src/commandlineflags.h +103 -0
- package/cpp/leveldb/third_party/benchmark/src/complexity.cc +238 -0
- package/cpp/leveldb/third_party/benchmark/src/complexity.h +55 -0
- package/cpp/leveldb/third_party/benchmark/src/console_reporter.cc +177 -0
- package/cpp/leveldb/third_party/benchmark/src/counter.cc +80 -0
- package/cpp/leveldb/third_party/benchmark/src/counter.h +32 -0
- package/cpp/leveldb/third_party/benchmark/src/csv_reporter.cc +154 -0
- package/cpp/leveldb/third_party/benchmark/src/cycleclock.h +211 -0
- package/cpp/leveldb/third_party/benchmark/src/internal_macros.h +102 -0
- package/cpp/leveldb/third_party/benchmark/src/json_reporter.cc +255 -0
- package/cpp/leveldb/third_party/benchmark/src/log.h +74 -0
- package/cpp/leveldb/third_party/benchmark/src/mutex.h +155 -0
- package/cpp/leveldb/third_party/benchmark/src/re.h +158 -0
- package/cpp/leveldb/third_party/benchmark/src/reporter.cc +105 -0
- package/cpp/leveldb/third_party/benchmark/src/sleep.cc +67 -0
- package/cpp/leveldb/third_party/benchmark/src/sleep.h +15 -0
- package/cpp/leveldb/third_party/benchmark/src/statistics.cc +193 -0
- package/cpp/leveldb/third_party/benchmark/src/statistics.h +37 -0
- package/cpp/leveldb/third_party/benchmark/src/string_util.cc +255 -0
- package/cpp/leveldb/third_party/benchmark/src/string_util.h +59 -0
- package/cpp/leveldb/third_party/benchmark/src/sysinfo.cc +716 -0
- package/cpp/leveldb/third_party/benchmark/src/thread_manager.h +64 -0
- package/cpp/leveldb/third_party/benchmark/src/thread_timer.h +86 -0
- package/cpp/leveldb/third_party/benchmark/src/timers.cc +245 -0
- package/cpp/leveldb/third_party/benchmark/src/timers.h +48 -0
- package/cpp/leveldb/third_party/benchmark/test/AssemblyTests.cmake +46 -0
- package/cpp/leveldb/third_party/benchmark/test/BUILD +73 -0
- package/cpp/leveldb/third_party/benchmark/test/CMakeLists.txt +263 -0
- package/cpp/leveldb/third_party/benchmark/test/args_product_test.cc +77 -0
- package/cpp/leveldb/third_party/benchmark/test/basic_test.cc +136 -0
- package/cpp/leveldb/third_party/benchmark/test/benchmark_gtest.cc +134 -0
- package/cpp/leveldb/third_party/benchmark/test/benchmark_name_gtest.cc +74 -0
- package/cpp/leveldb/third_party/benchmark/test/benchmark_test.cc +245 -0
- package/cpp/leveldb/third_party/benchmark/test/clobber_memory_assembly_test.cc +64 -0
- package/cpp/leveldb/third_party/benchmark/test/commandlineflags_gtest.cc +201 -0
- package/cpp/leveldb/third_party/benchmark/test/complexity_test.cc +213 -0
- package/cpp/leveldb/third_party/benchmark/test/cxx03_test.cc +63 -0
- package/cpp/leveldb/third_party/benchmark/test/diagnostics_test.cc +80 -0
- package/cpp/leveldb/third_party/benchmark/test/display_aggregates_only_test.cc +43 -0
- package/cpp/leveldb/third_party/benchmark/test/donotoptimize_assembly_test.cc +163 -0
- package/cpp/leveldb/third_party/benchmark/test/donotoptimize_test.cc +52 -0
- package/cpp/leveldb/third_party/benchmark/test/filter_test.cc +104 -0
- package/cpp/leveldb/third_party/benchmark/test/fixture_test.cc +51 -0
- package/cpp/leveldb/third_party/benchmark/test/internal_threading_test.cc +184 -0
- package/cpp/leveldb/third_party/benchmark/test/link_main_test.cc +8 -0
- package/cpp/leveldb/third_party/benchmark/test/map_test.cc +57 -0
- package/cpp/leveldb/third_party/benchmark/test/memory_manager_test.cc +44 -0
- package/cpp/leveldb/third_party/benchmark/test/multiple_ranges_test.cc +96 -0
- package/cpp/leveldb/third_party/benchmark/test/options_test.cc +75 -0
- package/cpp/leveldb/third_party/benchmark/test/output_test.h +213 -0
- package/cpp/leveldb/third_party/benchmark/test/output_test_helper.cc +515 -0
- package/cpp/leveldb/third_party/benchmark/test/register_benchmark_test.cc +184 -0
- package/cpp/leveldb/third_party/benchmark/test/report_aggregates_only_test.cc +39 -0
- package/cpp/leveldb/third_party/benchmark/test/reporter_output_test.cc +747 -0
- package/cpp/leveldb/third_party/benchmark/test/skip_with_error_test.cc +195 -0
- package/cpp/leveldb/third_party/benchmark/test/state_assembly_test.cc +68 -0
- package/cpp/leveldb/third_party/benchmark/test/statistics_gtest.cc +28 -0
- package/cpp/leveldb/third_party/benchmark/test/string_util_gtest.cc +153 -0
- package/cpp/leveldb/third_party/benchmark/test/templated_fixture_test.cc +28 -0
- package/cpp/leveldb/third_party/benchmark/test/user_counters_tabular_test.cc +285 -0
- package/cpp/leveldb/third_party/benchmark/test/user_counters_test.cc +531 -0
- package/cpp/leveldb/third_party/benchmark/test/user_counters_thousands_test.cc +173 -0
- package/cpp/leveldb/third_party/benchmark/tools/BUILD.bazel +19 -0
- package/cpp/leveldb/third_party/benchmark/tools/compare.py +429 -0
- package/cpp/leveldb/third_party/benchmark/tools/gbench/Inputs/test1_run1.json +119 -0
- package/cpp/leveldb/third_party/benchmark/tools/gbench/Inputs/test1_run2.json +119 -0
- package/cpp/leveldb/third_party/benchmark/tools/gbench/Inputs/test2_run.json +81 -0
- package/cpp/leveldb/third_party/benchmark/tools/gbench/Inputs/test3_run0.json +65 -0
- package/cpp/leveldb/third_party/benchmark/tools/gbench/Inputs/test3_run1.json +65 -0
- package/cpp/leveldb/third_party/benchmark/tools/gbench/__init__.py +8 -0
- package/cpp/leveldb/third_party/benchmark/tools/gbench/report.py +903 -0
- package/cpp/leveldb/third_party/benchmark/tools/gbench/util.py +163 -0
- package/cpp/leveldb/third_party/benchmark/tools/requirements.txt +1 -0
- package/cpp/leveldb/third_party/benchmark/tools/strip_asm.py +151 -0
- package/cpp/leveldb/third_party/googletest/.clang-format +4 -0
- package/cpp/leveldb/third_party/googletest/.travis.yml +73 -0
- package/cpp/leveldb/third_party/googletest/BUILD.bazel +179 -0
- package/cpp/leveldb/third_party/googletest/CMakeLists.txt +36 -0
- package/cpp/leveldb/third_party/googletest/CONTRIBUTING.md +142 -0
- package/cpp/leveldb/third_party/googletest/LICENSE +28 -0
- package/cpp/leveldb/third_party/googletest/README.md +132 -0
- package/cpp/leveldb/third_party/googletest/WORKSPACE +23 -0
- package/cpp/leveldb/third_party/googletest/appveyor.yml +154 -0
- package/cpp/leveldb/third_party/googletest/ci/build-linux-bazel.sh +37 -0
- package/cpp/leveldb/third_party/googletest/ci/build-platformio.sh +2 -0
- package/cpp/leveldb/third_party/googletest/ci/env-linux.sh +41 -0
- package/cpp/leveldb/third_party/googletest/ci/env-osx.sh +47 -0
- package/cpp/leveldb/third_party/googletest/ci/get-nprocessors.sh +48 -0
- package/cpp/leveldb/third_party/googletest/ci/install-linux.sh +49 -0
- package/cpp/leveldb/third_party/googletest/ci/install-osx.sh +40 -0
- package/cpp/leveldb/third_party/googletest/ci/install-platformio.sh +5 -0
- package/cpp/leveldb/third_party/googletest/ci/log-config.sh +51 -0
- package/cpp/leveldb/third_party/googletest/ci/travis.sh +44 -0
- package/cpp/leveldb/third_party/googletest/googlemock/CMakeLists.txt +233 -0
- package/cpp/leveldb/third_party/googletest/googlemock/CONTRIBUTORS +40 -0
- package/cpp/leveldb/third_party/googletest/googlemock/LICENSE +28 -0
- package/cpp/leveldb/third_party/googletest/googlemock/README.md +44 -0
- package/cpp/leveldb/third_party/googletest/googlemock/cmake/gmock.pc.in +10 -0
- package/cpp/leveldb/third_party/googletest/googlemock/cmake/gmock_main.pc.in +10 -0
- package/cpp/leveldb/third_party/googletest/googlemock/docs/cheat_sheet.md +770 -0
- package/cpp/leveldb/third_party/googletest/googlemock/docs/cook_book.md +4270 -0
- package/cpp/leveldb/third_party/googletest/googlemock/docs/for_dummies.md +700 -0
- package/cpp/leveldb/third_party/googletest/googlemock/docs/gmock_faq.md +396 -0
- package/cpp/leveldb/third_party/googletest/googlemock/docs/pump_manual.md +187 -0
- package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/gmock-actions.h +1193 -0
- package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/gmock-cardinalities.h +157 -0
- package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/gmock-function-mocker.h +276 -0
- package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/gmock-generated-actions.h +1884 -0
- package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/gmock-generated-actions.h.pump +627 -0
- package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/gmock-generated-function-mockers.h +752 -0
- package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/gmock-generated-function-mockers.h.pump +227 -0
- package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/gmock-generated-matchers.h +1097 -0
- package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/gmock-generated-matchers.h.pump +346 -0
- package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/gmock-matchers.h +4591 -0
- package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/gmock-more-actions.h +162 -0
- package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/gmock-more-matchers.h +92 -0
- package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/gmock-nice-strict.h +215 -0
- package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/gmock-spec-builders.h +1985 -0
- package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/gmock.h +101 -0
- package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/internal/custom/README.md +16 -0
- package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/internal/custom/gmock-generated-actions.h +10 -0
- package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/internal/custom/gmock-generated-actions.h.pump +12 -0
- package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/internal/custom/gmock-matchers.h +36 -0
- package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/internal/custom/gmock-port.h +39 -0
- package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/internal/gmock-internal-utils.h +472 -0
- package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/internal/gmock-port.h +87 -0
- package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/internal/gmock-pp.h +271 -0
- package/cpp/leveldb/third_party/googletest/googlemock/scripts/README.md +5 -0
- package/cpp/leveldb/third_party/googletest/googlemock/scripts/fuse_gmock_files.py +240 -0
- package/cpp/leveldb/third_party/googletest/googlemock/scripts/generator/LICENSE +203 -0
- package/cpp/leveldb/third_party/googletest/googlemock/scripts/generator/README +34 -0
- package/cpp/leveldb/third_party/googletest/googlemock/scripts/generator/README.cppclean +115 -0
- package/cpp/leveldb/third_party/googletest/googlemock/scripts/generator/cpp/__init__.py +0 -0
- package/cpp/leveldb/third_party/googletest/googlemock/scripts/generator/cpp/ast.py +1761 -0
- package/cpp/leveldb/third_party/googletest/googlemock/scripts/generator/cpp/gmock_class.py +248 -0
- package/cpp/leveldb/third_party/googletest/googlemock/scripts/generator/cpp/gmock_class_test.py +540 -0
- package/cpp/leveldb/third_party/googletest/googlemock/scripts/generator/cpp/keywords.py +56 -0
- package/cpp/leveldb/third_party/googletest/googlemock/scripts/generator/cpp/tokenize.py +284 -0
- package/cpp/leveldb/third_party/googletest/googlemock/scripts/generator/cpp/utils.py +37 -0
- package/cpp/leveldb/third_party/googletest/googlemock/scripts/generator/gmock_gen.py +30 -0
- package/cpp/leveldb/third_party/googletest/googlemock/scripts/pump.py +856 -0
- package/cpp/leveldb/third_party/googletest/googlemock/src/gmock-all.cc +46 -0
- package/cpp/leveldb/third_party/googletest/googlemock/src/gmock-cardinalities.cc +155 -0
- package/cpp/leveldb/third_party/googletest/googlemock/src/gmock-internal-utils.cc +200 -0
- package/cpp/leveldb/third_party/googletest/googlemock/src/gmock-matchers.cc +462 -0
- package/cpp/leveldb/third_party/googletest/googlemock/src/gmock-spec-builders.cc +892 -0
- package/cpp/leveldb/third_party/googletest/googlemock/src/gmock.cc +213 -0
- package/cpp/leveldb/third_party/googletest/googlemock/src/gmock_main.cc +72 -0
- package/cpp/leveldb/third_party/googletest/googlemock/test/BUILD.bazel +110 -0
- package/cpp/leveldb/third_party/googletest/googlemock/test/gmock-actions_test.cc +1507 -0
- package/cpp/leveldb/third_party/googletest/googlemock/test/gmock-cardinalities_test.cc +429 -0
- package/cpp/leveldb/third_party/googletest/googlemock/test/gmock-function-mocker_nc.cc +16 -0
- package/cpp/leveldb/third_party/googletest/googlemock/test/gmock-function-mocker_nc_test.py +43 -0
- package/cpp/leveldb/third_party/googletest/googlemock/test/gmock-function-mocker_test.cc +696 -0
- package/cpp/leveldb/third_party/googletest/googlemock/test/gmock-generated-actions_test.cc +1064 -0
- package/cpp/leveldb/third_party/googletest/googlemock/test/gmock-generated-function-mockers_test.cc +659 -0
- package/cpp/leveldb/third_party/googletest/googlemock/test/gmock-generated-matchers_test.cc +1323 -0
- package/cpp/leveldb/third_party/googletest/googlemock/test/gmock-internal-utils_test.cc +732 -0
- package/cpp/leveldb/third_party/googletest/googlemock/test/gmock-matchers_test.cc +6913 -0
- package/cpp/leveldb/third_party/googletest/googlemock/test/gmock-more-actions_test.cc +698 -0
- package/cpp/leveldb/third_party/googletest/googlemock/test/gmock-nice-strict_test.cc +500 -0
- package/cpp/leveldb/third_party/googletest/googlemock/test/gmock-port_test.cc +42 -0
- package/cpp/leveldb/third_party/googletest/googlemock/test/gmock-pp-string_test.cc +206 -0
- package/cpp/leveldb/third_party/googletest/googlemock/test/gmock-pp_test.cc +83 -0
- package/cpp/leveldb/third_party/googletest/googlemock/test/gmock-spec-builders_test.cc +2775 -0
- package/cpp/leveldb/third_party/googletest/googlemock/test/gmock_all_test.cc +49 -0
- package/cpp/leveldb/third_party/googletest/googlemock/test/gmock_ex_test.cc +80 -0
- package/cpp/leveldb/third_party/googletest/googlemock/test/gmock_leak_test.py +104 -0
- package/cpp/leveldb/third_party/googletest/googlemock/test/gmock_leak_test_.cc +99 -0
- package/cpp/leveldb/third_party/googletest/googlemock/test/gmock_link2_test.cc +39 -0
- package/cpp/leveldb/third_party/googletest/googlemock/test/gmock_link_test.cc +39 -0
- package/cpp/leveldb/third_party/googletest/googlemock/test/gmock_link_test.h +690 -0
- package/cpp/leveldb/third_party/googletest/googlemock/test/gmock_output_test.py +183 -0
- package/cpp/leveldb/third_party/googletest/googlemock/test/gmock_output_test_.cc +309 -0
- package/cpp/leveldb/third_party/googletest/googlemock/test/gmock_output_test_golden.txt +317 -0
- package/cpp/leveldb/third_party/googletest/googlemock/test/gmock_stress_test.cc +240 -0
- package/cpp/leveldb/third_party/googletest/googlemock/test/gmock_test.cc +181 -0
- package/cpp/leveldb/third_party/googletest/googlemock/test/gmock_test_utils.py +108 -0
- package/cpp/leveldb/third_party/googletest/googlemock/test/pump_test.py +182 -0
- package/cpp/leveldb/third_party/googletest/googletest/CMakeLists.txt +329 -0
- package/cpp/leveldb/third_party/googletest/googletest/CONTRIBUTORS +38 -0
- package/cpp/leveldb/third_party/googletest/googletest/LICENSE +28 -0
- package/cpp/leveldb/third_party/googletest/googletest/README.md +244 -0
- package/cpp/leveldb/third_party/googletest/googletest/cmake/Config.cmake.in +9 -0
- package/cpp/leveldb/third_party/googletest/googletest/cmake/gtest.pc.in +9 -0
- package/cpp/leveldb/third_party/googletest/googletest/cmake/gtest_main.pc.in +10 -0
- package/cpp/leveldb/third_party/googletest/googletest/cmake/internal_utils.cmake +358 -0
- package/cpp/leveldb/third_party/googletest/googletest/cmake/libgtest.la.in +21 -0
- package/cpp/leveldb/third_party/googletest/googletest/docs/advanced.md +2567 -0
- package/cpp/leveldb/third_party/googletest/googletest/docs/faq.md +753 -0
- package/cpp/leveldb/third_party/googletest/googletest/docs/pkgconfig.md +219 -0
- package/cpp/leveldb/third_party/googletest/googletest/docs/primer.md +579 -0
- package/cpp/leveldb/third_party/googletest/googletest/docs/samples.md +22 -0
- package/cpp/leveldb/third_party/googletest/googletest/include/gtest/gtest-death-test.h +343 -0
- package/cpp/leveldb/third_party/googletest/googletest/include/gtest/gtest-matchers.h +750 -0
- package/cpp/leveldb/third_party/googletest/googletest/include/gtest/gtest-message.h +219 -0
- package/cpp/leveldb/third_party/googletest/googletest/include/gtest/gtest-param-test.h +514 -0
- package/cpp/leveldb/third_party/googletest/googletest/include/gtest/gtest-printers.h +928 -0
- package/cpp/leveldb/third_party/googletest/googletest/include/gtest/gtest-spi.h +238 -0
- package/cpp/leveldb/third_party/googletest/googletest/include/gtest/gtest-test-part.h +184 -0
- package/cpp/leveldb/third_party/googletest/googletest/include/gtest/gtest-typed-test.h +337 -0
- package/cpp/leveldb/third_party/googletest/googletest/include/gtest/gtest.h +2477 -0
- package/cpp/leveldb/third_party/googletest/googletest/include/gtest/gtest_pred_impl.h +359 -0
- package/cpp/leveldb/third_party/googletest/googletest/include/gtest/gtest_prod.h +61 -0
- package/cpp/leveldb/third_party/googletest/googletest/include/gtest/internal/custom/README.md +56 -0
- package/cpp/leveldb/third_party/googletest/googletest/include/gtest/internal/custom/gtest-port.h +37 -0
- package/cpp/leveldb/third_party/googletest/googletest/include/gtest/internal/custom/gtest-printers.h +42 -0
- package/cpp/leveldb/third_party/googletest/googletest/include/gtest/internal/custom/gtest.h +37 -0
- package/cpp/leveldb/third_party/googletest/googletest/include/gtest/internal/gtest-death-test-internal.h +304 -0
- package/cpp/leveldb/third_party/googletest/googletest/include/gtest/internal/gtest-filepath.h +211 -0
- package/cpp/leveldb/third_party/googletest/googletest/include/gtest/internal/gtest-internal.h +1411 -0
- package/cpp/leveldb/third_party/googletest/googletest/include/gtest/internal/gtest-param-util.h +880 -0
- package/cpp/leveldb/third_party/googletest/googletest/include/gtest/internal/gtest-port-arch.h +111 -0
- package/cpp/leveldb/third_party/googletest/googletest/include/gtest/internal/gtest-port.h +2227 -0
- package/cpp/leveldb/third_party/googletest/googletest/include/gtest/internal/gtest-string.h +171 -0
- package/cpp/leveldb/third_party/googletest/googletest/include/gtest/internal/gtest-type-util.h +183 -0
- package/cpp/leveldb/third_party/googletest/googletest/samples/prime_tables.h +126 -0
- package/cpp/leveldb/third_party/googletest/googletest/samples/sample1.cc +66 -0
- package/cpp/leveldb/third_party/googletest/googletest/samples/sample1.h +41 -0
- package/cpp/leveldb/third_party/googletest/googletest/samples/sample10_unittest.cc +139 -0
- package/cpp/leveldb/third_party/googletest/googletest/samples/sample1_unittest.cc +151 -0
- package/cpp/leveldb/third_party/googletest/googletest/samples/sample2.cc +54 -0
- package/cpp/leveldb/third_party/googletest/googletest/samples/sample2.h +81 -0
- package/cpp/leveldb/third_party/googletest/googletest/samples/sample2_unittest.cc +107 -0
- package/cpp/leveldb/third_party/googletest/googletest/samples/sample3-inl.h +172 -0
- package/cpp/leveldb/third_party/googletest/googletest/samples/sample3_unittest.cc +149 -0
- package/cpp/leveldb/third_party/googletest/googletest/samples/sample4.cc +54 -0
- package/cpp/leveldb/third_party/googletest/googletest/samples/sample4.h +53 -0
- package/cpp/leveldb/third_party/googletest/googletest/samples/sample4_unittest.cc +53 -0
- package/cpp/leveldb/third_party/googletest/googletest/samples/sample5_unittest.cc +196 -0
- package/cpp/leveldb/third_party/googletest/googletest/samples/sample6_unittest.cc +224 -0
- package/cpp/leveldb/third_party/googletest/googletest/samples/sample7_unittest.cc +117 -0
- package/cpp/leveldb/third_party/googletest/googletest/samples/sample8_unittest.cc +154 -0
- package/cpp/leveldb/third_party/googletest/googletest/samples/sample9_unittest.cc +156 -0
- package/cpp/leveldb/third_party/googletest/googletest/scripts/README.md +5 -0
- package/cpp/leveldb/third_party/googletest/googletest/scripts/common.py +83 -0
- package/cpp/leveldb/third_party/googletest/googletest/scripts/fuse_gtest_files.py +253 -0
- package/cpp/leveldb/third_party/googletest/googletest/scripts/gen_gtest_pred_impl.py +734 -0
- package/cpp/leveldb/third_party/googletest/googletest/scripts/gtest-config.in +274 -0
- package/cpp/leveldb/third_party/googletest/googletest/scripts/release_docs.py +158 -0
- package/cpp/leveldb/third_party/googletest/googletest/scripts/run_with_path.py +32 -0
- package/cpp/leveldb/third_party/googletest/googletest/scripts/upload.py +1402 -0
- package/cpp/leveldb/third_party/googletest/googletest/scripts/upload_gtest.py +78 -0
- package/cpp/leveldb/third_party/googletest/googletest/src/gtest-all.cc +48 -0
- package/cpp/leveldb/third_party/googletest/googletest/src/gtest-death-test.cc +1653 -0
- package/cpp/leveldb/third_party/googletest/googletest/src/gtest-filepath.cc +382 -0
- package/cpp/leveldb/third_party/googletest/googletest/src/gtest-internal-inl.h +1211 -0
- package/cpp/leveldb/third_party/googletest/googletest/src/gtest-matchers.cc +97 -0
- package/cpp/leveldb/third_party/googletest/googletest/src/gtest-port.cc +1399 -0
- package/cpp/leveldb/third_party/googletest/googletest/src/gtest-printers.cc +442 -0
- package/cpp/leveldb/third_party/googletest/googletest/src/gtest-test-part.cc +108 -0
- package/cpp/leveldb/third_party/googletest/googletest/src/gtest-typed-test.cc +118 -0
- package/cpp/leveldb/third_party/googletest/googletest/src/gtest.cc +6180 -0
- package/cpp/leveldb/third_party/googletest/googletest/src/gtest_main.cc +54 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/BUILD.bazel +529 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/googletest-break-on-failure-unittest.py +208 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/googletest-break-on-failure-unittest_.cc +86 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/googletest-catch-exceptions-test.py +236 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/googletest-catch-exceptions-test_.cc +293 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/googletest-color-test.py +127 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/googletest-color-test_.cc +62 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/googletest-death-test-test.cc +1516 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/googletest-death-test_ex_test.cc +92 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/googletest-env-var-test.py +117 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/googletest-env-var-test_.cc +122 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/googletest-filepath-test.cc +649 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/googletest-filter-unittest.py +639 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/googletest-filter-unittest_.cc +137 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/googletest-json-outfiles-test.py +191 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/googletest-json-output-unittest.py +778 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/googletest-list-tests-unittest.py +205 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/googletest-list-tests-unittest_.cc +156 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/googletest-listener-test.cc +518 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/googletest-message-test.cc +158 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/googletest-options-test.cc +216 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/googletest-output-test-golden-lin.txt +1137 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/googletest-output-test.py +346 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/googletest-output-test_.cc +1149 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/googletest-param-test-invalid-name1-test.py +63 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/googletest-param-test-invalid-name1-test_.cc +50 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/googletest-param-test-invalid-name2-test.py +62 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/googletest-param-test-invalid-name2-test_.cc +55 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/googletest-param-test-test.cc +1086 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/googletest-param-test-test.h +51 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/googletest-param-test2-test.cc +61 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/googletest-port-test.cc +1272 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/googletest-printers-test.cc +1619 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/googletest-shuffle-test.py +323 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/googletest-shuffle-test_.cc +101 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/googletest-test-part-test.cc +230 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/googletest-test2_test.cc +61 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/googletest-throw-on-failure-test.py +168 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/googletest-throw-on-failure-test_.cc +71 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/googletest-uninitialized-test.py +67 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/googletest-uninitialized-test_.cc +42 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/gtest-typed-test2_test.cc +44 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/gtest-typed-test_test.cc +462 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/gtest-typed-test_test.h +65 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/gtest-unittest-api_test.cc +341 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/gtest_all_test.cc +46 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/gtest_assert_by_exception_test.cc +116 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/gtest_environment_test.cc +188 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/gtest_help_test.py +170 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/gtest_help_test_.cc +45 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/gtest_json_test_utils.py +60 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/gtest_list_output_unittest.py +141 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/gtest_list_output_unittest_.cc +51 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/gtest_main_unittest.cc +44 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/gtest_no_test_unittest.cc +54 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/gtest_pred_impl_unittest.cc +2427 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/gtest_premature_exit_test.cc +126 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/gtest_prod_test.cc +56 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/gtest_repeat_test.cc +233 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/gtest_skip_check_output_test.py +59 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/gtest_skip_environment_check_output_test.py +54 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/gtest_skip_in_environment_setup_test.cc +49 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/gtest_skip_test.cc +55 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/gtest_sole_header_test.cc +56 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/gtest_stress_test.cc +248 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/gtest_test_macro_stack_footprint_test.cc +89 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/gtest_test_utils.py +314 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/gtest_testbridge_test.py +63 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/gtest_testbridge_test_.cc +43 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/gtest_throw_on_failure_ex_test.cc +90 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/gtest_unittest.cc +7496 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/gtest_xml_outfile1_test_.cc +43 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/gtest_xml_outfile2_test_.cc +43 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/gtest_xml_outfiles_test.py +135 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/gtest_xml_output_unittest.py +389 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/gtest_xml_output_unittest_.cc +188 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/gtest_xml_test_utils.py +196 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/production.cc +35 -0
- package/cpp/leveldb/third_party/googletest/googletest/test/production.h +54 -0
- package/cpp/leveldb/third_party/googletest/library.json +66 -0
- package/cpp/leveldb/third_party/googletest/platformio.ini +47 -0
- package/cpp/leveldb/util/arena.cc +66 -0
- package/cpp/leveldb/util/arena.h +71 -0
- package/cpp/leveldb/util/arena_test.cc +66 -0
- package/cpp/leveldb/util/bloom.cc +92 -0
- package/cpp/leveldb/util/bloom_test.cc +159 -0
- package/cpp/leveldb/util/cache.cc +401 -0
- package/cpp/leveldb/util/cache_test.cc +229 -0
- package/cpp/leveldb/util/coding.cc +166 -0
- package/cpp/leveldb/util/coding.h +122 -0
- package/cpp/leveldb/util/coding_test.cc +198 -0
- package/cpp/leveldb/util/comparator.cc +75 -0
- package/cpp/leveldb/util/crc32c.cc +380 -0
- package/cpp/leveldb/util/crc32c.h +43 -0
- package/cpp/leveldb/util/crc32c_test.cc +61 -0
- package/cpp/leveldb/util/env.cc +108 -0
- package/cpp/leveldb/util/env_posix.cc +893 -0
- package/cpp/leveldb/util/env_posix_test.cc +353 -0
- package/cpp/leveldb/util/env_posix_test_helper.h +28 -0
- package/cpp/leveldb/util/env_test.cc +240 -0
- package/cpp/leveldb/util/env_windows.cc +796 -0
- package/cpp/leveldb/util/env_windows_test.cc +65 -0
- package/cpp/leveldb/util/env_windows_test_helper.h +25 -0
- package/cpp/leveldb/util/filter_policy.cc +11 -0
- package/cpp/leveldb/util/hash.cc +55 -0
- package/cpp/leveldb/util/hash.h +19 -0
- package/cpp/leveldb/util/hash_test.cc +46 -0
- package/cpp/leveldb/util/histogram.cc +272 -0
- package/cpp/leveldb/util/histogram.h +44 -0
- package/cpp/leveldb/util/logging.cc +82 -0
- package/cpp/leveldb/util/logging.h +44 -0
- package/cpp/leveldb/util/logging_test.cc +145 -0
- package/cpp/leveldb/util/mutexlock.h +39 -0
- package/cpp/leveldb/util/no_destructor.h +46 -0
- package/cpp/leveldb/util/no_destructor_test.cc +49 -0
- package/cpp/leveldb/util/options.cc +14 -0
- package/cpp/leveldb/util/posix_logger.h +130 -0
- package/cpp/leveldb/util/random.h +63 -0
- package/cpp/leveldb/util/status.cc +77 -0
- package/cpp/leveldb/util/status_test.cc +44 -0
- package/cpp/leveldb/util/testutil.cc +51 -0
- package/cpp/leveldb/util/testutil.h +82 -0
- package/cpp/leveldb/util/windows_logger.h +124 -0
- package/cpp/react-native-leveldb.cpp +694 -0
- package/cpp/react-native-leveldb.h +4 -0
- package/ios/Leveldb.h +9 -0
- package/ios/Leveldb.mm +35 -0
- package/ios/Leveldb.xcodeproj/project.pbxproj +288 -0
- package/lib/commonjs/fake.js +181 -0
- package/lib/commonjs/fake.js.map +1 -0
- package/lib/commonjs/fake.test.js +30 -0
- package/lib/commonjs/fake.test.js.map +1 -0
- package/lib/commonjs/index.js +172 -0
- package/lib/commonjs/index.js.map +1 -0
- package/lib/commonjs/package.json +1 -0
- package/lib/module/fake.js +171 -0
- package/lib/module/fake.js.map +1 -0
- package/lib/module/fake.test.js +30 -0
- package/lib/module/fake.test.js.map +1 -0
- package/lib/module/index.js +165 -0
- package/lib/module/index.js.map +1 -0
- package/lib/typescript/fake.d.ts +34 -0
- package/lib/typescript/fake.d.ts.map +1 -0
- package/lib/typescript/fake.test.d.ts +2 -0
- package/lib/typescript/fake.test.d.ts.map +1 -0
- package/lib/typescript/index.d.ts +72 -0
- package/lib/typescript/index.d.ts.map +1 -0
- package/package.json +157 -0
- package/rn-leveldb.podspec +30 -0
- package/src/fake.test.ts +37 -0
- package/src/fake.ts +203 -0
- package/src/index.ts +291 -0
|
@@ -0,0 +1,834 @@
|
|
|
1
|
+
// Copyright (c) 2011 The LevelDB Authors. All rights reserved.
|
|
2
|
+
// Use of this source code is governed by a BSD-style license that can be
|
|
3
|
+
// found in the LICENSE file. See the AUTHORS file for names of contributors.
|
|
4
|
+
|
|
5
|
+
#include "leveldb/table.h"
|
|
6
|
+
|
|
7
|
+
#include <map>
|
|
8
|
+
#include <string>
|
|
9
|
+
|
|
10
|
+
#include "gtest/gtest.h"
|
|
11
|
+
#include "db/dbformat.h"
|
|
12
|
+
#include "db/memtable.h"
|
|
13
|
+
#include "db/write_batch_internal.h"
|
|
14
|
+
#include "leveldb/db.h"
|
|
15
|
+
#include "leveldb/env.h"
|
|
16
|
+
#include "leveldb/iterator.h"
|
|
17
|
+
#include "leveldb/table_builder.h"
|
|
18
|
+
#include "table/block.h"
|
|
19
|
+
#include "table/block_builder.h"
|
|
20
|
+
#include "table/format.h"
|
|
21
|
+
#include "util/random.h"
|
|
22
|
+
#include "util/testutil.h"
|
|
23
|
+
|
|
24
|
+
namespace leveldb {
|
|
25
|
+
|
|
26
|
+
// Return reverse of "key".
|
|
27
|
+
// Used to test non-lexicographic comparators.
|
|
28
|
+
static std::string Reverse(const Slice& key) {
|
|
29
|
+
std::string str(key.ToString());
|
|
30
|
+
std::string rev("");
|
|
31
|
+
for (std::string::reverse_iterator rit = str.rbegin(); rit != str.rend();
|
|
32
|
+
++rit) {
|
|
33
|
+
rev.push_back(*rit);
|
|
34
|
+
}
|
|
35
|
+
return rev;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
namespace {
|
|
39
|
+
class ReverseKeyComparator : public Comparator {
|
|
40
|
+
public:
|
|
41
|
+
const char* Name() const override {
|
|
42
|
+
return "leveldb.ReverseBytewiseComparator";
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
int Compare(const Slice& a, const Slice& b) const override {
|
|
46
|
+
return BytewiseComparator()->Compare(Reverse(a), Reverse(b));
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
void FindShortestSeparator(std::string* start,
|
|
50
|
+
const Slice& limit) const override {
|
|
51
|
+
std::string s = Reverse(*start);
|
|
52
|
+
std::string l = Reverse(limit);
|
|
53
|
+
BytewiseComparator()->FindShortestSeparator(&s, l);
|
|
54
|
+
*start = Reverse(s);
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
void FindShortSuccessor(std::string* key) const override {
|
|
58
|
+
std::string s = Reverse(*key);
|
|
59
|
+
BytewiseComparator()->FindShortSuccessor(&s);
|
|
60
|
+
*key = Reverse(s);
|
|
61
|
+
}
|
|
62
|
+
};
|
|
63
|
+
} // namespace
|
|
64
|
+
static ReverseKeyComparator reverse_key_comparator;
|
|
65
|
+
|
|
66
|
+
static void Increment(const Comparator* cmp, std::string* key) {
|
|
67
|
+
if (cmp == BytewiseComparator()) {
|
|
68
|
+
key->push_back('\0');
|
|
69
|
+
} else {
|
|
70
|
+
assert(cmp == &reverse_key_comparator);
|
|
71
|
+
std::string rev = Reverse(*key);
|
|
72
|
+
rev.push_back('\0');
|
|
73
|
+
*key = Reverse(rev);
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
// An STL comparator that uses a Comparator
|
|
78
|
+
namespace {
|
|
79
|
+
struct STLLessThan {
|
|
80
|
+
const Comparator* cmp;
|
|
81
|
+
|
|
82
|
+
STLLessThan() : cmp(BytewiseComparator()) {}
|
|
83
|
+
STLLessThan(const Comparator* c) : cmp(c) {}
|
|
84
|
+
bool operator()(const std::string& a, const std::string& b) const {
|
|
85
|
+
return cmp->Compare(Slice(a), Slice(b)) < 0;
|
|
86
|
+
}
|
|
87
|
+
};
|
|
88
|
+
} // namespace
|
|
89
|
+
|
|
90
|
+
class StringSink : public WritableFile {
|
|
91
|
+
public:
|
|
92
|
+
~StringSink() override = default;
|
|
93
|
+
|
|
94
|
+
const std::string& contents() const { return contents_; }
|
|
95
|
+
|
|
96
|
+
Status Close() override { return Status::OK(); }
|
|
97
|
+
Status Flush() override { return Status::OK(); }
|
|
98
|
+
Status Sync() override { return Status::OK(); }
|
|
99
|
+
|
|
100
|
+
Status Append(const Slice& data) override {
|
|
101
|
+
contents_.append(data.data(), data.size());
|
|
102
|
+
return Status::OK();
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
private:
|
|
106
|
+
std::string contents_;
|
|
107
|
+
};
|
|
108
|
+
|
|
109
|
+
class StringSource : public RandomAccessFile {
|
|
110
|
+
public:
|
|
111
|
+
StringSource(const Slice& contents)
|
|
112
|
+
: contents_(contents.data(), contents.size()) {}
|
|
113
|
+
|
|
114
|
+
~StringSource() override = default;
|
|
115
|
+
|
|
116
|
+
uint64_t Size() const { return contents_.size(); }
|
|
117
|
+
|
|
118
|
+
Status Read(uint64_t offset, size_t n, Slice* result,
|
|
119
|
+
char* scratch) const override {
|
|
120
|
+
if (offset >= contents_.size()) {
|
|
121
|
+
return Status::InvalidArgument("invalid Read offset");
|
|
122
|
+
}
|
|
123
|
+
if (offset + n > contents_.size()) {
|
|
124
|
+
n = contents_.size() - offset;
|
|
125
|
+
}
|
|
126
|
+
std::memcpy(scratch, &contents_[offset], n);
|
|
127
|
+
*result = Slice(scratch, n);
|
|
128
|
+
return Status::OK();
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
private:
|
|
132
|
+
std::string contents_;
|
|
133
|
+
};
|
|
134
|
+
|
|
135
|
+
typedef std::map<std::string, std::string, STLLessThan> KVMap;
|
|
136
|
+
|
|
137
|
+
// Helper class for tests to unify the interface between
|
|
138
|
+
// BlockBuilder/TableBuilder and Block/Table.
|
|
139
|
+
class Constructor {
|
|
140
|
+
public:
|
|
141
|
+
explicit Constructor(const Comparator* cmp) : data_(STLLessThan(cmp)) {}
|
|
142
|
+
virtual ~Constructor() = default;
|
|
143
|
+
|
|
144
|
+
void Add(const std::string& key, const Slice& value) {
|
|
145
|
+
data_[key] = value.ToString();
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
// Finish constructing the data structure with all the keys that have
|
|
149
|
+
// been added so far. Returns the keys in sorted order in "*keys"
|
|
150
|
+
// and stores the key/value pairs in "*kvmap"
|
|
151
|
+
void Finish(const Options& options, std::vector<std::string>* keys,
|
|
152
|
+
KVMap* kvmap) {
|
|
153
|
+
*kvmap = data_;
|
|
154
|
+
keys->clear();
|
|
155
|
+
for (const auto& kvp : data_) {
|
|
156
|
+
keys->push_back(kvp.first);
|
|
157
|
+
}
|
|
158
|
+
data_.clear();
|
|
159
|
+
Status s = FinishImpl(options, *kvmap);
|
|
160
|
+
ASSERT_TRUE(s.ok()) << s.ToString();
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
// Construct the data structure from the data in "data"
|
|
164
|
+
virtual Status FinishImpl(const Options& options, const KVMap& data) = 0;
|
|
165
|
+
|
|
166
|
+
virtual Iterator* NewIterator() const = 0;
|
|
167
|
+
|
|
168
|
+
const KVMap& data() const { return data_; }
|
|
169
|
+
|
|
170
|
+
virtual DB* db() const { return nullptr; } // Overridden in DBConstructor
|
|
171
|
+
|
|
172
|
+
private:
|
|
173
|
+
KVMap data_;
|
|
174
|
+
};
|
|
175
|
+
|
|
176
|
+
class BlockConstructor : public Constructor {
|
|
177
|
+
public:
|
|
178
|
+
explicit BlockConstructor(const Comparator* cmp)
|
|
179
|
+
: Constructor(cmp), comparator_(cmp), block_(nullptr) {}
|
|
180
|
+
~BlockConstructor() override { delete block_; }
|
|
181
|
+
Status FinishImpl(const Options& options, const KVMap& data) override {
|
|
182
|
+
delete block_;
|
|
183
|
+
block_ = nullptr;
|
|
184
|
+
BlockBuilder builder(&options);
|
|
185
|
+
|
|
186
|
+
for (const auto& kvp : data) {
|
|
187
|
+
builder.Add(kvp.first, kvp.second);
|
|
188
|
+
}
|
|
189
|
+
// Open the block
|
|
190
|
+
data_ = builder.Finish().ToString();
|
|
191
|
+
BlockContents contents;
|
|
192
|
+
contents.data = data_;
|
|
193
|
+
contents.cachable = false;
|
|
194
|
+
contents.heap_allocated = false;
|
|
195
|
+
block_ = new Block(contents);
|
|
196
|
+
return Status::OK();
|
|
197
|
+
}
|
|
198
|
+
Iterator* NewIterator() const override {
|
|
199
|
+
return block_->NewIterator(comparator_);
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
private:
|
|
203
|
+
const Comparator* const comparator_;
|
|
204
|
+
std::string data_;
|
|
205
|
+
Block* block_;
|
|
206
|
+
|
|
207
|
+
BlockConstructor();
|
|
208
|
+
};
|
|
209
|
+
|
|
210
|
+
class TableConstructor : public Constructor {
|
|
211
|
+
public:
|
|
212
|
+
TableConstructor(const Comparator* cmp)
|
|
213
|
+
: Constructor(cmp), source_(nullptr), table_(nullptr) {}
|
|
214
|
+
~TableConstructor() override { Reset(); }
|
|
215
|
+
Status FinishImpl(const Options& options, const KVMap& data) override {
|
|
216
|
+
Reset();
|
|
217
|
+
StringSink sink;
|
|
218
|
+
TableBuilder builder(options, &sink);
|
|
219
|
+
|
|
220
|
+
for (const auto& kvp : data) {
|
|
221
|
+
builder.Add(kvp.first, kvp.second);
|
|
222
|
+
EXPECT_LEVELDB_OK(builder.status());
|
|
223
|
+
}
|
|
224
|
+
Status s = builder.Finish();
|
|
225
|
+
EXPECT_LEVELDB_OK(s);
|
|
226
|
+
|
|
227
|
+
EXPECT_EQ(sink.contents().size(), builder.FileSize());
|
|
228
|
+
|
|
229
|
+
// Open the table
|
|
230
|
+
source_ = new StringSource(sink.contents());
|
|
231
|
+
Options table_options;
|
|
232
|
+
table_options.comparator = options.comparator;
|
|
233
|
+
return Table::Open(table_options, source_, sink.contents().size(), &table_);
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
Iterator* NewIterator() const override {
|
|
237
|
+
return table_->NewIterator(ReadOptions());
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
uint64_t ApproximateOffsetOf(const Slice& key) const {
|
|
241
|
+
return table_->ApproximateOffsetOf(key);
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
private:
|
|
245
|
+
void Reset() {
|
|
246
|
+
delete table_;
|
|
247
|
+
delete source_;
|
|
248
|
+
table_ = nullptr;
|
|
249
|
+
source_ = nullptr;
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
StringSource* source_;
|
|
253
|
+
Table* table_;
|
|
254
|
+
|
|
255
|
+
TableConstructor();
|
|
256
|
+
};
|
|
257
|
+
|
|
258
|
+
// A helper class that converts internal format keys into user keys
|
|
259
|
+
class KeyConvertingIterator : public Iterator {
|
|
260
|
+
public:
|
|
261
|
+
explicit KeyConvertingIterator(Iterator* iter) : iter_(iter) {}
|
|
262
|
+
|
|
263
|
+
KeyConvertingIterator(const KeyConvertingIterator&) = delete;
|
|
264
|
+
KeyConvertingIterator& operator=(const KeyConvertingIterator&) = delete;
|
|
265
|
+
|
|
266
|
+
~KeyConvertingIterator() override { delete iter_; }
|
|
267
|
+
|
|
268
|
+
bool Valid() const override { return iter_->Valid(); }
|
|
269
|
+
void Seek(const Slice& target) override {
|
|
270
|
+
ParsedInternalKey ikey(target, kMaxSequenceNumber, kTypeValue);
|
|
271
|
+
std::string encoded;
|
|
272
|
+
AppendInternalKey(&encoded, ikey);
|
|
273
|
+
iter_->Seek(encoded);
|
|
274
|
+
}
|
|
275
|
+
void SeekToFirst() override { iter_->SeekToFirst(); }
|
|
276
|
+
void SeekToLast() override { iter_->SeekToLast(); }
|
|
277
|
+
void Next() override { iter_->Next(); }
|
|
278
|
+
void Prev() override { iter_->Prev(); }
|
|
279
|
+
|
|
280
|
+
Slice key() const override {
|
|
281
|
+
assert(Valid());
|
|
282
|
+
ParsedInternalKey key;
|
|
283
|
+
if (!ParseInternalKey(iter_->key(), &key)) {
|
|
284
|
+
status_ = Status::Corruption("malformed internal key");
|
|
285
|
+
return Slice("corrupted key");
|
|
286
|
+
}
|
|
287
|
+
return key.user_key;
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
Slice value() const override { return iter_->value(); }
|
|
291
|
+
Status status() const override {
|
|
292
|
+
return status_.ok() ? iter_->status() : status_;
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
private:
|
|
296
|
+
mutable Status status_;
|
|
297
|
+
Iterator* iter_;
|
|
298
|
+
};
|
|
299
|
+
|
|
300
|
+
class MemTableConstructor : public Constructor {
|
|
301
|
+
public:
|
|
302
|
+
explicit MemTableConstructor(const Comparator* cmp)
|
|
303
|
+
: Constructor(cmp), internal_comparator_(cmp) {
|
|
304
|
+
memtable_ = new MemTable(internal_comparator_);
|
|
305
|
+
memtable_->Ref();
|
|
306
|
+
}
|
|
307
|
+
~MemTableConstructor() override { memtable_->Unref(); }
|
|
308
|
+
Status FinishImpl(const Options& options, const KVMap& data) override {
|
|
309
|
+
memtable_->Unref();
|
|
310
|
+
memtable_ = new MemTable(internal_comparator_);
|
|
311
|
+
memtable_->Ref();
|
|
312
|
+
int seq = 1;
|
|
313
|
+
for (const auto& kvp : data) {
|
|
314
|
+
memtable_->Add(seq, kTypeValue, kvp.first, kvp.second);
|
|
315
|
+
seq++;
|
|
316
|
+
}
|
|
317
|
+
return Status::OK();
|
|
318
|
+
}
|
|
319
|
+
Iterator* NewIterator() const override {
|
|
320
|
+
return new KeyConvertingIterator(memtable_->NewIterator());
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
private:
|
|
324
|
+
const InternalKeyComparator internal_comparator_;
|
|
325
|
+
MemTable* memtable_;
|
|
326
|
+
};
|
|
327
|
+
|
|
328
|
+
class DBConstructor : public Constructor {
|
|
329
|
+
public:
|
|
330
|
+
explicit DBConstructor(const Comparator* cmp)
|
|
331
|
+
: Constructor(cmp), comparator_(cmp) {
|
|
332
|
+
db_ = nullptr;
|
|
333
|
+
NewDB();
|
|
334
|
+
}
|
|
335
|
+
~DBConstructor() override { delete db_; }
|
|
336
|
+
Status FinishImpl(const Options& options, const KVMap& data) override {
|
|
337
|
+
delete db_;
|
|
338
|
+
db_ = nullptr;
|
|
339
|
+
NewDB();
|
|
340
|
+
for (const auto& kvp : data) {
|
|
341
|
+
WriteBatch batch;
|
|
342
|
+
batch.Put(kvp.first, kvp.second);
|
|
343
|
+
EXPECT_TRUE(db_->Write(WriteOptions(), &batch).ok());
|
|
344
|
+
}
|
|
345
|
+
return Status::OK();
|
|
346
|
+
}
|
|
347
|
+
Iterator* NewIterator() const override {
|
|
348
|
+
return db_->NewIterator(ReadOptions());
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
DB* db() const override { return db_; }
|
|
352
|
+
|
|
353
|
+
private:
|
|
354
|
+
void NewDB() {
|
|
355
|
+
std::string name = testing::TempDir() + "table_testdb";
|
|
356
|
+
|
|
357
|
+
Options options;
|
|
358
|
+
options.comparator = comparator_;
|
|
359
|
+
Status status = DestroyDB(name, options);
|
|
360
|
+
ASSERT_TRUE(status.ok()) << status.ToString();
|
|
361
|
+
|
|
362
|
+
options.create_if_missing = true;
|
|
363
|
+
options.error_if_exists = true;
|
|
364
|
+
options.write_buffer_size = 10000; // Something small to force merging
|
|
365
|
+
status = DB::Open(options, name, &db_);
|
|
366
|
+
ASSERT_TRUE(status.ok()) << status.ToString();
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
const Comparator* const comparator_;
|
|
370
|
+
DB* db_;
|
|
371
|
+
};
|
|
372
|
+
|
|
373
|
+
enum TestType { TABLE_TEST, BLOCK_TEST, MEMTABLE_TEST, DB_TEST };
|
|
374
|
+
|
|
375
|
+
struct TestArgs {
|
|
376
|
+
TestType type;
|
|
377
|
+
bool reverse_compare;
|
|
378
|
+
int restart_interval;
|
|
379
|
+
};
|
|
380
|
+
|
|
381
|
+
static const TestArgs kTestArgList[] = {
|
|
382
|
+
{TABLE_TEST, false, 16},
|
|
383
|
+
{TABLE_TEST, false, 1},
|
|
384
|
+
{TABLE_TEST, false, 1024},
|
|
385
|
+
{TABLE_TEST, true, 16},
|
|
386
|
+
{TABLE_TEST, true, 1},
|
|
387
|
+
{TABLE_TEST, true, 1024},
|
|
388
|
+
|
|
389
|
+
{BLOCK_TEST, false, 16},
|
|
390
|
+
{BLOCK_TEST, false, 1},
|
|
391
|
+
{BLOCK_TEST, false, 1024},
|
|
392
|
+
{BLOCK_TEST, true, 16},
|
|
393
|
+
{BLOCK_TEST, true, 1},
|
|
394
|
+
{BLOCK_TEST, true, 1024},
|
|
395
|
+
|
|
396
|
+
// Restart interval does not matter for memtables
|
|
397
|
+
{MEMTABLE_TEST, false, 16},
|
|
398
|
+
{MEMTABLE_TEST, true, 16},
|
|
399
|
+
|
|
400
|
+
// Do not bother with restart interval variations for DB
|
|
401
|
+
{DB_TEST, false, 16},
|
|
402
|
+
{DB_TEST, true, 16},
|
|
403
|
+
};
|
|
404
|
+
static const int kNumTestArgs = sizeof(kTestArgList) / sizeof(kTestArgList[0]);
|
|
405
|
+
|
|
406
|
+
class Harness : public testing::Test {
|
|
407
|
+
public:
|
|
408
|
+
Harness() : constructor_(nullptr) {}
|
|
409
|
+
|
|
410
|
+
void Init(const TestArgs& args) {
|
|
411
|
+
delete constructor_;
|
|
412
|
+
constructor_ = nullptr;
|
|
413
|
+
options_ = Options();
|
|
414
|
+
|
|
415
|
+
options_.block_restart_interval = args.restart_interval;
|
|
416
|
+
// Use shorter block size for tests to exercise block boundary
|
|
417
|
+
// conditions more.
|
|
418
|
+
options_.block_size = 256;
|
|
419
|
+
if (args.reverse_compare) {
|
|
420
|
+
options_.comparator = &reverse_key_comparator;
|
|
421
|
+
}
|
|
422
|
+
switch (args.type) {
|
|
423
|
+
case TABLE_TEST:
|
|
424
|
+
constructor_ = new TableConstructor(options_.comparator);
|
|
425
|
+
break;
|
|
426
|
+
case BLOCK_TEST:
|
|
427
|
+
constructor_ = new BlockConstructor(options_.comparator);
|
|
428
|
+
break;
|
|
429
|
+
case MEMTABLE_TEST:
|
|
430
|
+
constructor_ = new MemTableConstructor(options_.comparator);
|
|
431
|
+
break;
|
|
432
|
+
case DB_TEST:
|
|
433
|
+
constructor_ = new DBConstructor(options_.comparator);
|
|
434
|
+
break;
|
|
435
|
+
}
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
~Harness() { delete constructor_; }
|
|
439
|
+
|
|
440
|
+
void Add(const std::string& key, const std::string& value) {
|
|
441
|
+
constructor_->Add(key, value);
|
|
442
|
+
}
|
|
443
|
+
|
|
444
|
+
void Test(Random* rnd) {
|
|
445
|
+
std::vector<std::string> keys;
|
|
446
|
+
KVMap data;
|
|
447
|
+
constructor_->Finish(options_, &keys, &data);
|
|
448
|
+
|
|
449
|
+
TestForwardScan(keys, data);
|
|
450
|
+
TestBackwardScan(keys, data);
|
|
451
|
+
TestRandomAccess(rnd, keys, data);
|
|
452
|
+
}
|
|
453
|
+
|
|
454
|
+
void TestForwardScan(const std::vector<std::string>& keys,
|
|
455
|
+
const KVMap& data) {
|
|
456
|
+
Iterator* iter = constructor_->NewIterator();
|
|
457
|
+
ASSERT_TRUE(!iter->Valid());
|
|
458
|
+
iter->SeekToFirst();
|
|
459
|
+
for (KVMap::const_iterator model_iter = data.begin();
|
|
460
|
+
model_iter != data.end(); ++model_iter) {
|
|
461
|
+
ASSERT_EQ(ToString(data, model_iter), ToString(iter));
|
|
462
|
+
iter->Next();
|
|
463
|
+
}
|
|
464
|
+
ASSERT_TRUE(!iter->Valid());
|
|
465
|
+
delete iter;
|
|
466
|
+
}
|
|
467
|
+
|
|
468
|
+
void TestBackwardScan(const std::vector<std::string>& keys,
|
|
469
|
+
const KVMap& data) {
|
|
470
|
+
Iterator* iter = constructor_->NewIterator();
|
|
471
|
+
ASSERT_TRUE(!iter->Valid());
|
|
472
|
+
iter->SeekToLast();
|
|
473
|
+
for (KVMap::const_reverse_iterator model_iter = data.rbegin();
|
|
474
|
+
model_iter != data.rend(); ++model_iter) {
|
|
475
|
+
ASSERT_EQ(ToString(data, model_iter), ToString(iter));
|
|
476
|
+
iter->Prev();
|
|
477
|
+
}
|
|
478
|
+
ASSERT_TRUE(!iter->Valid());
|
|
479
|
+
delete iter;
|
|
480
|
+
}
|
|
481
|
+
|
|
482
|
+
void TestRandomAccess(Random* rnd, const std::vector<std::string>& keys,
|
|
483
|
+
const KVMap& data) {
|
|
484
|
+
static const bool kVerbose = false;
|
|
485
|
+
Iterator* iter = constructor_->NewIterator();
|
|
486
|
+
ASSERT_TRUE(!iter->Valid());
|
|
487
|
+
KVMap::const_iterator model_iter = data.begin();
|
|
488
|
+
if (kVerbose) std::fprintf(stderr, "---\n");
|
|
489
|
+
for (int i = 0; i < 200; i++) {
|
|
490
|
+
const int toss = rnd->Uniform(5);
|
|
491
|
+
switch (toss) {
|
|
492
|
+
case 0: {
|
|
493
|
+
if (iter->Valid()) {
|
|
494
|
+
if (kVerbose) std::fprintf(stderr, "Next\n");
|
|
495
|
+
iter->Next();
|
|
496
|
+
++model_iter;
|
|
497
|
+
ASSERT_EQ(ToString(data, model_iter), ToString(iter));
|
|
498
|
+
}
|
|
499
|
+
break;
|
|
500
|
+
}
|
|
501
|
+
|
|
502
|
+
case 1: {
|
|
503
|
+
if (kVerbose) std::fprintf(stderr, "SeekToFirst\n");
|
|
504
|
+
iter->SeekToFirst();
|
|
505
|
+
model_iter = data.begin();
|
|
506
|
+
ASSERT_EQ(ToString(data, model_iter), ToString(iter));
|
|
507
|
+
break;
|
|
508
|
+
}
|
|
509
|
+
|
|
510
|
+
case 2: {
|
|
511
|
+
std::string key = PickRandomKey(rnd, keys);
|
|
512
|
+
model_iter = data.lower_bound(key);
|
|
513
|
+
if (kVerbose)
|
|
514
|
+
std::fprintf(stderr, "Seek '%s'\n", EscapeString(key).c_str());
|
|
515
|
+
iter->Seek(Slice(key));
|
|
516
|
+
ASSERT_EQ(ToString(data, model_iter), ToString(iter));
|
|
517
|
+
break;
|
|
518
|
+
}
|
|
519
|
+
|
|
520
|
+
case 3: {
|
|
521
|
+
if (iter->Valid()) {
|
|
522
|
+
if (kVerbose) std::fprintf(stderr, "Prev\n");
|
|
523
|
+
iter->Prev();
|
|
524
|
+
if (model_iter == data.begin()) {
|
|
525
|
+
model_iter = data.end(); // Wrap around to invalid value
|
|
526
|
+
} else {
|
|
527
|
+
--model_iter;
|
|
528
|
+
}
|
|
529
|
+
ASSERT_EQ(ToString(data, model_iter), ToString(iter));
|
|
530
|
+
}
|
|
531
|
+
break;
|
|
532
|
+
}
|
|
533
|
+
|
|
534
|
+
case 4: {
|
|
535
|
+
if (kVerbose) std::fprintf(stderr, "SeekToLast\n");
|
|
536
|
+
iter->SeekToLast();
|
|
537
|
+
if (keys.empty()) {
|
|
538
|
+
model_iter = data.end();
|
|
539
|
+
} else {
|
|
540
|
+
std::string last = data.rbegin()->first;
|
|
541
|
+
model_iter = data.lower_bound(last);
|
|
542
|
+
}
|
|
543
|
+
ASSERT_EQ(ToString(data, model_iter), ToString(iter));
|
|
544
|
+
break;
|
|
545
|
+
}
|
|
546
|
+
}
|
|
547
|
+
}
|
|
548
|
+
delete iter;
|
|
549
|
+
}
|
|
550
|
+
|
|
551
|
+
std::string ToString(const KVMap& data, const KVMap::const_iterator& it) {
|
|
552
|
+
if (it == data.end()) {
|
|
553
|
+
return "END";
|
|
554
|
+
} else {
|
|
555
|
+
return "'" + it->first + "->" + it->second + "'";
|
|
556
|
+
}
|
|
557
|
+
}
|
|
558
|
+
|
|
559
|
+
std::string ToString(const KVMap& data,
|
|
560
|
+
const KVMap::const_reverse_iterator& it) {
|
|
561
|
+
if (it == data.rend()) {
|
|
562
|
+
return "END";
|
|
563
|
+
} else {
|
|
564
|
+
return "'" + it->first + "->" + it->second + "'";
|
|
565
|
+
}
|
|
566
|
+
}
|
|
567
|
+
|
|
568
|
+
std::string ToString(const Iterator* it) {
|
|
569
|
+
if (!it->Valid()) {
|
|
570
|
+
return "END";
|
|
571
|
+
} else {
|
|
572
|
+
return "'" + it->key().ToString() + "->" + it->value().ToString() + "'";
|
|
573
|
+
}
|
|
574
|
+
}
|
|
575
|
+
|
|
576
|
+
std::string PickRandomKey(Random* rnd, const std::vector<std::string>& keys) {
|
|
577
|
+
if (keys.empty()) {
|
|
578
|
+
return "foo";
|
|
579
|
+
} else {
|
|
580
|
+
const int index = rnd->Uniform(keys.size());
|
|
581
|
+
std::string result = keys[index];
|
|
582
|
+
switch (rnd->Uniform(3)) {
|
|
583
|
+
case 0:
|
|
584
|
+
// Return an existing key
|
|
585
|
+
break;
|
|
586
|
+
case 1: {
|
|
587
|
+
// Attempt to return something smaller than an existing key
|
|
588
|
+
if (!result.empty() && result[result.size() - 1] > '\0') {
|
|
589
|
+
result[result.size() - 1]--;
|
|
590
|
+
}
|
|
591
|
+
break;
|
|
592
|
+
}
|
|
593
|
+
case 2: {
|
|
594
|
+
// Return something larger than an existing key
|
|
595
|
+
Increment(options_.comparator, &result);
|
|
596
|
+
break;
|
|
597
|
+
}
|
|
598
|
+
}
|
|
599
|
+
return result;
|
|
600
|
+
}
|
|
601
|
+
}
|
|
602
|
+
|
|
603
|
+
// Returns nullptr if not running against a DB
|
|
604
|
+
DB* db() const { return constructor_->db(); }
|
|
605
|
+
|
|
606
|
+
private:
|
|
607
|
+
Options options_;
|
|
608
|
+
Constructor* constructor_;
|
|
609
|
+
};
|
|
610
|
+
|
|
611
|
+
// Test empty table/block.
|
|
612
|
+
TEST_F(Harness, Empty) {
|
|
613
|
+
for (int i = 0; i < kNumTestArgs; i++) {
|
|
614
|
+
Init(kTestArgList[i]);
|
|
615
|
+
Random rnd(test::RandomSeed() + 1);
|
|
616
|
+
Test(&rnd);
|
|
617
|
+
}
|
|
618
|
+
}
|
|
619
|
+
|
|
620
|
+
// Special test for a block with no restart entries. The C++ leveldb
|
|
621
|
+
// code never generates such blocks, but the Java version of leveldb
|
|
622
|
+
// seems to.
|
|
623
|
+
TEST_F(Harness, ZeroRestartPointsInBlock) {
|
|
624
|
+
char data[sizeof(uint32_t)];
|
|
625
|
+
memset(data, 0, sizeof(data));
|
|
626
|
+
BlockContents contents;
|
|
627
|
+
contents.data = Slice(data, sizeof(data));
|
|
628
|
+
contents.cachable = false;
|
|
629
|
+
contents.heap_allocated = false;
|
|
630
|
+
Block block(contents);
|
|
631
|
+
Iterator* iter = block.NewIterator(BytewiseComparator());
|
|
632
|
+
iter->SeekToFirst();
|
|
633
|
+
ASSERT_TRUE(!iter->Valid());
|
|
634
|
+
iter->SeekToLast();
|
|
635
|
+
ASSERT_TRUE(!iter->Valid());
|
|
636
|
+
iter->Seek("foo");
|
|
637
|
+
ASSERT_TRUE(!iter->Valid());
|
|
638
|
+
delete iter;
|
|
639
|
+
}
|
|
640
|
+
|
|
641
|
+
// Test the empty key
|
|
642
|
+
TEST_F(Harness, SimpleEmptyKey) {
|
|
643
|
+
for (int i = 0; i < kNumTestArgs; i++) {
|
|
644
|
+
Init(kTestArgList[i]);
|
|
645
|
+
Random rnd(test::RandomSeed() + 1);
|
|
646
|
+
Add("", "v");
|
|
647
|
+
Test(&rnd);
|
|
648
|
+
}
|
|
649
|
+
}
|
|
650
|
+
|
|
651
|
+
TEST_F(Harness, SimpleSingle) {
|
|
652
|
+
for (int i = 0; i < kNumTestArgs; i++) {
|
|
653
|
+
Init(kTestArgList[i]);
|
|
654
|
+
Random rnd(test::RandomSeed() + 2);
|
|
655
|
+
Add("abc", "v");
|
|
656
|
+
Test(&rnd);
|
|
657
|
+
}
|
|
658
|
+
}
|
|
659
|
+
|
|
660
|
+
TEST_F(Harness, SimpleMulti) {
|
|
661
|
+
for (int i = 0; i < kNumTestArgs; i++) {
|
|
662
|
+
Init(kTestArgList[i]);
|
|
663
|
+
Random rnd(test::RandomSeed() + 3);
|
|
664
|
+
Add("abc", "v");
|
|
665
|
+
Add("abcd", "v");
|
|
666
|
+
Add("ac", "v2");
|
|
667
|
+
Test(&rnd);
|
|
668
|
+
}
|
|
669
|
+
}
|
|
670
|
+
|
|
671
|
+
TEST_F(Harness, SimpleSpecialKey) {
|
|
672
|
+
for (int i = 0; i < kNumTestArgs; i++) {
|
|
673
|
+
Init(kTestArgList[i]);
|
|
674
|
+
Random rnd(test::RandomSeed() + 4);
|
|
675
|
+
Add("\xff\xff", "v3");
|
|
676
|
+
Test(&rnd);
|
|
677
|
+
}
|
|
678
|
+
}
|
|
679
|
+
|
|
680
|
+
TEST_F(Harness, Randomized) {
|
|
681
|
+
for (int i = 0; i < kNumTestArgs; i++) {
|
|
682
|
+
Init(kTestArgList[i]);
|
|
683
|
+
Random rnd(test::RandomSeed() + 5);
|
|
684
|
+
for (int num_entries = 0; num_entries < 2000;
|
|
685
|
+
num_entries += (num_entries < 50 ? 1 : 200)) {
|
|
686
|
+
if ((num_entries % 10) == 0) {
|
|
687
|
+
std::fprintf(stderr, "case %d of %d: num_entries = %d\n", (i + 1),
|
|
688
|
+
int(kNumTestArgs), num_entries);
|
|
689
|
+
}
|
|
690
|
+
for (int e = 0; e < num_entries; e++) {
|
|
691
|
+
std::string v;
|
|
692
|
+
Add(test::RandomKey(&rnd, rnd.Skewed(4)),
|
|
693
|
+
test::RandomString(&rnd, rnd.Skewed(5), &v).ToString());
|
|
694
|
+
}
|
|
695
|
+
Test(&rnd);
|
|
696
|
+
}
|
|
697
|
+
}
|
|
698
|
+
}
|
|
699
|
+
|
|
700
|
+
TEST_F(Harness, RandomizedLongDB) {
|
|
701
|
+
Random rnd(test::RandomSeed());
|
|
702
|
+
TestArgs args = {DB_TEST, false, 16};
|
|
703
|
+
Init(args);
|
|
704
|
+
int num_entries = 100000;
|
|
705
|
+
for (int e = 0; e < num_entries; e++) {
|
|
706
|
+
std::string v;
|
|
707
|
+
Add(test::RandomKey(&rnd, rnd.Skewed(4)),
|
|
708
|
+
test::RandomString(&rnd, rnd.Skewed(5), &v).ToString());
|
|
709
|
+
}
|
|
710
|
+
Test(&rnd);
|
|
711
|
+
|
|
712
|
+
// We must have created enough data to force merging
|
|
713
|
+
int files = 0;
|
|
714
|
+
for (int level = 0; level < config::kNumLevels; level++) {
|
|
715
|
+
std::string value;
|
|
716
|
+
char name[100];
|
|
717
|
+
std::snprintf(name, sizeof(name), "leveldb.num-files-at-level%d", level);
|
|
718
|
+
ASSERT_TRUE(db()->GetProperty(name, &value));
|
|
719
|
+
files += atoi(value.c_str());
|
|
720
|
+
}
|
|
721
|
+
ASSERT_GT(files, 0);
|
|
722
|
+
}
|
|
723
|
+
|
|
724
|
+
TEST(MemTableTest, Simple) {
|
|
725
|
+
InternalKeyComparator cmp(BytewiseComparator());
|
|
726
|
+
MemTable* memtable = new MemTable(cmp);
|
|
727
|
+
memtable->Ref();
|
|
728
|
+
WriteBatch batch;
|
|
729
|
+
WriteBatchInternal::SetSequence(&batch, 100);
|
|
730
|
+
batch.Put(std::string("k1"), std::string("v1"));
|
|
731
|
+
batch.Put(std::string("k2"), std::string("v2"));
|
|
732
|
+
batch.Put(std::string("k3"), std::string("v3"));
|
|
733
|
+
batch.Put(std::string("largekey"), std::string("vlarge"));
|
|
734
|
+
ASSERT_TRUE(WriteBatchInternal::InsertInto(&batch, memtable).ok());
|
|
735
|
+
|
|
736
|
+
Iterator* iter = memtable->NewIterator();
|
|
737
|
+
iter->SeekToFirst();
|
|
738
|
+
while (iter->Valid()) {
|
|
739
|
+
std::fprintf(stderr, "key: '%s' -> '%s'\n", iter->key().ToString().c_str(),
|
|
740
|
+
iter->value().ToString().c_str());
|
|
741
|
+
iter->Next();
|
|
742
|
+
}
|
|
743
|
+
|
|
744
|
+
delete iter;
|
|
745
|
+
memtable->Unref();
|
|
746
|
+
}
|
|
747
|
+
|
|
748
|
+
static bool Between(uint64_t val, uint64_t low, uint64_t high) {
|
|
749
|
+
bool result = (val >= low) && (val <= high);
|
|
750
|
+
if (!result) {
|
|
751
|
+
std::fprintf(stderr, "Value %llu is not in range [%llu, %llu]\n",
|
|
752
|
+
(unsigned long long)(val), (unsigned long long)(low),
|
|
753
|
+
(unsigned long long)(high));
|
|
754
|
+
}
|
|
755
|
+
return result;
|
|
756
|
+
}
|
|
757
|
+
|
|
758
|
+
TEST(TableTest, ApproximateOffsetOfPlain) {
|
|
759
|
+
TableConstructor c(BytewiseComparator());
|
|
760
|
+
c.Add("k01", "hello");
|
|
761
|
+
c.Add("k02", "hello2");
|
|
762
|
+
c.Add("k03", std::string(10000, 'x'));
|
|
763
|
+
c.Add("k04", std::string(200000, 'x'));
|
|
764
|
+
c.Add("k05", std::string(300000, 'x'));
|
|
765
|
+
c.Add("k06", "hello3");
|
|
766
|
+
c.Add("k07", std::string(100000, 'x'));
|
|
767
|
+
std::vector<std::string> keys;
|
|
768
|
+
KVMap kvmap;
|
|
769
|
+
Options options;
|
|
770
|
+
options.block_size = 1024;
|
|
771
|
+
options.compression = kNoCompression;
|
|
772
|
+
c.Finish(options, &keys, &kvmap);
|
|
773
|
+
|
|
774
|
+
ASSERT_TRUE(Between(c.ApproximateOffsetOf("abc"), 0, 0));
|
|
775
|
+
ASSERT_TRUE(Between(c.ApproximateOffsetOf("k01"), 0, 0));
|
|
776
|
+
ASSERT_TRUE(Between(c.ApproximateOffsetOf("k01a"), 0, 0));
|
|
777
|
+
ASSERT_TRUE(Between(c.ApproximateOffsetOf("k02"), 0, 0));
|
|
778
|
+
ASSERT_TRUE(Between(c.ApproximateOffsetOf("k03"), 0, 0));
|
|
779
|
+
ASSERT_TRUE(Between(c.ApproximateOffsetOf("k04"), 10000, 11000));
|
|
780
|
+
ASSERT_TRUE(Between(c.ApproximateOffsetOf("k04a"), 210000, 211000));
|
|
781
|
+
ASSERT_TRUE(Between(c.ApproximateOffsetOf("k05"), 210000, 211000));
|
|
782
|
+
ASSERT_TRUE(Between(c.ApproximateOffsetOf("k06"), 510000, 511000));
|
|
783
|
+
ASSERT_TRUE(Between(c.ApproximateOffsetOf("k07"), 510000, 511000));
|
|
784
|
+
ASSERT_TRUE(Between(c.ApproximateOffsetOf("xyz"), 610000, 612000));
|
|
785
|
+
}
|
|
786
|
+
|
|
787
|
+
static bool SnappyCompressionSupported() {
|
|
788
|
+
std::string out;
|
|
789
|
+
Slice in = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa";
|
|
790
|
+
return port::Snappy_Compress(in.data(), in.size(), &out);
|
|
791
|
+
}
|
|
792
|
+
|
|
793
|
+
TEST(TableTest, ApproximateOffsetOfCompressed) {
|
|
794
|
+
if (!SnappyCompressionSupported()) {
|
|
795
|
+
std::fprintf(stderr, "skipping compression tests\n");
|
|
796
|
+
return;
|
|
797
|
+
}
|
|
798
|
+
|
|
799
|
+
Random rnd(301);
|
|
800
|
+
TableConstructor c(BytewiseComparator());
|
|
801
|
+
std::string tmp;
|
|
802
|
+
c.Add("k01", "hello");
|
|
803
|
+
c.Add("k02", test::CompressibleString(&rnd, 0.25, 10000, &tmp));
|
|
804
|
+
c.Add("k03", "hello3");
|
|
805
|
+
c.Add("k04", test::CompressibleString(&rnd, 0.25, 10000, &tmp));
|
|
806
|
+
std::vector<std::string> keys;
|
|
807
|
+
KVMap kvmap;
|
|
808
|
+
Options options;
|
|
809
|
+
options.block_size = 1024;
|
|
810
|
+
options.compression = kSnappyCompression;
|
|
811
|
+
c.Finish(options, &keys, &kvmap);
|
|
812
|
+
|
|
813
|
+
// Expected upper and lower bounds of space used by compressible strings.
|
|
814
|
+
static const int kSlop = 1000; // Compressor effectiveness varies.
|
|
815
|
+
const int expected = 2500; // 10000 * compression ratio (0.25)
|
|
816
|
+
const int min_z = expected - kSlop;
|
|
817
|
+
const int max_z = expected + kSlop;
|
|
818
|
+
|
|
819
|
+
ASSERT_TRUE(Between(c.ApproximateOffsetOf("abc"), 0, kSlop));
|
|
820
|
+
ASSERT_TRUE(Between(c.ApproximateOffsetOf("k01"), 0, kSlop));
|
|
821
|
+
ASSERT_TRUE(Between(c.ApproximateOffsetOf("k02"), 0, kSlop));
|
|
822
|
+
// Have now emitted a large compressible string, so adjust expected offset.
|
|
823
|
+
ASSERT_TRUE(Between(c.ApproximateOffsetOf("k03"), min_z, max_z));
|
|
824
|
+
ASSERT_TRUE(Between(c.ApproximateOffsetOf("k04"), min_z, max_z));
|
|
825
|
+
// Have now emitted two large compressible strings, so adjust expected offset.
|
|
826
|
+
ASSERT_TRUE(Between(c.ApproximateOffsetOf("xyz"), 2 * min_z, 2 * max_z));
|
|
827
|
+
}
|
|
828
|
+
|
|
829
|
+
} // namespace leveldb
|
|
830
|
+
|
|
831
|
+
int main(int argc, char** argv) {
|
|
832
|
+
testing::InitGoogleTest(&argc, argv);
|
|
833
|
+
return RUN_ALL_TESTS();
|
|
834
|
+
}
|