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
package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/internal/gmock-internal-utils.h
ADDED
|
@@ -0,0 +1,472 @@
|
|
|
1
|
+
// Copyright 2007, Google Inc.
|
|
2
|
+
// All rights reserved.
|
|
3
|
+
//
|
|
4
|
+
// Redistribution and use in source and binary forms, with or without
|
|
5
|
+
// modification, are permitted provided that the following conditions are
|
|
6
|
+
// met:
|
|
7
|
+
//
|
|
8
|
+
// * Redistributions of source code must retain the above copyright
|
|
9
|
+
// notice, this list of conditions and the following disclaimer.
|
|
10
|
+
// * Redistributions in binary form must reproduce the above
|
|
11
|
+
// copyright notice, this list of conditions and the following disclaimer
|
|
12
|
+
// in the documentation and/or other materials provided with the
|
|
13
|
+
// distribution.
|
|
14
|
+
// * Neither the name of Google Inc. nor the names of its
|
|
15
|
+
// contributors may be used to endorse or promote products derived from
|
|
16
|
+
// this software without specific prior written permission.
|
|
17
|
+
//
|
|
18
|
+
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
19
|
+
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
20
|
+
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
21
|
+
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
22
|
+
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
23
|
+
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
24
|
+
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
25
|
+
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
26
|
+
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
27
|
+
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
28
|
+
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
// Google Mock - a framework for writing C++ mock classes.
|
|
32
|
+
//
|
|
33
|
+
// This file defines some utilities useful for implementing Google
|
|
34
|
+
// Mock. They are subject to change without notice, so please DO NOT
|
|
35
|
+
// USE THEM IN USER CODE.
|
|
36
|
+
|
|
37
|
+
// GOOGLETEST_CM0002 DO NOT DELETE
|
|
38
|
+
|
|
39
|
+
#ifndef GMOCK_INCLUDE_GMOCK_INTERNAL_GMOCK_INTERNAL_UTILS_H_
|
|
40
|
+
#define GMOCK_INCLUDE_GMOCK_INTERNAL_GMOCK_INTERNAL_UTILS_H_
|
|
41
|
+
|
|
42
|
+
#include <stdio.h>
|
|
43
|
+
#include <ostream> // NOLINT
|
|
44
|
+
#include <string>
|
|
45
|
+
#include <type_traits>
|
|
46
|
+
#include "gmock/internal/gmock-port.h"
|
|
47
|
+
#include "gtest/gtest.h"
|
|
48
|
+
|
|
49
|
+
namespace testing {
|
|
50
|
+
|
|
51
|
+
template <typename>
|
|
52
|
+
class Matcher;
|
|
53
|
+
|
|
54
|
+
namespace internal {
|
|
55
|
+
|
|
56
|
+
// Silence MSVC C4100 (unreferenced formal parameter) and
|
|
57
|
+
// C4805('==': unsafe mix of type 'const int' and type 'const bool')
|
|
58
|
+
#ifdef _MSC_VER
|
|
59
|
+
# pragma warning(push)
|
|
60
|
+
# pragma warning(disable:4100)
|
|
61
|
+
# pragma warning(disable:4805)
|
|
62
|
+
#endif
|
|
63
|
+
|
|
64
|
+
// Joins a vector of strings as if they are fields of a tuple; returns
|
|
65
|
+
// the joined string.
|
|
66
|
+
GTEST_API_ std::string JoinAsTuple(const Strings& fields);
|
|
67
|
+
|
|
68
|
+
// Converts an identifier name to a space-separated list of lower-case
|
|
69
|
+
// words. Each maximum substring of the form [A-Za-z][a-z]*|\d+ is
|
|
70
|
+
// treated as one word. For example, both "FooBar123" and
|
|
71
|
+
// "foo_bar_123" are converted to "foo bar 123".
|
|
72
|
+
GTEST_API_ std::string ConvertIdentifierNameToWords(const char* id_name);
|
|
73
|
+
|
|
74
|
+
// PointeeOf<Pointer>::type is the type of a value pointed to by a
|
|
75
|
+
// Pointer, which can be either a smart pointer or a raw pointer. The
|
|
76
|
+
// following default implementation is for the case where Pointer is a
|
|
77
|
+
// smart pointer.
|
|
78
|
+
template <typename Pointer>
|
|
79
|
+
struct PointeeOf {
|
|
80
|
+
// Smart pointer classes define type element_type as the type of
|
|
81
|
+
// their pointees.
|
|
82
|
+
typedef typename Pointer::element_type type;
|
|
83
|
+
};
|
|
84
|
+
// This specialization is for the raw pointer case.
|
|
85
|
+
template <typename T>
|
|
86
|
+
struct PointeeOf<T*> { typedef T type; }; // NOLINT
|
|
87
|
+
|
|
88
|
+
// GetRawPointer(p) returns the raw pointer underlying p when p is a
|
|
89
|
+
// smart pointer, or returns p itself when p is already a raw pointer.
|
|
90
|
+
// The following default implementation is for the smart pointer case.
|
|
91
|
+
template <typename Pointer>
|
|
92
|
+
inline const typename Pointer::element_type* GetRawPointer(const Pointer& p) {
|
|
93
|
+
return p.get();
|
|
94
|
+
}
|
|
95
|
+
// This overloaded version is for the raw pointer case.
|
|
96
|
+
template <typename Element>
|
|
97
|
+
inline Element* GetRawPointer(Element* p) { return p; }
|
|
98
|
+
|
|
99
|
+
// MSVC treats wchar_t as a native type usually, but treats it as the
|
|
100
|
+
// same as unsigned short when the compiler option /Zc:wchar_t- is
|
|
101
|
+
// specified. It defines _NATIVE_WCHAR_T_DEFINED symbol when wchar_t
|
|
102
|
+
// is a native type.
|
|
103
|
+
#if defined(_MSC_VER) && !defined(_NATIVE_WCHAR_T_DEFINED)
|
|
104
|
+
// wchar_t is a typedef.
|
|
105
|
+
#else
|
|
106
|
+
# define GMOCK_WCHAR_T_IS_NATIVE_ 1
|
|
107
|
+
#endif
|
|
108
|
+
|
|
109
|
+
// In what follows, we use the term "kind" to indicate whether a type
|
|
110
|
+
// is bool, an integer type (excluding bool), a floating-point type,
|
|
111
|
+
// or none of them. This categorization is useful for determining
|
|
112
|
+
// when a matcher argument type can be safely converted to another
|
|
113
|
+
// type in the implementation of SafeMatcherCast.
|
|
114
|
+
enum TypeKind {
|
|
115
|
+
kBool, kInteger, kFloatingPoint, kOther
|
|
116
|
+
};
|
|
117
|
+
|
|
118
|
+
// KindOf<T>::value is the kind of type T.
|
|
119
|
+
template <typename T> struct KindOf {
|
|
120
|
+
enum { value = kOther }; // The default kind.
|
|
121
|
+
};
|
|
122
|
+
|
|
123
|
+
// This macro declares that the kind of 'type' is 'kind'.
|
|
124
|
+
#define GMOCK_DECLARE_KIND_(type, kind) \
|
|
125
|
+
template <> struct KindOf<type> { enum { value = kind }; }
|
|
126
|
+
|
|
127
|
+
GMOCK_DECLARE_KIND_(bool, kBool);
|
|
128
|
+
|
|
129
|
+
// All standard integer types.
|
|
130
|
+
GMOCK_DECLARE_KIND_(char, kInteger);
|
|
131
|
+
GMOCK_DECLARE_KIND_(signed char, kInteger);
|
|
132
|
+
GMOCK_DECLARE_KIND_(unsigned char, kInteger);
|
|
133
|
+
GMOCK_DECLARE_KIND_(short, kInteger); // NOLINT
|
|
134
|
+
GMOCK_DECLARE_KIND_(unsigned short, kInteger); // NOLINT
|
|
135
|
+
GMOCK_DECLARE_KIND_(int, kInteger);
|
|
136
|
+
GMOCK_DECLARE_KIND_(unsigned int, kInteger);
|
|
137
|
+
GMOCK_DECLARE_KIND_(long, kInteger); // NOLINT
|
|
138
|
+
GMOCK_DECLARE_KIND_(unsigned long, kInteger); // NOLINT
|
|
139
|
+
|
|
140
|
+
#if GMOCK_WCHAR_T_IS_NATIVE_
|
|
141
|
+
GMOCK_DECLARE_KIND_(wchar_t, kInteger);
|
|
142
|
+
#endif
|
|
143
|
+
|
|
144
|
+
// Non-standard integer types.
|
|
145
|
+
GMOCK_DECLARE_KIND_(Int64, kInteger);
|
|
146
|
+
GMOCK_DECLARE_KIND_(UInt64, kInteger);
|
|
147
|
+
|
|
148
|
+
// All standard floating-point types.
|
|
149
|
+
GMOCK_DECLARE_KIND_(float, kFloatingPoint);
|
|
150
|
+
GMOCK_DECLARE_KIND_(double, kFloatingPoint);
|
|
151
|
+
GMOCK_DECLARE_KIND_(long double, kFloatingPoint);
|
|
152
|
+
|
|
153
|
+
#undef GMOCK_DECLARE_KIND_
|
|
154
|
+
|
|
155
|
+
// Evaluates to the kind of 'type'.
|
|
156
|
+
#define GMOCK_KIND_OF_(type) \
|
|
157
|
+
static_cast< ::testing::internal::TypeKind>( \
|
|
158
|
+
::testing::internal::KindOf<type>::value)
|
|
159
|
+
|
|
160
|
+
// LosslessArithmeticConvertibleImpl<kFromKind, From, kToKind, To>::value
|
|
161
|
+
// is true if and only if arithmetic type From can be losslessly converted to
|
|
162
|
+
// arithmetic type To.
|
|
163
|
+
//
|
|
164
|
+
// It's the user's responsibility to ensure that both From and To are
|
|
165
|
+
// raw (i.e. has no CV modifier, is not a pointer, and is not a
|
|
166
|
+
// reference) built-in arithmetic types, kFromKind is the kind of
|
|
167
|
+
// From, and kToKind is the kind of To; the value is
|
|
168
|
+
// implementation-defined when the above pre-condition is violated.
|
|
169
|
+
template <TypeKind kFromKind, typename From, TypeKind kToKind, typename To>
|
|
170
|
+
using LosslessArithmeticConvertibleImpl = std::integral_constant<
|
|
171
|
+
bool,
|
|
172
|
+
// clang-format off
|
|
173
|
+
// Converting from bool is always lossless
|
|
174
|
+
(kFromKind == kBool) ? true
|
|
175
|
+
// Converting between any other type kinds will be lossy if the type
|
|
176
|
+
// kinds are not the same.
|
|
177
|
+
: (kFromKind != kToKind) ? false
|
|
178
|
+
: (kFromKind == kInteger &&
|
|
179
|
+
// Converting between integers of different widths is allowed so long
|
|
180
|
+
// as the conversion does not go from signed to unsigned.
|
|
181
|
+
(((sizeof(From) < sizeof(To)) &&
|
|
182
|
+
!(std::is_signed<From>::value && !std::is_signed<To>::value)) ||
|
|
183
|
+
// Converting between integers of the same width only requires the
|
|
184
|
+
// two types to have the same signedness.
|
|
185
|
+
((sizeof(From) == sizeof(To)) &&
|
|
186
|
+
(std::is_signed<From>::value == std::is_signed<To>::value)))
|
|
187
|
+
) ? true
|
|
188
|
+
// Floating point conversions are lossless if and only if `To` is at least
|
|
189
|
+
// as wide as `From`.
|
|
190
|
+
: (kFromKind == kFloatingPoint && (sizeof(From) <= sizeof(To))) ? true
|
|
191
|
+
: false
|
|
192
|
+
// clang-format on
|
|
193
|
+
>;
|
|
194
|
+
|
|
195
|
+
// LosslessArithmeticConvertible<From, To>::value is true if and only if
|
|
196
|
+
// arithmetic type From can be losslessly converted to arithmetic type To.
|
|
197
|
+
//
|
|
198
|
+
// It's the user's responsibility to ensure that both From and To are
|
|
199
|
+
// raw (i.e. has no CV modifier, is not a pointer, and is not a
|
|
200
|
+
// reference) built-in arithmetic types; the value is
|
|
201
|
+
// implementation-defined when the above pre-condition is violated.
|
|
202
|
+
template <typename From, typename To>
|
|
203
|
+
using LosslessArithmeticConvertible =
|
|
204
|
+
LosslessArithmeticConvertibleImpl<GMOCK_KIND_OF_(From), From,
|
|
205
|
+
GMOCK_KIND_OF_(To), To>;
|
|
206
|
+
|
|
207
|
+
// This interface knows how to report a Google Mock failure (either
|
|
208
|
+
// non-fatal or fatal).
|
|
209
|
+
class FailureReporterInterface {
|
|
210
|
+
public:
|
|
211
|
+
// The type of a failure (either non-fatal or fatal).
|
|
212
|
+
enum FailureType {
|
|
213
|
+
kNonfatal, kFatal
|
|
214
|
+
};
|
|
215
|
+
|
|
216
|
+
virtual ~FailureReporterInterface() {}
|
|
217
|
+
|
|
218
|
+
// Reports a failure that occurred at the given source file location.
|
|
219
|
+
virtual void ReportFailure(FailureType type, const char* file, int line,
|
|
220
|
+
const std::string& message) = 0;
|
|
221
|
+
};
|
|
222
|
+
|
|
223
|
+
// Returns the failure reporter used by Google Mock.
|
|
224
|
+
GTEST_API_ FailureReporterInterface* GetFailureReporter();
|
|
225
|
+
|
|
226
|
+
// Asserts that condition is true; aborts the process with the given
|
|
227
|
+
// message if condition is false. We cannot use LOG(FATAL) or CHECK()
|
|
228
|
+
// as Google Mock might be used to mock the log sink itself. We
|
|
229
|
+
// inline this function to prevent it from showing up in the stack
|
|
230
|
+
// trace.
|
|
231
|
+
inline void Assert(bool condition, const char* file, int line,
|
|
232
|
+
const std::string& msg) {
|
|
233
|
+
if (!condition) {
|
|
234
|
+
GetFailureReporter()->ReportFailure(FailureReporterInterface::kFatal,
|
|
235
|
+
file, line, msg);
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
inline void Assert(bool condition, const char* file, int line) {
|
|
239
|
+
Assert(condition, file, line, "Assertion failed.");
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
// Verifies that condition is true; generates a non-fatal failure if
|
|
243
|
+
// condition is false.
|
|
244
|
+
inline void Expect(bool condition, const char* file, int line,
|
|
245
|
+
const std::string& msg) {
|
|
246
|
+
if (!condition) {
|
|
247
|
+
GetFailureReporter()->ReportFailure(FailureReporterInterface::kNonfatal,
|
|
248
|
+
file, line, msg);
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
inline void Expect(bool condition, const char* file, int line) {
|
|
252
|
+
Expect(condition, file, line, "Expectation failed.");
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
// Severity level of a log.
|
|
256
|
+
enum LogSeverity {
|
|
257
|
+
kInfo = 0,
|
|
258
|
+
kWarning = 1
|
|
259
|
+
};
|
|
260
|
+
|
|
261
|
+
// Valid values for the --gmock_verbose flag.
|
|
262
|
+
|
|
263
|
+
// All logs (informational and warnings) are printed.
|
|
264
|
+
const char kInfoVerbosity[] = "info";
|
|
265
|
+
// Only warnings are printed.
|
|
266
|
+
const char kWarningVerbosity[] = "warning";
|
|
267
|
+
// No logs are printed.
|
|
268
|
+
const char kErrorVerbosity[] = "error";
|
|
269
|
+
|
|
270
|
+
// Returns true if and only if a log with the given severity is visible
|
|
271
|
+
// according to the --gmock_verbose flag.
|
|
272
|
+
GTEST_API_ bool LogIsVisible(LogSeverity severity);
|
|
273
|
+
|
|
274
|
+
// Prints the given message to stdout if and only if 'severity' >= the level
|
|
275
|
+
// specified by the --gmock_verbose flag. If stack_frames_to_skip >=
|
|
276
|
+
// 0, also prints the stack trace excluding the top
|
|
277
|
+
// stack_frames_to_skip frames. In opt mode, any positive
|
|
278
|
+
// stack_frames_to_skip is treated as 0, since we don't know which
|
|
279
|
+
// function calls will be inlined by the compiler and need to be
|
|
280
|
+
// conservative.
|
|
281
|
+
GTEST_API_ void Log(LogSeverity severity, const std::string& message,
|
|
282
|
+
int stack_frames_to_skip);
|
|
283
|
+
|
|
284
|
+
// A marker class that is used to resolve parameterless expectations to the
|
|
285
|
+
// correct overload. This must not be instantiable, to prevent client code from
|
|
286
|
+
// accidentally resolving to the overload; for example:
|
|
287
|
+
//
|
|
288
|
+
// ON_CALL(mock, Method({}, nullptr))...
|
|
289
|
+
//
|
|
290
|
+
class WithoutMatchers {
|
|
291
|
+
private:
|
|
292
|
+
WithoutMatchers() {}
|
|
293
|
+
friend GTEST_API_ WithoutMatchers GetWithoutMatchers();
|
|
294
|
+
};
|
|
295
|
+
|
|
296
|
+
// Internal use only: access the singleton instance of WithoutMatchers.
|
|
297
|
+
GTEST_API_ WithoutMatchers GetWithoutMatchers();
|
|
298
|
+
|
|
299
|
+
// Disable MSVC warnings for infinite recursion, since in this case the
|
|
300
|
+
// the recursion is unreachable.
|
|
301
|
+
#ifdef _MSC_VER
|
|
302
|
+
# pragma warning(push)
|
|
303
|
+
# pragma warning(disable:4717)
|
|
304
|
+
#endif
|
|
305
|
+
|
|
306
|
+
// Invalid<T>() is usable as an expression of type T, but will terminate
|
|
307
|
+
// the program with an assertion failure if actually run. This is useful
|
|
308
|
+
// when a value of type T is needed for compilation, but the statement
|
|
309
|
+
// will not really be executed (or we don't care if the statement
|
|
310
|
+
// crashes).
|
|
311
|
+
template <typename T>
|
|
312
|
+
inline T Invalid() {
|
|
313
|
+
Assert(false, "", -1, "Internal error: attempt to return invalid value");
|
|
314
|
+
// This statement is unreachable, and would never terminate even if it
|
|
315
|
+
// could be reached. It is provided only to placate compiler warnings
|
|
316
|
+
// about missing return statements.
|
|
317
|
+
return Invalid<T>();
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
#ifdef _MSC_VER
|
|
321
|
+
# pragma warning(pop)
|
|
322
|
+
#endif
|
|
323
|
+
|
|
324
|
+
// Given a raw type (i.e. having no top-level reference or const
|
|
325
|
+
// modifier) RawContainer that's either an STL-style container or a
|
|
326
|
+
// native array, class StlContainerView<RawContainer> has the
|
|
327
|
+
// following members:
|
|
328
|
+
//
|
|
329
|
+
// - type is a type that provides an STL-style container view to
|
|
330
|
+
// (i.e. implements the STL container concept for) RawContainer;
|
|
331
|
+
// - const_reference is a type that provides a reference to a const
|
|
332
|
+
// RawContainer;
|
|
333
|
+
// - ConstReference(raw_container) returns a const reference to an STL-style
|
|
334
|
+
// container view to raw_container, which is a RawContainer.
|
|
335
|
+
// - Copy(raw_container) returns an STL-style container view of a
|
|
336
|
+
// copy of raw_container, which is a RawContainer.
|
|
337
|
+
//
|
|
338
|
+
// This generic version is used when RawContainer itself is already an
|
|
339
|
+
// STL-style container.
|
|
340
|
+
template <class RawContainer>
|
|
341
|
+
class StlContainerView {
|
|
342
|
+
public:
|
|
343
|
+
typedef RawContainer type;
|
|
344
|
+
typedef const type& const_reference;
|
|
345
|
+
|
|
346
|
+
static const_reference ConstReference(const RawContainer& container) {
|
|
347
|
+
static_assert(!std::is_const<RawContainer>::value,
|
|
348
|
+
"RawContainer type must not be const");
|
|
349
|
+
return container;
|
|
350
|
+
}
|
|
351
|
+
static type Copy(const RawContainer& container) { return container; }
|
|
352
|
+
};
|
|
353
|
+
|
|
354
|
+
// This specialization is used when RawContainer is a native array type.
|
|
355
|
+
template <typename Element, size_t N>
|
|
356
|
+
class StlContainerView<Element[N]> {
|
|
357
|
+
public:
|
|
358
|
+
typedef typename std::remove_const<Element>::type RawElement;
|
|
359
|
+
typedef internal::NativeArray<RawElement> type;
|
|
360
|
+
// NativeArray<T> can represent a native array either by value or by
|
|
361
|
+
// reference (selected by a constructor argument), so 'const type'
|
|
362
|
+
// can be used to reference a const native array. We cannot
|
|
363
|
+
// 'typedef const type& const_reference' here, as that would mean
|
|
364
|
+
// ConstReference() has to return a reference to a local variable.
|
|
365
|
+
typedef const type const_reference;
|
|
366
|
+
|
|
367
|
+
static const_reference ConstReference(const Element (&array)[N]) {
|
|
368
|
+
static_assert(std::is_same<Element, RawElement>::value,
|
|
369
|
+
"Element type must not be const");
|
|
370
|
+
return type(array, N, RelationToSourceReference());
|
|
371
|
+
}
|
|
372
|
+
static type Copy(const Element (&array)[N]) {
|
|
373
|
+
return type(array, N, RelationToSourceCopy());
|
|
374
|
+
}
|
|
375
|
+
};
|
|
376
|
+
|
|
377
|
+
// This specialization is used when RawContainer is a native array
|
|
378
|
+
// represented as a (pointer, size) tuple.
|
|
379
|
+
template <typename ElementPointer, typename Size>
|
|
380
|
+
class StlContainerView< ::std::tuple<ElementPointer, Size> > {
|
|
381
|
+
public:
|
|
382
|
+
typedef typename std::remove_const<
|
|
383
|
+
typename internal::PointeeOf<ElementPointer>::type>::type RawElement;
|
|
384
|
+
typedef internal::NativeArray<RawElement> type;
|
|
385
|
+
typedef const type const_reference;
|
|
386
|
+
|
|
387
|
+
static const_reference ConstReference(
|
|
388
|
+
const ::std::tuple<ElementPointer, Size>& array) {
|
|
389
|
+
return type(std::get<0>(array), std::get<1>(array),
|
|
390
|
+
RelationToSourceReference());
|
|
391
|
+
}
|
|
392
|
+
static type Copy(const ::std::tuple<ElementPointer, Size>& array) {
|
|
393
|
+
return type(std::get<0>(array), std::get<1>(array), RelationToSourceCopy());
|
|
394
|
+
}
|
|
395
|
+
};
|
|
396
|
+
|
|
397
|
+
// The following specialization prevents the user from instantiating
|
|
398
|
+
// StlContainer with a reference type.
|
|
399
|
+
template <typename T> class StlContainerView<T&>;
|
|
400
|
+
|
|
401
|
+
// A type transform to remove constness from the first part of a pair.
|
|
402
|
+
// Pairs like that are used as the value_type of associative containers,
|
|
403
|
+
// and this transform produces a similar but assignable pair.
|
|
404
|
+
template <typename T>
|
|
405
|
+
struct RemoveConstFromKey {
|
|
406
|
+
typedef T type;
|
|
407
|
+
};
|
|
408
|
+
|
|
409
|
+
// Partially specialized to remove constness from std::pair<const K, V>.
|
|
410
|
+
template <typename K, typename V>
|
|
411
|
+
struct RemoveConstFromKey<std::pair<const K, V> > {
|
|
412
|
+
typedef std::pair<K, V> type;
|
|
413
|
+
};
|
|
414
|
+
|
|
415
|
+
// Emit an assertion failure due to incorrect DoDefault() usage. Out-of-lined to
|
|
416
|
+
// reduce code size.
|
|
417
|
+
GTEST_API_ void IllegalDoDefault(const char* file, int line);
|
|
418
|
+
|
|
419
|
+
template <typename F, typename Tuple, size_t... Idx>
|
|
420
|
+
auto ApplyImpl(F&& f, Tuple&& args, IndexSequence<Idx...>) -> decltype(
|
|
421
|
+
std::forward<F>(f)(std::get<Idx>(std::forward<Tuple>(args))...)) {
|
|
422
|
+
return std::forward<F>(f)(std::get<Idx>(std::forward<Tuple>(args))...);
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
// Apply the function to a tuple of arguments.
|
|
426
|
+
template <typename F, typename Tuple>
|
|
427
|
+
auto Apply(F&& f, Tuple&& args)
|
|
428
|
+
-> decltype(ApplyImpl(std::forward<F>(f), std::forward<Tuple>(args),
|
|
429
|
+
MakeIndexSequence<std::tuple_size<Tuple>::value>())) {
|
|
430
|
+
return ApplyImpl(std::forward<F>(f), std::forward<Tuple>(args),
|
|
431
|
+
MakeIndexSequence<std::tuple_size<Tuple>::value>());
|
|
432
|
+
}
|
|
433
|
+
|
|
434
|
+
// Template struct Function<F>, where F must be a function type, contains
|
|
435
|
+
// the following typedefs:
|
|
436
|
+
//
|
|
437
|
+
// Result: the function's return type.
|
|
438
|
+
// Arg<N>: the type of the N-th argument, where N starts with 0.
|
|
439
|
+
// ArgumentTuple: the tuple type consisting of all parameters of F.
|
|
440
|
+
// ArgumentMatcherTuple: the tuple type consisting of Matchers for all
|
|
441
|
+
// parameters of F.
|
|
442
|
+
// MakeResultVoid: the function type obtained by substituting void
|
|
443
|
+
// for the return type of F.
|
|
444
|
+
// MakeResultIgnoredValue:
|
|
445
|
+
// the function type obtained by substituting Something
|
|
446
|
+
// for the return type of F.
|
|
447
|
+
template <typename T>
|
|
448
|
+
struct Function;
|
|
449
|
+
|
|
450
|
+
template <typename R, typename... Args>
|
|
451
|
+
struct Function<R(Args...)> {
|
|
452
|
+
using Result = R;
|
|
453
|
+
static constexpr size_t ArgumentCount = sizeof...(Args);
|
|
454
|
+
template <size_t I>
|
|
455
|
+
using Arg = ElemFromList<I, Args...>;
|
|
456
|
+
using ArgumentTuple = std::tuple<Args...>;
|
|
457
|
+
using ArgumentMatcherTuple = std::tuple<Matcher<Args>...>;
|
|
458
|
+
using MakeResultVoid = void(Args...);
|
|
459
|
+
using MakeResultIgnoredValue = IgnoredValue(Args...);
|
|
460
|
+
};
|
|
461
|
+
|
|
462
|
+
template <typename R, typename... Args>
|
|
463
|
+
constexpr size_t Function<R(Args...)>::ArgumentCount;
|
|
464
|
+
|
|
465
|
+
#ifdef _MSC_VER
|
|
466
|
+
# pragma warning(pop)
|
|
467
|
+
#endif
|
|
468
|
+
|
|
469
|
+
} // namespace internal
|
|
470
|
+
} // namespace testing
|
|
471
|
+
|
|
472
|
+
#endif // GMOCK_INCLUDE_GMOCK_INTERNAL_GMOCK_INTERNAL_UTILS_H_
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
// Copyright 2008, Google Inc.
|
|
2
|
+
// All rights reserved.
|
|
3
|
+
//
|
|
4
|
+
// Redistribution and use in source and binary forms, with or without
|
|
5
|
+
// modification, are permitted provided that the following conditions are
|
|
6
|
+
// met:
|
|
7
|
+
//
|
|
8
|
+
// * Redistributions of source code must retain the above copyright
|
|
9
|
+
// notice, this list of conditions and the following disclaimer.
|
|
10
|
+
// * Redistributions in binary form must reproduce the above
|
|
11
|
+
// copyright notice, this list of conditions and the following disclaimer
|
|
12
|
+
// in the documentation and/or other materials provided with the
|
|
13
|
+
// distribution.
|
|
14
|
+
// * Neither the name of Google Inc. nor the names of its
|
|
15
|
+
// contributors may be used to endorse or promote products derived from
|
|
16
|
+
// this software without specific prior written permission.
|
|
17
|
+
//
|
|
18
|
+
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
19
|
+
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
20
|
+
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
21
|
+
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
22
|
+
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
23
|
+
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
24
|
+
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
25
|
+
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
26
|
+
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
27
|
+
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
28
|
+
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
29
|
+
|
|
30
|
+
//
|
|
31
|
+
// Low-level types and utilities for porting Google Mock to various
|
|
32
|
+
// platforms. All macros ending with _ and symbols defined in an
|
|
33
|
+
// internal namespace are subject to change without notice. Code
|
|
34
|
+
// outside Google Mock MUST NOT USE THEM DIRECTLY. Macros that don't
|
|
35
|
+
// end with _ are part of Google Mock's public API and can be used by
|
|
36
|
+
// code outside Google Mock.
|
|
37
|
+
|
|
38
|
+
// GOOGLETEST_CM0002 DO NOT DELETE
|
|
39
|
+
|
|
40
|
+
#ifndef GMOCK_INCLUDE_GMOCK_INTERNAL_GMOCK_PORT_H_
|
|
41
|
+
#define GMOCK_INCLUDE_GMOCK_INTERNAL_GMOCK_PORT_H_
|
|
42
|
+
|
|
43
|
+
#include <assert.h>
|
|
44
|
+
#include <stdlib.h>
|
|
45
|
+
#include <iostream>
|
|
46
|
+
|
|
47
|
+
// Most of the utilities needed for porting Google Mock are also
|
|
48
|
+
// required for Google Test and are defined in gtest-port.h.
|
|
49
|
+
//
|
|
50
|
+
// Note to maintainers: to reduce code duplication, prefer adding
|
|
51
|
+
// portability utilities to Google Test's gtest-port.h instead of
|
|
52
|
+
// here, as Google Mock depends on Google Test. Only add a utility
|
|
53
|
+
// here if it's truly specific to Google Mock.
|
|
54
|
+
|
|
55
|
+
#include "gtest/internal/gtest-port.h"
|
|
56
|
+
#include "gmock/internal/custom/gmock-port.h"
|
|
57
|
+
|
|
58
|
+
// For MS Visual C++, check the compiler version. At least VS 2015 is
|
|
59
|
+
// required to compile Google Mock.
|
|
60
|
+
#if defined(_MSC_VER) && _MSC_VER < 1900
|
|
61
|
+
# error "At least Visual C++ 2015 (14.0) is required to compile Google Mock."
|
|
62
|
+
#endif
|
|
63
|
+
|
|
64
|
+
// Macro for referencing flags. This is public as we want the user to
|
|
65
|
+
// use this syntax to reference Google Mock flags.
|
|
66
|
+
#define GMOCK_FLAG(name) FLAGS_gmock_##name
|
|
67
|
+
|
|
68
|
+
#if !defined(GMOCK_DECLARE_bool_)
|
|
69
|
+
|
|
70
|
+
// Macros for declaring flags.
|
|
71
|
+
# define GMOCK_DECLARE_bool_(name) extern GTEST_API_ bool GMOCK_FLAG(name)
|
|
72
|
+
# define GMOCK_DECLARE_int32_(name) \
|
|
73
|
+
extern GTEST_API_ ::testing::internal::Int32 GMOCK_FLAG(name)
|
|
74
|
+
# define GMOCK_DECLARE_string_(name) \
|
|
75
|
+
extern GTEST_API_ ::std::string GMOCK_FLAG(name)
|
|
76
|
+
|
|
77
|
+
// Macros for defining flags.
|
|
78
|
+
# define GMOCK_DEFINE_bool_(name, default_val, doc) \
|
|
79
|
+
GTEST_API_ bool GMOCK_FLAG(name) = (default_val)
|
|
80
|
+
# define GMOCK_DEFINE_int32_(name, default_val, doc) \
|
|
81
|
+
GTEST_API_ ::testing::internal::Int32 GMOCK_FLAG(name) = (default_val)
|
|
82
|
+
# define GMOCK_DEFINE_string_(name, default_val, doc) \
|
|
83
|
+
GTEST_API_ ::std::string GMOCK_FLAG(name) = (default_val)
|
|
84
|
+
|
|
85
|
+
#endif // !defined(GMOCK_DECLARE_bool_)
|
|
86
|
+
|
|
87
|
+
#endif // GMOCK_INCLUDE_GMOCK_INTERNAL_GMOCK_PORT_H_
|