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.
Files changed (595) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +92 -0
  3. package/android/.project +34 -0
  4. package/android/.settings/org.eclipse.buildship.core.prefs +13 -0
  5. package/android/CMakeLists.txt +69 -0
  6. package/android/build.gradle +125 -0
  7. package/android/cpp-adapter.cpp +19 -0
  8. package/android/gradle.properties +6 -0
  9. package/android/src/main/AndroidManifest.xml +4 -0
  10. package/android/src/main/java/com/reactnativeleveldb/LeveldbModule.java +57 -0
  11. package/android/src/main/java/com/reactnativeleveldb/LeveldbPackage.java +28 -0
  12. package/cpp/leveldb/.appveyor.yml +36 -0
  13. package/cpp/leveldb/.clang-format +18 -0
  14. package/cpp/leveldb/.travis.yml +88 -0
  15. package/cpp/leveldb/AUTHORS +12 -0
  16. package/cpp/leveldb/CMakeLists.txt +495 -0
  17. package/cpp/leveldb/CONTRIBUTING.md +36 -0
  18. package/cpp/leveldb/LICENSE +27 -0
  19. package/cpp/leveldb/NEWS +17 -0
  20. package/cpp/leveldb/README.md +231 -0
  21. package/cpp/leveldb/TODO +14 -0
  22. package/cpp/leveldb/benchmarks/db_bench.cc +990 -0
  23. package/cpp/leveldb/benchmarks/db_bench_sqlite3.cc +726 -0
  24. package/cpp/leveldb/benchmarks/db_bench_tree_db.cc +531 -0
  25. package/cpp/leveldb/cmake/leveldbConfig.cmake.in +9 -0
  26. package/cpp/leveldb/db/autocompact_test.cc +115 -0
  27. package/cpp/leveldb/db/builder.cc +82 -0
  28. package/cpp/leveldb/db/builder.h +30 -0
  29. package/cpp/leveldb/db/c.cc +562 -0
  30. package/cpp/leveldb/db/c_test.c +384 -0
  31. package/cpp/leveldb/db/corruption_test.cc +367 -0
  32. package/cpp/leveldb/db/db_impl.cc +1554 -0
  33. package/cpp/leveldb/db/db_impl.h +217 -0
  34. package/cpp/leveldb/db/db_iter.cc +318 -0
  35. package/cpp/leveldb/db/db_iter.h +26 -0
  36. package/cpp/leveldb/db/db_test.cc +2305 -0
  37. package/cpp/leveldb/db/dbformat.cc +136 -0
  38. package/cpp/leveldb/db/dbformat.h +224 -0
  39. package/cpp/leveldb/db/dbformat_test.cc +133 -0
  40. package/cpp/leveldb/db/dumpfile.cc +232 -0
  41. package/cpp/leveldb/db/fault_injection_test.cc +555 -0
  42. package/cpp/leveldb/db/filename.cc +141 -0
  43. package/cpp/leveldb/db/filename.h +83 -0
  44. package/cpp/leveldb/db/filename_test.cc +132 -0
  45. package/cpp/leveldb/db/leveldbutil.cc +64 -0
  46. package/cpp/leveldb/db/log_format.h +35 -0
  47. package/cpp/leveldb/db/log_reader.cc +274 -0
  48. package/cpp/leveldb/db/log_reader.h +112 -0
  49. package/cpp/leveldb/db/log_test.cc +563 -0
  50. package/cpp/leveldb/db/log_writer.cc +111 -0
  51. package/cpp/leveldb/db/log_writer.h +54 -0
  52. package/cpp/leveldb/db/memtable.cc +137 -0
  53. package/cpp/leveldb/db/memtable.h +87 -0
  54. package/cpp/leveldb/db/recovery_test.cc +339 -0
  55. package/cpp/leveldb/db/repair.cc +451 -0
  56. package/cpp/leveldb/db/skiplist.h +382 -0
  57. package/cpp/leveldb/db/skiplist_test.cc +373 -0
  58. package/cpp/leveldb/db/snapshot.h +95 -0
  59. package/cpp/leveldb/db/table_cache.cc +120 -0
  60. package/cpp/leveldb/db/table_cache.h +57 -0
  61. package/cpp/leveldb/db/version_edit.cc +257 -0
  62. package/cpp/leveldb/db/version_edit.h +106 -0
  63. package/cpp/leveldb/db/version_edit_test.cc +46 -0
  64. package/cpp/leveldb/db/version_set.cc +1562 -0
  65. package/cpp/leveldb/db/version_set.h +393 -0
  66. package/cpp/leveldb/db/version_set_test.cc +336 -0
  67. package/cpp/leveldb/db/write_batch.cc +150 -0
  68. package/cpp/leveldb/db/write_batch_internal.h +45 -0
  69. package/cpp/leveldb/db/write_batch_test.cc +137 -0
  70. package/cpp/leveldb/doc/benchmark.html +459 -0
  71. package/cpp/leveldb/doc/impl.md +172 -0
  72. package/cpp/leveldb/doc/index.md +523 -0
  73. package/cpp/leveldb/doc/log_format.md +75 -0
  74. package/cpp/leveldb/doc/table_format.md +107 -0
  75. package/cpp/leveldb/helpers/memenv/memenv.cc +390 -0
  76. package/cpp/leveldb/helpers/memenv/memenv.h +22 -0
  77. package/cpp/leveldb/helpers/memenv/memenv_test.cc +264 -0
  78. package/cpp/leveldb/include/leveldb/c.h +270 -0
  79. package/cpp/leveldb/include/leveldb/cache.h +111 -0
  80. package/cpp/leveldb/include/leveldb/comparator.h +64 -0
  81. package/cpp/leveldb/include/leveldb/db.h +167 -0
  82. package/cpp/leveldb/include/leveldb/dumpfile.h +28 -0
  83. package/cpp/leveldb/include/leveldb/env.h +417 -0
  84. package/cpp/leveldb/include/leveldb/export.h +33 -0
  85. package/cpp/leveldb/include/leveldb/filter_policy.h +72 -0
  86. package/cpp/leveldb/include/leveldb/iterator.h +112 -0
  87. package/cpp/leveldb/include/leveldb/options.h +187 -0
  88. package/cpp/leveldb/include/leveldb/slice.h +114 -0
  89. package/cpp/leveldb/include/leveldb/status.h +122 -0
  90. package/cpp/leveldb/include/leveldb/table.h +84 -0
  91. package/cpp/leveldb/include/leveldb/table_builder.h +93 -0
  92. package/cpp/leveldb/include/leveldb/write_batch.h +83 -0
  93. package/cpp/leveldb/issues/issue178_test.cc +90 -0
  94. package/cpp/leveldb/issues/issue200_test.cc +59 -0
  95. package/cpp/leveldb/issues/issue320_test.cc +131 -0
  96. package/cpp/leveldb/port/README.md +10 -0
  97. package/cpp/leveldb/port/port.h +19 -0
  98. package/cpp/leveldb/port/port_config.h.in +33 -0
  99. package/cpp/leveldb/port/port_example.h +100 -0
  100. package/cpp/leveldb/port/port_stdcxx.h +151 -0
  101. package/cpp/leveldb/port/thread_annotations.h +108 -0
  102. package/cpp/leveldb/table/block.cc +267 -0
  103. package/cpp/leveldb/table/block.h +44 -0
  104. package/cpp/leveldb/table/block_builder.cc +107 -0
  105. package/cpp/leveldb/table/block_builder.h +54 -0
  106. package/cpp/leveldb/table/filter_block.cc +106 -0
  107. package/cpp/leveldb/table/filter_block.h +68 -0
  108. package/cpp/leveldb/table/filter_block_test.cc +127 -0
  109. package/cpp/leveldb/table/format.cc +141 -0
  110. package/cpp/leveldb/table/format.h +99 -0
  111. package/cpp/leveldb/table/iterator.cc +76 -0
  112. package/cpp/leveldb/table/iterator_wrapper.h +92 -0
  113. package/cpp/leveldb/table/merger.cc +191 -0
  114. package/cpp/leveldb/table/merger.h +26 -0
  115. package/cpp/leveldb/table/table.cc +271 -0
  116. package/cpp/leveldb/table/table_builder.cc +265 -0
  117. package/cpp/leveldb/table/table_test.cc +834 -0
  118. package/cpp/leveldb/table/two_level_iterator.cc +171 -0
  119. package/cpp/leveldb/table/two_level_iterator.h +31 -0
  120. package/cpp/leveldb/third_party/benchmark/.clang-format +5 -0
  121. package/cpp/leveldb/third_party/benchmark/.github/ISSUE_TEMPLATE/bug_report.md +32 -0
  122. package/cpp/leveldb/third_party/benchmark/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
  123. package/cpp/leveldb/third_party/benchmark/.github/workflows/build-and-test.yml +38 -0
  124. package/cpp/leveldb/third_party/benchmark/.github/workflows/pylint.yml +26 -0
  125. package/cpp/leveldb/third_party/benchmark/.github/workflows/test_bindings.yml +24 -0
  126. package/cpp/leveldb/third_party/benchmark/.travis-libcxx-setup.sh +28 -0
  127. package/cpp/leveldb/third_party/benchmark/.travis.yml +231 -0
  128. package/cpp/leveldb/third_party/benchmark/.ycm_extra_conf.py +115 -0
  129. package/cpp/leveldb/third_party/benchmark/AUTHORS +58 -0
  130. package/cpp/leveldb/third_party/benchmark/BUILD.bazel +44 -0
  131. package/cpp/leveldb/third_party/benchmark/CMakeLists.txt +287 -0
  132. package/cpp/leveldb/third_party/benchmark/CONTRIBUTING.md +58 -0
  133. package/cpp/leveldb/third_party/benchmark/CONTRIBUTORS +83 -0
  134. package/cpp/leveldb/third_party/benchmark/LICENSE +202 -0
  135. package/cpp/leveldb/third_party/benchmark/README.md +1323 -0
  136. package/cpp/leveldb/third_party/benchmark/WORKSPACE +51 -0
  137. package/cpp/leveldb/third_party/benchmark/_config.yml +1 -0
  138. package/cpp/leveldb/third_party/benchmark/appveyor.yml +50 -0
  139. package/cpp/leveldb/third_party/benchmark/bindings/python/BUILD +3 -0
  140. package/cpp/leveldb/third_party/benchmark/bindings/python/build_defs.bzl +25 -0
  141. package/cpp/leveldb/third_party/benchmark/bindings/python/google_benchmark/BUILD +38 -0
  142. package/cpp/leveldb/third_party/benchmark/bindings/python/google_benchmark/__init__.py +156 -0
  143. package/cpp/leveldb/third_party/benchmark/bindings/python/google_benchmark/benchmark.cc +180 -0
  144. package/cpp/leveldb/third_party/benchmark/bindings/python/google_benchmark/example.py +136 -0
  145. package/cpp/leveldb/third_party/benchmark/bindings/python/pybind11.BUILD +20 -0
  146. package/cpp/leveldb/third_party/benchmark/bindings/python/python_headers.BUILD +6 -0
  147. package/cpp/leveldb/third_party/benchmark/bindings/python/requirements.txt +2 -0
  148. package/cpp/leveldb/third_party/benchmark/cmake/AddCXXCompilerFlag.cmake +74 -0
  149. package/cpp/leveldb/third_party/benchmark/cmake/CXXFeatureCheck.cmake +69 -0
  150. package/cpp/leveldb/third_party/benchmark/cmake/Config.cmake.in +1 -0
  151. package/cpp/leveldb/third_party/benchmark/cmake/GetGitVersion.cmake +54 -0
  152. package/cpp/leveldb/third_party/benchmark/cmake/GoogleTest.cmake +41 -0
  153. package/cpp/leveldb/third_party/benchmark/cmake/GoogleTest.cmake.in +58 -0
  154. package/cpp/leveldb/third_party/benchmark/cmake/benchmark.pc.in +12 -0
  155. package/cpp/leveldb/third_party/benchmark/cmake/gnu_posix_regex.cpp +12 -0
  156. package/cpp/leveldb/third_party/benchmark/cmake/llvm-toolchain.cmake +8 -0
  157. package/cpp/leveldb/third_party/benchmark/cmake/posix_regex.cpp +14 -0
  158. package/cpp/leveldb/third_party/benchmark/cmake/split_list.cmake +3 -0
  159. package/cpp/leveldb/third_party/benchmark/cmake/std_regex.cpp +10 -0
  160. package/cpp/leveldb/third_party/benchmark/cmake/steady_clock.cpp +7 -0
  161. package/cpp/leveldb/third_party/benchmark/cmake/thread_safety_attributes.cpp +4 -0
  162. package/cpp/leveldb/third_party/benchmark/conan/CMakeLists.txt +7 -0
  163. package/cpp/leveldb/third_party/benchmark/conan/test_package/CMakeLists.txt +10 -0
  164. package/cpp/leveldb/third_party/benchmark/conan/test_package/conanfile.py +19 -0
  165. package/cpp/leveldb/third_party/benchmark/conan/test_package/test_package.cpp +18 -0
  166. package/cpp/leveldb/third_party/benchmark/conanfile.py +79 -0
  167. package/cpp/leveldb/third_party/benchmark/dependencies.md +18 -0
  168. package/cpp/leveldb/third_party/benchmark/docs/AssemblyTests.md +147 -0
  169. package/cpp/leveldb/third_party/benchmark/docs/_config.yml +1 -0
  170. package/cpp/leveldb/third_party/benchmark/docs/releasing.md +16 -0
  171. package/cpp/leveldb/third_party/benchmark/docs/tools.md +203 -0
  172. package/cpp/leveldb/third_party/benchmark/include/benchmark/benchmark.h +1604 -0
  173. package/cpp/leveldb/third_party/benchmark/requirements.txt +2 -0
  174. package/cpp/leveldb/third_party/benchmark/setup.py +140 -0
  175. package/cpp/leveldb/third_party/benchmark/src/CMakeLists.txt +114 -0
  176. package/cpp/leveldb/third_party/benchmark/src/arraysize.h +33 -0
  177. package/cpp/leveldb/third_party/benchmark/src/benchmark.cc +499 -0
  178. package/cpp/leveldb/third_party/benchmark/src/benchmark_api_internal.cc +15 -0
  179. package/cpp/leveldb/third_party/benchmark/src/benchmark_api_internal.h +53 -0
  180. package/cpp/leveldb/third_party/benchmark/src/benchmark_main.cc +17 -0
  181. package/cpp/leveldb/third_party/benchmark/src/benchmark_name.cc +58 -0
  182. package/cpp/leveldb/third_party/benchmark/src/benchmark_register.cc +515 -0
  183. package/cpp/leveldb/third_party/benchmark/src/benchmark_register.h +108 -0
  184. package/cpp/leveldb/third_party/benchmark/src/benchmark_runner.cc +362 -0
  185. package/cpp/leveldb/third_party/benchmark/src/benchmark_runner.h +51 -0
  186. package/cpp/leveldb/third_party/benchmark/src/check.h +82 -0
  187. package/cpp/leveldb/third_party/benchmark/src/colorprint.cc +188 -0
  188. package/cpp/leveldb/third_party/benchmark/src/colorprint.h +33 -0
  189. package/cpp/leveldb/third_party/benchmark/src/commandlineflags.cc +228 -0
  190. package/cpp/leveldb/third_party/benchmark/src/commandlineflags.h +103 -0
  191. package/cpp/leveldb/third_party/benchmark/src/complexity.cc +238 -0
  192. package/cpp/leveldb/third_party/benchmark/src/complexity.h +55 -0
  193. package/cpp/leveldb/third_party/benchmark/src/console_reporter.cc +177 -0
  194. package/cpp/leveldb/third_party/benchmark/src/counter.cc +80 -0
  195. package/cpp/leveldb/third_party/benchmark/src/counter.h +32 -0
  196. package/cpp/leveldb/third_party/benchmark/src/csv_reporter.cc +154 -0
  197. package/cpp/leveldb/third_party/benchmark/src/cycleclock.h +211 -0
  198. package/cpp/leveldb/third_party/benchmark/src/internal_macros.h +102 -0
  199. package/cpp/leveldb/third_party/benchmark/src/json_reporter.cc +255 -0
  200. package/cpp/leveldb/third_party/benchmark/src/log.h +74 -0
  201. package/cpp/leveldb/third_party/benchmark/src/mutex.h +155 -0
  202. package/cpp/leveldb/third_party/benchmark/src/re.h +158 -0
  203. package/cpp/leveldb/third_party/benchmark/src/reporter.cc +105 -0
  204. package/cpp/leveldb/third_party/benchmark/src/sleep.cc +67 -0
  205. package/cpp/leveldb/third_party/benchmark/src/sleep.h +15 -0
  206. package/cpp/leveldb/third_party/benchmark/src/statistics.cc +193 -0
  207. package/cpp/leveldb/third_party/benchmark/src/statistics.h +37 -0
  208. package/cpp/leveldb/third_party/benchmark/src/string_util.cc +255 -0
  209. package/cpp/leveldb/third_party/benchmark/src/string_util.h +59 -0
  210. package/cpp/leveldb/third_party/benchmark/src/sysinfo.cc +716 -0
  211. package/cpp/leveldb/third_party/benchmark/src/thread_manager.h +64 -0
  212. package/cpp/leveldb/third_party/benchmark/src/thread_timer.h +86 -0
  213. package/cpp/leveldb/third_party/benchmark/src/timers.cc +245 -0
  214. package/cpp/leveldb/third_party/benchmark/src/timers.h +48 -0
  215. package/cpp/leveldb/third_party/benchmark/test/AssemblyTests.cmake +46 -0
  216. package/cpp/leveldb/third_party/benchmark/test/BUILD +73 -0
  217. package/cpp/leveldb/third_party/benchmark/test/CMakeLists.txt +263 -0
  218. package/cpp/leveldb/third_party/benchmark/test/args_product_test.cc +77 -0
  219. package/cpp/leveldb/third_party/benchmark/test/basic_test.cc +136 -0
  220. package/cpp/leveldb/third_party/benchmark/test/benchmark_gtest.cc +134 -0
  221. package/cpp/leveldb/third_party/benchmark/test/benchmark_name_gtest.cc +74 -0
  222. package/cpp/leveldb/third_party/benchmark/test/benchmark_test.cc +245 -0
  223. package/cpp/leveldb/third_party/benchmark/test/clobber_memory_assembly_test.cc +64 -0
  224. package/cpp/leveldb/third_party/benchmark/test/commandlineflags_gtest.cc +201 -0
  225. package/cpp/leveldb/third_party/benchmark/test/complexity_test.cc +213 -0
  226. package/cpp/leveldb/third_party/benchmark/test/cxx03_test.cc +63 -0
  227. package/cpp/leveldb/third_party/benchmark/test/diagnostics_test.cc +80 -0
  228. package/cpp/leveldb/third_party/benchmark/test/display_aggregates_only_test.cc +43 -0
  229. package/cpp/leveldb/third_party/benchmark/test/donotoptimize_assembly_test.cc +163 -0
  230. package/cpp/leveldb/third_party/benchmark/test/donotoptimize_test.cc +52 -0
  231. package/cpp/leveldb/third_party/benchmark/test/filter_test.cc +104 -0
  232. package/cpp/leveldb/third_party/benchmark/test/fixture_test.cc +51 -0
  233. package/cpp/leveldb/third_party/benchmark/test/internal_threading_test.cc +184 -0
  234. package/cpp/leveldb/third_party/benchmark/test/link_main_test.cc +8 -0
  235. package/cpp/leveldb/third_party/benchmark/test/map_test.cc +57 -0
  236. package/cpp/leveldb/third_party/benchmark/test/memory_manager_test.cc +44 -0
  237. package/cpp/leveldb/third_party/benchmark/test/multiple_ranges_test.cc +96 -0
  238. package/cpp/leveldb/third_party/benchmark/test/options_test.cc +75 -0
  239. package/cpp/leveldb/third_party/benchmark/test/output_test.h +213 -0
  240. package/cpp/leveldb/third_party/benchmark/test/output_test_helper.cc +515 -0
  241. package/cpp/leveldb/third_party/benchmark/test/register_benchmark_test.cc +184 -0
  242. package/cpp/leveldb/third_party/benchmark/test/report_aggregates_only_test.cc +39 -0
  243. package/cpp/leveldb/third_party/benchmark/test/reporter_output_test.cc +747 -0
  244. package/cpp/leveldb/third_party/benchmark/test/skip_with_error_test.cc +195 -0
  245. package/cpp/leveldb/third_party/benchmark/test/state_assembly_test.cc +68 -0
  246. package/cpp/leveldb/third_party/benchmark/test/statistics_gtest.cc +28 -0
  247. package/cpp/leveldb/third_party/benchmark/test/string_util_gtest.cc +153 -0
  248. package/cpp/leveldb/third_party/benchmark/test/templated_fixture_test.cc +28 -0
  249. package/cpp/leveldb/third_party/benchmark/test/user_counters_tabular_test.cc +285 -0
  250. package/cpp/leveldb/third_party/benchmark/test/user_counters_test.cc +531 -0
  251. package/cpp/leveldb/third_party/benchmark/test/user_counters_thousands_test.cc +173 -0
  252. package/cpp/leveldb/third_party/benchmark/tools/BUILD.bazel +19 -0
  253. package/cpp/leveldb/third_party/benchmark/tools/compare.py +429 -0
  254. package/cpp/leveldb/third_party/benchmark/tools/gbench/Inputs/test1_run1.json +119 -0
  255. package/cpp/leveldb/third_party/benchmark/tools/gbench/Inputs/test1_run2.json +119 -0
  256. package/cpp/leveldb/third_party/benchmark/tools/gbench/Inputs/test2_run.json +81 -0
  257. package/cpp/leveldb/third_party/benchmark/tools/gbench/Inputs/test3_run0.json +65 -0
  258. package/cpp/leveldb/third_party/benchmark/tools/gbench/Inputs/test3_run1.json +65 -0
  259. package/cpp/leveldb/third_party/benchmark/tools/gbench/__init__.py +8 -0
  260. package/cpp/leveldb/third_party/benchmark/tools/gbench/report.py +903 -0
  261. package/cpp/leveldb/third_party/benchmark/tools/gbench/util.py +163 -0
  262. package/cpp/leveldb/third_party/benchmark/tools/requirements.txt +1 -0
  263. package/cpp/leveldb/third_party/benchmark/tools/strip_asm.py +151 -0
  264. package/cpp/leveldb/third_party/googletest/.clang-format +4 -0
  265. package/cpp/leveldb/third_party/googletest/.travis.yml +73 -0
  266. package/cpp/leveldb/third_party/googletest/BUILD.bazel +179 -0
  267. package/cpp/leveldb/third_party/googletest/CMakeLists.txt +36 -0
  268. package/cpp/leveldb/third_party/googletest/CONTRIBUTING.md +142 -0
  269. package/cpp/leveldb/third_party/googletest/LICENSE +28 -0
  270. package/cpp/leveldb/third_party/googletest/README.md +132 -0
  271. package/cpp/leveldb/third_party/googletest/WORKSPACE +23 -0
  272. package/cpp/leveldb/third_party/googletest/appveyor.yml +154 -0
  273. package/cpp/leveldb/third_party/googletest/ci/build-linux-bazel.sh +37 -0
  274. package/cpp/leveldb/third_party/googletest/ci/build-platformio.sh +2 -0
  275. package/cpp/leveldb/third_party/googletest/ci/env-linux.sh +41 -0
  276. package/cpp/leveldb/third_party/googletest/ci/env-osx.sh +47 -0
  277. package/cpp/leveldb/third_party/googletest/ci/get-nprocessors.sh +48 -0
  278. package/cpp/leveldb/third_party/googletest/ci/install-linux.sh +49 -0
  279. package/cpp/leveldb/third_party/googletest/ci/install-osx.sh +40 -0
  280. package/cpp/leveldb/third_party/googletest/ci/install-platformio.sh +5 -0
  281. package/cpp/leveldb/third_party/googletest/ci/log-config.sh +51 -0
  282. package/cpp/leveldb/third_party/googletest/ci/travis.sh +44 -0
  283. package/cpp/leveldb/third_party/googletest/googlemock/CMakeLists.txt +233 -0
  284. package/cpp/leveldb/third_party/googletest/googlemock/CONTRIBUTORS +40 -0
  285. package/cpp/leveldb/third_party/googletest/googlemock/LICENSE +28 -0
  286. package/cpp/leveldb/third_party/googletest/googlemock/README.md +44 -0
  287. package/cpp/leveldb/third_party/googletest/googlemock/cmake/gmock.pc.in +10 -0
  288. package/cpp/leveldb/third_party/googletest/googlemock/cmake/gmock_main.pc.in +10 -0
  289. package/cpp/leveldb/third_party/googletest/googlemock/docs/cheat_sheet.md +770 -0
  290. package/cpp/leveldb/third_party/googletest/googlemock/docs/cook_book.md +4270 -0
  291. package/cpp/leveldb/third_party/googletest/googlemock/docs/for_dummies.md +700 -0
  292. package/cpp/leveldb/third_party/googletest/googlemock/docs/gmock_faq.md +396 -0
  293. package/cpp/leveldb/third_party/googletest/googlemock/docs/pump_manual.md +187 -0
  294. package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/gmock-actions.h +1193 -0
  295. package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/gmock-cardinalities.h +157 -0
  296. package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/gmock-function-mocker.h +276 -0
  297. package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/gmock-generated-actions.h +1884 -0
  298. package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/gmock-generated-actions.h.pump +627 -0
  299. package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/gmock-generated-function-mockers.h +752 -0
  300. package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/gmock-generated-function-mockers.h.pump +227 -0
  301. package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/gmock-generated-matchers.h +1097 -0
  302. package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/gmock-generated-matchers.h.pump +346 -0
  303. package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/gmock-matchers.h +4591 -0
  304. package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/gmock-more-actions.h +162 -0
  305. package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/gmock-more-matchers.h +92 -0
  306. package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/gmock-nice-strict.h +215 -0
  307. package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/gmock-spec-builders.h +1985 -0
  308. package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/gmock.h +101 -0
  309. package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/internal/custom/README.md +16 -0
  310. package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/internal/custom/gmock-generated-actions.h +10 -0
  311. package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/internal/custom/gmock-generated-actions.h.pump +12 -0
  312. package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/internal/custom/gmock-matchers.h +36 -0
  313. package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/internal/custom/gmock-port.h +39 -0
  314. package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/internal/gmock-internal-utils.h +472 -0
  315. package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/internal/gmock-port.h +87 -0
  316. package/cpp/leveldb/third_party/googletest/googlemock/include/gmock/internal/gmock-pp.h +271 -0
  317. package/cpp/leveldb/third_party/googletest/googlemock/scripts/README.md +5 -0
  318. package/cpp/leveldb/third_party/googletest/googlemock/scripts/fuse_gmock_files.py +240 -0
  319. package/cpp/leveldb/third_party/googletest/googlemock/scripts/generator/LICENSE +203 -0
  320. package/cpp/leveldb/third_party/googletest/googlemock/scripts/generator/README +34 -0
  321. package/cpp/leveldb/third_party/googletest/googlemock/scripts/generator/README.cppclean +115 -0
  322. package/cpp/leveldb/third_party/googletest/googlemock/scripts/generator/cpp/__init__.py +0 -0
  323. package/cpp/leveldb/third_party/googletest/googlemock/scripts/generator/cpp/ast.py +1761 -0
  324. package/cpp/leveldb/third_party/googletest/googlemock/scripts/generator/cpp/gmock_class.py +248 -0
  325. package/cpp/leveldb/third_party/googletest/googlemock/scripts/generator/cpp/gmock_class_test.py +540 -0
  326. package/cpp/leveldb/third_party/googletest/googlemock/scripts/generator/cpp/keywords.py +56 -0
  327. package/cpp/leveldb/third_party/googletest/googlemock/scripts/generator/cpp/tokenize.py +284 -0
  328. package/cpp/leveldb/third_party/googletest/googlemock/scripts/generator/cpp/utils.py +37 -0
  329. package/cpp/leveldb/third_party/googletest/googlemock/scripts/generator/gmock_gen.py +30 -0
  330. package/cpp/leveldb/third_party/googletest/googlemock/scripts/pump.py +856 -0
  331. package/cpp/leveldb/third_party/googletest/googlemock/src/gmock-all.cc +46 -0
  332. package/cpp/leveldb/third_party/googletest/googlemock/src/gmock-cardinalities.cc +155 -0
  333. package/cpp/leveldb/third_party/googletest/googlemock/src/gmock-internal-utils.cc +200 -0
  334. package/cpp/leveldb/third_party/googletest/googlemock/src/gmock-matchers.cc +462 -0
  335. package/cpp/leveldb/third_party/googletest/googlemock/src/gmock-spec-builders.cc +892 -0
  336. package/cpp/leveldb/third_party/googletest/googlemock/src/gmock.cc +213 -0
  337. package/cpp/leveldb/third_party/googletest/googlemock/src/gmock_main.cc +72 -0
  338. package/cpp/leveldb/third_party/googletest/googlemock/test/BUILD.bazel +110 -0
  339. package/cpp/leveldb/third_party/googletest/googlemock/test/gmock-actions_test.cc +1507 -0
  340. package/cpp/leveldb/third_party/googletest/googlemock/test/gmock-cardinalities_test.cc +429 -0
  341. package/cpp/leveldb/third_party/googletest/googlemock/test/gmock-function-mocker_nc.cc +16 -0
  342. package/cpp/leveldb/third_party/googletest/googlemock/test/gmock-function-mocker_nc_test.py +43 -0
  343. package/cpp/leveldb/third_party/googletest/googlemock/test/gmock-function-mocker_test.cc +696 -0
  344. package/cpp/leveldb/third_party/googletest/googlemock/test/gmock-generated-actions_test.cc +1064 -0
  345. package/cpp/leveldb/third_party/googletest/googlemock/test/gmock-generated-function-mockers_test.cc +659 -0
  346. package/cpp/leveldb/third_party/googletest/googlemock/test/gmock-generated-matchers_test.cc +1323 -0
  347. package/cpp/leveldb/third_party/googletest/googlemock/test/gmock-internal-utils_test.cc +732 -0
  348. package/cpp/leveldb/third_party/googletest/googlemock/test/gmock-matchers_test.cc +6913 -0
  349. package/cpp/leveldb/third_party/googletest/googlemock/test/gmock-more-actions_test.cc +698 -0
  350. package/cpp/leveldb/third_party/googletest/googlemock/test/gmock-nice-strict_test.cc +500 -0
  351. package/cpp/leveldb/third_party/googletest/googlemock/test/gmock-port_test.cc +42 -0
  352. package/cpp/leveldb/third_party/googletest/googlemock/test/gmock-pp-string_test.cc +206 -0
  353. package/cpp/leveldb/third_party/googletest/googlemock/test/gmock-pp_test.cc +83 -0
  354. package/cpp/leveldb/third_party/googletest/googlemock/test/gmock-spec-builders_test.cc +2775 -0
  355. package/cpp/leveldb/third_party/googletest/googlemock/test/gmock_all_test.cc +49 -0
  356. package/cpp/leveldb/third_party/googletest/googlemock/test/gmock_ex_test.cc +80 -0
  357. package/cpp/leveldb/third_party/googletest/googlemock/test/gmock_leak_test.py +104 -0
  358. package/cpp/leveldb/third_party/googletest/googlemock/test/gmock_leak_test_.cc +99 -0
  359. package/cpp/leveldb/third_party/googletest/googlemock/test/gmock_link2_test.cc +39 -0
  360. package/cpp/leveldb/third_party/googletest/googlemock/test/gmock_link_test.cc +39 -0
  361. package/cpp/leveldb/third_party/googletest/googlemock/test/gmock_link_test.h +690 -0
  362. package/cpp/leveldb/third_party/googletest/googlemock/test/gmock_output_test.py +183 -0
  363. package/cpp/leveldb/third_party/googletest/googlemock/test/gmock_output_test_.cc +309 -0
  364. package/cpp/leveldb/third_party/googletest/googlemock/test/gmock_output_test_golden.txt +317 -0
  365. package/cpp/leveldb/third_party/googletest/googlemock/test/gmock_stress_test.cc +240 -0
  366. package/cpp/leveldb/third_party/googletest/googlemock/test/gmock_test.cc +181 -0
  367. package/cpp/leveldb/third_party/googletest/googlemock/test/gmock_test_utils.py +108 -0
  368. package/cpp/leveldb/third_party/googletest/googlemock/test/pump_test.py +182 -0
  369. package/cpp/leveldb/third_party/googletest/googletest/CMakeLists.txt +329 -0
  370. package/cpp/leveldb/third_party/googletest/googletest/CONTRIBUTORS +38 -0
  371. package/cpp/leveldb/third_party/googletest/googletest/LICENSE +28 -0
  372. package/cpp/leveldb/third_party/googletest/googletest/README.md +244 -0
  373. package/cpp/leveldb/third_party/googletest/googletest/cmake/Config.cmake.in +9 -0
  374. package/cpp/leveldb/third_party/googletest/googletest/cmake/gtest.pc.in +9 -0
  375. package/cpp/leveldb/third_party/googletest/googletest/cmake/gtest_main.pc.in +10 -0
  376. package/cpp/leveldb/third_party/googletest/googletest/cmake/internal_utils.cmake +358 -0
  377. package/cpp/leveldb/third_party/googletest/googletest/cmake/libgtest.la.in +21 -0
  378. package/cpp/leveldb/third_party/googletest/googletest/docs/advanced.md +2567 -0
  379. package/cpp/leveldb/third_party/googletest/googletest/docs/faq.md +753 -0
  380. package/cpp/leveldb/third_party/googletest/googletest/docs/pkgconfig.md +219 -0
  381. package/cpp/leveldb/third_party/googletest/googletest/docs/primer.md +579 -0
  382. package/cpp/leveldb/third_party/googletest/googletest/docs/samples.md +22 -0
  383. package/cpp/leveldb/third_party/googletest/googletest/include/gtest/gtest-death-test.h +343 -0
  384. package/cpp/leveldb/third_party/googletest/googletest/include/gtest/gtest-matchers.h +750 -0
  385. package/cpp/leveldb/third_party/googletest/googletest/include/gtest/gtest-message.h +219 -0
  386. package/cpp/leveldb/third_party/googletest/googletest/include/gtest/gtest-param-test.h +514 -0
  387. package/cpp/leveldb/third_party/googletest/googletest/include/gtest/gtest-printers.h +928 -0
  388. package/cpp/leveldb/third_party/googletest/googletest/include/gtest/gtest-spi.h +238 -0
  389. package/cpp/leveldb/third_party/googletest/googletest/include/gtest/gtest-test-part.h +184 -0
  390. package/cpp/leveldb/third_party/googletest/googletest/include/gtest/gtest-typed-test.h +337 -0
  391. package/cpp/leveldb/third_party/googletest/googletest/include/gtest/gtest.h +2477 -0
  392. package/cpp/leveldb/third_party/googletest/googletest/include/gtest/gtest_pred_impl.h +359 -0
  393. package/cpp/leveldb/third_party/googletest/googletest/include/gtest/gtest_prod.h +61 -0
  394. package/cpp/leveldb/third_party/googletest/googletest/include/gtest/internal/custom/README.md +56 -0
  395. package/cpp/leveldb/third_party/googletest/googletest/include/gtest/internal/custom/gtest-port.h +37 -0
  396. package/cpp/leveldb/third_party/googletest/googletest/include/gtest/internal/custom/gtest-printers.h +42 -0
  397. package/cpp/leveldb/third_party/googletest/googletest/include/gtest/internal/custom/gtest.h +37 -0
  398. package/cpp/leveldb/third_party/googletest/googletest/include/gtest/internal/gtest-death-test-internal.h +304 -0
  399. package/cpp/leveldb/third_party/googletest/googletest/include/gtest/internal/gtest-filepath.h +211 -0
  400. package/cpp/leveldb/third_party/googletest/googletest/include/gtest/internal/gtest-internal.h +1411 -0
  401. package/cpp/leveldb/third_party/googletest/googletest/include/gtest/internal/gtest-param-util.h +880 -0
  402. package/cpp/leveldb/third_party/googletest/googletest/include/gtest/internal/gtest-port-arch.h +111 -0
  403. package/cpp/leveldb/third_party/googletest/googletest/include/gtest/internal/gtest-port.h +2227 -0
  404. package/cpp/leveldb/third_party/googletest/googletest/include/gtest/internal/gtest-string.h +171 -0
  405. package/cpp/leveldb/third_party/googletest/googletest/include/gtest/internal/gtest-type-util.h +183 -0
  406. package/cpp/leveldb/third_party/googletest/googletest/samples/prime_tables.h +126 -0
  407. package/cpp/leveldb/third_party/googletest/googletest/samples/sample1.cc +66 -0
  408. package/cpp/leveldb/third_party/googletest/googletest/samples/sample1.h +41 -0
  409. package/cpp/leveldb/third_party/googletest/googletest/samples/sample10_unittest.cc +139 -0
  410. package/cpp/leveldb/third_party/googletest/googletest/samples/sample1_unittest.cc +151 -0
  411. package/cpp/leveldb/third_party/googletest/googletest/samples/sample2.cc +54 -0
  412. package/cpp/leveldb/third_party/googletest/googletest/samples/sample2.h +81 -0
  413. package/cpp/leveldb/third_party/googletest/googletest/samples/sample2_unittest.cc +107 -0
  414. package/cpp/leveldb/third_party/googletest/googletest/samples/sample3-inl.h +172 -0
  415. package/cpp/leveldb/third_party/googletest/googletest/samples/sample3_unittest.cc +149 -0
  416. package/cpp/leveldb/third_party/googletest/googletest/samples/sample4.cc +54 -0
  417. package/cpp/leveldb/third_party/googletest/googletest/samples/sample4.h +53 -0
  418. package/cpp/leveldb/third_party/googletest/googletest/samples/sample4_unittest.cc +53 -0
  419. package/cpp/leveldb/third_party/googletest/googletest/samples/sample5_unittest.cc +196 -0
  420. package/cpp/leveldb/third_party/googletest/googletest/samples/sample6_unittest.cc +224 -0
  421. package/cpp/leveldb/third_party/googletest/googletest/samples/sample7_unittest.cc +117 -0
  422. package/cpp/leveldb/third_party/googletest/googletest/samples/sample8_unittest.cc +154 -0
  423. package/cpp/leveldb/third_party/googletest/googletest/samples/sample9_unittest.cc +156 -0
  424. package/cpp/leveldb/third_party/googletest/googletest/scripts/README.md +5 -0
  425. package/cpp/leveldb/third_party/googletest/googletest/scripts/common.py +83 -0
  426. package/cpp/leveldb/third_party/googletest/googletest/scripts/fuse_gtest_files.py +253 -0
  427. package/cpp/leveldb/third_party/googletest/googletest/scripts/gen_gtest_pred_impl.py +734 -0
  428. package/cpp/leveldb/third_party/googletest/googletest/scripts/gtest-config.in +274 -0
  429. package/cpp/leveldb/third_party/googletest/googletest/scripts/release_docs.py +158 -0
  430. package/cpp/leveldb/third_party/googletest/googletest/scripts/run_with_path.py +32 -0
  431. package/cpp/leveldb/third_party/googletest/googletest/scripts/upload.py +1402 -0
  432. package/cpp/leveldb/third_party/googletest/googletest/scripts/upload_gtest.py +78 -0
  433. package/cpp/leveldb/third_party/googletest/googletest/src/gtest-all.cc +48 -0
  434. package/cpp/leveldb/third_party/googletest/googletest/src/gtest-death-test.cc +1653 -0
  435. package/cpp/leveldb/third_party/googletest/googletest/src/gtest-filepath.cc +382 -0
  436. package/cpp/leveldb/third_party/googletest/googletest/src/gtest-internal-inl.h +1211 -0
  437. package/cpp/leveldb/third_party/googletest/googletest/src/gtest-matchers.cc +97 -0
  438. package/cpp/leveldb/third_party/googletest/googletest/src/gtest-port.cc +1399 -0
  439. package/cpp/leveldb/third_party/googletest/googletest/src/gtest-printers.cc +442 -0
  440. package/cpp/leveldb/third_party/googletest/googletest/src/gtest-test-part.cc +108 -0
  441. package/cpp/leveldb/third_party/googletest/googletest/src/gtest-typed-test.cc +118 -0
  442. package/cpp/leveldb/third_party/googletest/googletest/src/gtest.cc +6180 -0
  443. package/cpp/leveldb/third_party/googletest/googletest/src/gtest_main.cc +54 -0
  444. package/cpp/leveldb/third_party/googletest/googletest/test/BUILD.bazel +529 -0
  445. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-break-on-failure-unittest.py +208 -0
  446. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-break-on-failure-unittest_.cc +86 -0
  447. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-catch-exceptions-test.py +236 -0
  448. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-catch-exceptions-test_.cc +293 -0
  449. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-color-test.py +127 -0
  450. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-color-test_.cc +62 -0
  451. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-death-test-test.cc +1516 -0
  452. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-death-test_ex_test.cc +92 -0
  453. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-env-var-test.py +117 -0
  454. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-env-var-test_.cc +122 -0
  455. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-filepath-test.cc +649 -0
  456. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-filter-unittest.py +639 -0
  457. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-filter-unittest_.cc +137 -0
  458. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-json-outfiles-test.py +191 -0
  459. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-json-output-unittest.py +778 -0
  460. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-list-tests-unittest.py +205 -0
  461. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-list-tests-unittest_.cc +156 -0
  462. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-listener-test.cc +518 -0
  463. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-message-test.cc +158 -0
  464. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-options-test.cc +216 -0
  465. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-output-test-golden-lin.txt +1137 -0
  466. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-output-test.py +346 -0
  467. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-output-test_.cc +1149 -0
  468. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-param-test-invalid-name1-test.py +63 -0
  469. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-param-test-invalid-name1-test_.cc +50 -0
  470. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-param-test-invalid-name2-test.py +62 -0
  471. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-param-test-invalid-name2-test_.cc +55 -0
  472. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-param-test-test.cc +1086 -0
  473. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-param-test-test.h +51 -0
  474. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-param-test2-test.cc +61 -0
  475. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-port-test.cc +1272 -0
  476. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-printers-test.cc +1619 -0
  477. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-shuffle-test.py +323 -0
  478. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-shuffle-test_.cc +101 -0
  479. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-test-part-test.cc +230 -0
  480. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-test2_test.cc +61 -0
  481. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-throw-on-failure-test.py +168 -0
  482. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-throw-on-failure-test_.cc +71 -0
  483. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-uninitialized-test.py +67 -0
  484. package/cpp/leveldb/third_party/googletest/googletest/test/googletest-uninitialized-test_.cc +42 -0
  485. package/cpp/leveldb/third_party/googletest/googletest/test/gtest-typed-test2_test.cc +44 -0
  486. package/cpp/leveldb/third_party/googletest/googletest/test/gtest-typed-test_test.cc +462 -0
  487. package/cpp/leveldb/third_party/googletest/googletest/test/gtest-typed-test_test.h +65 -0
  488. package/cpp/leveldb/third_party/googletest/googletest/test/gtest-unittest-api_test.cc +341 -0
  489. package/cpp/leveldb/third_party/googletest/googletest/test/gtest_all_test.cc +46 -0
  490. package/cpp/leveldb/third_party/googletest/googletest/test/gtest_assert_by_exception_test.cc +116 -0
  491. package/cpp/leveldb/third_party/googletest/googletest/test/gtest_environment_test.cc +188 -0
  492. package/cpp/leveldb/third_party/googletest/googletest/test/gtest_help_test.py +170 -0
  493. package/cpp/leveldb/third_party/googletest/googletest/test/gtest_help_test_.cc +45 -0
  494. package/cpp/leveldb/third_party/googletest/googletest/test/gtest_json_test_utils.py +60 -0
  495. package/cpp/leveldb/third_party/googletest/googletest/test/gtest_list_output_unittest.py +141 -0
  496. package/cpp/leveldb/third_party/googletest/googletest/test/gtest_list_output_unittest_.cc +51 -0
  497. package/cpp/leveldb/third_party/googletest/googletest/test/gtest_main_unittest.cc +44 -0
  498. package/cpp/leveldb/third_party/googletest/googletest/test/gtest_no_test_unittest.cc +54 -0
  499. package/cpp/leveldb/third_party/googletest/googletest/test/gtest_pred_impl_unittest.cc +2427 -0
  500. package/cpp/leveldb/third_party/googletest/googletest/test/gtest_premature_exit_test.cc +126 -0
  501. package/cpp/leveldb/third_party/googletest/googletest/test/gtest_prod_test.cc +56 -0
  502. package/cpp/leveldb/third_party/googletest/googletest/test/gtest_repeat_test.cc +233 -0
  503. package/cpp/leveldb/third_party/googletest/googletest/test/gtest_skip_check_output_test.py +59 -0
  504. package/cpp/leveldb/third_party/googletest/googletest/test/gtest_skip_environment_check_output_test.py +54 -0
  505. package/cpp/leveldb/third_party/googletest/googletest/test/gtest_skip_in_environment_setup_test.cc +49 -0
  506. package/cpp/leveldb/third_party/googletest/googletest/test/gtest_skip_test.cc +55 -0
  507. package/cpp/leveldb/third_party/googletest/googletest/test/gtest_sole_header_test.cc +56 -0
  508. package/cpp/leveldb/third_party/googletest/googletest/test/gtest_stress_test.cc +248 -0
  509. package/cpp/leveldb/third_party/googletest/googletest/test/gtest_test_macro_stack_footprint_test.cc +89 -0
  510. package/cpp/leveldb/third_party/googletest/googletest/test/gtest_test_utils.py +314 -0
  511. package/cpp/leveldb/third_party/googletest/googletest/test/gtest_testbridge_test.py +63 -0
  512. package/cpp/leveldb/third_party/googletest/googletest/test/gtest_testbridge_test_.cc +43 -0
  513. package/cpp/leveldb/third_party/googletest/googletest/test/gtest_throw_on_failure_ex_test.cc +90 -0
  514. package/cpp/leveldb/third_party/googletest/googletest/test/gtest_unittest.cc +7496 -0
  515. package/cpp/leveldb/third_party/googletest/googletest/test/gtest_xml_outfile1_test_.cc +43 -0
  516. package/cpp/leveldb/third_party/googletest/googletest/test/gtest_xml_outfile2_test_.cc +43 -0
  517. package/cpp/leveldb/third_party/googletest/googletest/test/gtest_xml_outfiles_test.py +135 -0
  518. package/cpp/leveldb/third_party/googletest/googletest/test/gtest_xml_output_unittest.py +389 -0
  519. package/cpp/leveldb/third_party/googletest/googletest/test/gtest_xml_output_unittest_.cc +188 -0
  520. package/cpp/leveldb/third_party/googletest/googletest/test/gtest_xml_test_utils.py +196 -0
  521. package/cpp/leveldb/third_party/googletest/googletest/test/production.cc +35 -0
  522. package/cpp/leveldb/third_party/googletest/googletest/test/production.h +54 -0
  523. package/cpp/leveldb/third_party/googletest/library.json +66 -0
  524. package/cpp/leveldb/third_party/googletest/platformio.ini +47 -0
  525. package/cpp/leveldb/util/arena.cc +66 -0
  526. package/cpp/leveldb/util/arena.h +71 -0
  527. package/cpp/leveldb/util/arena_test.cc +66 -0
  528. package/cpp/leveldb/util/bloom.cc +92 -0
  529. package/cpp/leveldb/util/bloom_test.cc +159 -0
  530. package/cpp/leveldb/util/cache.cc +401 -0
  531. package/cpp/leveldb/util/cache_test.cc +229 -0
  532. package/cpp/leveldb/util/coding.cc +166 -0
  533. package/cpp/leveldb/util/coding.h +122 -0
  534. package/cpp/leveldb/util/coding_test.cc +198 -0
  535. package/cpp/leveldb/util/comparator.cc +75 -0
  536. package/cpp/leveldb/util/crc32c.cc +380 -0
  537. package/cpp/leveldb/util/crc32c.h +43 -0
  538. package/cpp/leveldb/util/crc32c_test.cc +61 -0
  539. package/cpp/leveldb/util/env.cc +108 -0
  540. package/cpp/leveldb/util/env_posix.cc +893 -0
  541. package/cpp/leveldb/util/env_posix_test.cc +353 -0
  542. package/cpp/leveldb/util/env_posix_test_helper.h +28 -0
  543. package/cpp/leveldb/util/env_test.cc +240 -0
  544. package/cpp/leveldb/util/env_windows.cc +796 -0
  545. package/cpp/leveldb/util/env_windows_test.cc +65 -0
  546. package/cpp/leveldb/util/env_windows_test_helper.h +25 -0
  547. package/cpp/leveldb/util/filter_policy.cc +11 -0
  548. package/cpp/leveldb/util/hash.cc +55 -0
  549. package/cpp/leveldb/util/hash.h +19 -0
  550. package/cpp/leveldb/util/hash_test.cc +46 -0
  551. package/cpp/leveldb/util/histogram.cc +272 -0
  552. package/cpp/leveldb/util/histogram.h +44 -0
  553. package/cpp/leveldb/util/logging.cc +82 -0
  554. package/cpp/leveldb/util/logging.h +44 -0
  555. package/cpp/leveldb/util/logging_test.cc +145 -0
  556. package/cpp/leveldb/util/mutexlock.h +39 -0
  557. package/cpp/leveldb/util/no_destructor.h +46 -0
  558. package/cpp/leveldb/util/no_destructor_test.cc +49 -0
  559. package/cpp/leveldb/util/options.cc +14 -0
  560. package/cpp/leveldb/util/posix_logger.h +130 -0
  561. package/cpp/leveldb/util/random.h +63 -0
  562. package/cpp/leveldb/util/status.cc +77 -0
  563. package/cpp/leveldb/util/status_test.cc +44 -0
  564. package/cpp/leveldb/util/testutil.cc +51 -0
  565. package/cpp/leveldb/util/testutil.h +82 -0
  566. package/cpp/leveldb/util/windows_logger.h +124 -0
  567. package/cpp/react-native-leveldb.cpp +694 -0
  568. package/cpp/react-native-leveldb.h +4 -0
  569. package/ios/Leveldb.h +9 -0
  570. package/ios/Leveldb.mm +35 -0
  571. package/ios/Leveldb.xcodeproj/project.pbxproj +288 -0
  572. package/lib/commonjs/fake.js +181 -0
  573. package/lib/commonjs/fake.js.map +1 -0
  574. package/lib/commonjs/fake.test.js +30 -0
  575. package/lib/commonjs/fake.test.js.map +1 -0
  576. package/lib/commonjs/index.js +172 -0
  577. package/lib/commonjs/index.js.map +1 -0
  578. package/lib/commonjs/package.json +1 -0
  579. package/lib/module/fake.js +171 -0
  580. package/lib/module/fake.js.map +1 -0
  581. package/lib/module/fake.test.js +30 -0
  582. package/lib/module/fake.test.js.map +1 -0
  583. package/lib/module/index.js +165 -0
  584. package/lib/module/index.js.map +1 -0
  585. package/lib/typescript/fake.d.ts +34 -0
  586. package/lib/typescript/fake.d.ts.map +1 -0
  587. package/lib/typescript/fake.test.d.ts +2 -0
  588. package/lib/typescript/fake.test.d.ts.map +1 -0
  589. package/lib/typescript/index.d.ts +72 -0
  590. package/lib/typescript/index.d.ts.map +1 -0
  591. package/package.json +157 -0
  592. package/rn-leveldb.podspec +30 -0
  593. package/src/fake.test.ts +37 -0
  594. package/src/fake.ts +203 -0
  595. package/src/index.ts +291 -0
@@ -0,0 +1,1323 @@
1
+ # Benchmark
2
+
3
+ [![build-and-test](https://github.com/google/benchmark/workflows/build-and-test/badge.svg)](https://github.com/google/benchmark/actions?query=workflow%3Abuild-and-test)
4
+ [![pylint](https://github.com/google/benchmark/workflows/pylint/badge.svg)](https://github.com/google/benchmark/actions?query=workflow%3Apylint)
5
+ [![test-bindings](https://github.com/google/benchmark/workflows/test-bindings/badge.svg)](https://github.com/google/benchmark/actions?query=workflow%3Atest-bindings)
6
+
7
+ [![Build Status](https://travis-ci.org/google/benchmark.svg?branch=master)](https://travis-ci.org/google/benchmark)
8
+ [![Build status](https://ci.appveyor.com/api/projects/status/u0qsyp7t1tk7cpxs/branch/master?svg=true)](https://ci.appveyor.com/project/google/benchmark/branch/master)
9
+ [![Coverage Status](https://coveralls.io/repos/google/benchmark/badge.svg)](https://coveralls.io/r/google/benchmark)
10
+
11
+
12
+ A library to benchmark code snippets, similar to unit tests. Example:
13
+
14
+ ```c++
15
+ #include <benchmark/benchmark.h>
16
+
17
+ static void BM_SomeFunction(benchmark::State& state) {
18
+ // Perform setup here
19
+ for (auto _ : state) {
20
+ // This code gets timed
21
+ SomeFunction();
22
+ }
23
+ }
24
+ // Register the function as a benchmark
25
+ BENCHMARK(BM_SomeFunction);
26
+ // Run the benchmark
27
+ BENCHMARK_MAIN();
28
+ ```
29
+
30
+ To get started, see [Requirements](#requirements) and
31
+ [Installation](#installation). See [Usage](#usage) for a full example and the
32
+ [User Guide](#user-guide) for a more comprehensive feature overview.
33
+
34
+ It may also help to read the [Google Test documentation](https://github.com/google/googletest/blob/master/googletest/docs/primer.md)
35
+ as some of the structural aspects of the APIs are similar.
36
+
37
+ ### Resources
38
+
39
+ [Discussion group](https://groups.google.com/d/forum/benchmark-discuss)
40
+
41
+ IRC channel: [freenode](https://freenode.net) #googlebenchmark
42
+
43
+ [Additional Tooling Documentation](docs/tools.md)
44
+
45
+ [Assembly Testing Documentation](docs/AssemblyTests.md)
46
+
47
+ ## Requirements
48
+
49
+ The library can be used with C++03. However, it requires C++11 to build,
50
+ including compiler and standard library support.
51
+
52
+ The following minimum versions are required to build the library:
53
+
54
+ * GCC 4.8
55
+ * Clang 3.4
56
+ * Visual Studio 14 2015
57
+ * Intel 2015 Update 1
58
+
59
+ See [Platform-Specific Build Instructions](#platform-specific-build-instructions).
60
+
61
+ ## Installation
62
+
63
+ This describes the installation process using cmake. As pre-requisites, you'll
64
+ need git and cmake installed.
65
+
66
+ _See [dependencies.md](dependencies.md) for more details regarding supported
67
+ versions of build tools._
68
+
69
+ ```bash
70
+ # Check out the library.
71
+ $ git clone https://github.com/google/benchmark.git
72
+ # Benchmark requires Google Test as a dependency. Add the source tree as a subdirectory.
73
+ $ git clone https://github.com/google/googletest.git benchmark/googletest
74
+ # Go to the library root directory
75
+ $ cd benchmark
76
+ # Make a build directory to place the build output.
77
+ $ cmake -E make_directory "build"
78
+ # Generate build system files with cmake.
79
+ $ cmake -E chdir "build" cmake -DCMAKE_BUILD_TYPE=Release ../
80
+ # or, starting with CMake 3.13, use a simpler form:
81
+ # cmake -DCMAKE_BUILD_TYPE=Release -S . -B "build"
82
+ # Build the library.
83
+ $ cmake --build "build" --config Release
84
+ ```
85
+ This builds the `benchmark` and `benchmark_main` libraries and tests.
86
+ On a unix system, the build directory should now look something like this:
87
+
88
+ ```
89
+ /benchmark
90
+ /build
91
+ /src
92
+ /libbenchmark.a
93
+ /libbenchmark_main.a
94
+ /test
95
+ ...
96
+ ```
97
+
98
+ Next, you can run the tests to check the build.
99
+
100
+ ```bash
101
+ $ cmake -E chdir "build" ctest --build-config Release
102
+ ```
103
+
104
+ If you want to install the library globally, also run:
105
+
106
+ ```
107
+ sudo cmake --build "build" --config Release --target install
108
+ ```
109
+
110
+ Note that Google Benchmark requires Google Test to build and run the tests. This
111
+ dependency can be provided two ways:
112
+
113
+ * Checkout the Google Test sources into `benchmark/googletest` as above.
114
+ * Otherwise, if `-DBENCHMARK_DOWNLOAD_DEPENDENCIES=ON` is specified during
115
+ configuration, the library will automatically download and build any required
116
+ dependencies.
117
+
118
+ If you do not wish to build and run the tests, add `-DBENCHMARK_ENABLE_GTEST_TESTS=OFF`
119
+ to `CMAKE_ARGS`.
120
+
121
+ ### Debug vs Release
122
+
123
+ By default, benchmark builds as a debug library. You will see a warning in the
124
+ output when this is the case. To build it as a release library instead, add
125
+ `-DCMAKE_BUILD_TYPE=Release` when generating the build system files, as shown
126
+ above. The use of `--config Release` in build commands is needed to properly
127
+ support multi-configuration tools (like Visual Studio for example) and can be
128
+ skipped for other build systems (like Makefile).
129
+
130
+ To enable link-time optimisation, also add `-DBENCHMARK_ENABLE_LTO=true` when
131
+ generating the build system files.
132
+
133
+ If you are using gcc, you might need to set `GCC_AR` and `GCC_RANLIB` cmake
134
+ cache variables, if autodetection fails.
135
+
136
+ If you are using clang, you may need to set `LLVMAR_EXECUTABLE`,
137
+ `LLVMNM_EXECUTABLE` and `LLVMRANLIB_EXECUTABLE` cmake cache variables.
138
+
139
+ ### Stable and Experimental Library Versions
140
+
141
+ The main branch contains the latest stable version of the benchmarking library;
142
+ the API of which can be considered largely stable, with source breaking changes
143
+ being made only upon the release of a new major version.
144
+
145
+ Newer, experimental, features are implemented and tested on the
146
+ [`v2` branch](https://github.com/google/benchmark/tree/v2). Users who wish
147
+ to use, test, and provide feedback on the new features are encouraged to try
148
+ this branch. However, this branch provides no stability guarantees and reserves
149
+ the right to change and break the API at any time.
150
+
151
+ ## Usage
152
+
153
+ ### Basic usage
154
+
155
+ Define a function that executes the code to measure, register it as a benchmark
156
+ function using the `BENCHMARK` macro, and ensure an appropriate `main` function
157
+ is available:
158
+
159
+ ```c++
160
+ #include <benchmark/benchmark.h>
161
+
162
+ static void BM_StringCreation(benchmark::State& state) {
163
+ for (auto _ : state)
164
+ std::string empty_string;
165
+ }
166
+ // Register the function as a benchmark
167
+ BENCHMARK(BM_StringCreation);
168
+
169
+ // Define another benchmark
170
+ static void BM_StringCopy(benchmark::State& state) {
171
+ std::string x = "hello";
172
+ for (auto _ : state)
173
+ std::string copy(x);
174
+ }
175
+ BENCHMARK(BM_StringCopy);
176
+
177
+ BENCHMARK_MAIN();
178
+ ```
179
+
180
+ To run the benchmark, compile and link against the `benchmark` library
181
+ (libbenchmark.a/.so). If you followed the build steps above, this library will
182
+ be under the build directory you created.
183
+
184
+ ```bash
185
+ # Example on linux after running the build steps above. Assumes the
186
+ # `benchmark` and `build` directories are under the current directory.
187
+ $ g++ mybenchmark.cc -std=c++11 -isystem benchmark/include \
188
+ -Lbenchmark/build/src -lbenchmark -lpthread -o mybenchmark
189
+ ```
190
+
191
+ Alternatively, link against the `benchmark_main` library and remove
192
+ `BENCHMARK_MAIN();` above to get the same behavior.
193
+
194
+ The compiled executable will run all benchmarks by default. Pass the `--help`
195
+ flag for option information or see the guide below.
196
+
197
+ ### Usage with CMake
198
+
199
+ If using CMake, it is recommended to link against the project-provided
200
+ `benchmark::benchmark` and `benchmark::benchmark_main` targets using
201
+ `target_link_libraries`.
202
+ It is possible to use ```find_package``` to import an installed version of the
203
+ library.
204
+ ```cmake
205
+ find_package(benchmark REQUIRED)
206
+ ```
207
+ Alternatively, ```add_subdirectory``` will incorporate the library directly in
208
+ to one's CMake project.
209
+ ```cmake
210
+ add_subdirectory(benchmark)
211
+ ```
212
+ Either way, link to the library as follows.
213
+ ```cmake
214
+ target_link_libraries(MyTarget benchmark::benchmark)
215
+ ```
216
+
217
+ ## Platform Specific Build Instructions
218
+
219
+ ### Building with GCC
220
+
221
+ When the library is built using GCC it is necessary to link with the pthread
222
+ library due to how GCC implements `std::thread`. Failing to link to pthread will
223
+ lead to runtime exceptions (unless you're using libc++), not linker errors. See
224
+ [issue #67](https://github.com/google/benchmark/issues/67) for more details. You
225
+ can link to pthread by adding `-pthread` to your linker command. Note, you can
226
+ also use `-lpthread`, but there are potential issues with ordering of command
227
+ line parameters if you use that.
228
+
229
+ ### Building with Visual Studio 2015 or 2017
230
+
231
+ The `shlwapi` library (`-lshlwapi`) is required to support a call to `CPUInfo` which reads the registry. Either add `shlwapi.lib` under `[ Configuration Properties > Linker > Input ]`, or use the following:
232
+
233
+ ```
234
+ // Alternatively, can add libraries using linker options.
235
+ #ifdef _WIN32
236
+ #pragma comment ( lib, "Shlwapi.lib" )
237
+ #ifdef _DEBUG
238
+ #pragma comment ( lib, "benchmarkd.lib" )
239
+ #else
240
+ #pragma comment ( lib, "benchmark.lib" )
241
+ #endif
242
+ #endif
243
+ ```
244
+
245
+ Can also use the graphical version of CMake:
246
+ * Open `CMake GUI`.
247
+ * Under `Where to build the binaries`, same path as source plus `build`.
248
+ * Under `CMAKE_INSTALL_PREFIX`, same path as source plus `install`.
249
+ * Click `Configure`, `Generate`, `Open Project`.
250
+ * If build fails, try deleting entire directory and starting again, or unticking options to build less.
251
+
252
+ ### Building with Intel 2015 Update 1 or Intel System Studio Update 4
253
+
254
+ See instructions for building with Visual Studio. Once built, right click on the solution and change the build to Intel.
255
+
256
+ ### Building on Solaris
257
+
258
+ If you're running benchmarks on solaris, you'll want the kstat library linked in
259
+ too (`-lkstat`).
260
+
261
+ ## User Guide
262
+
263
+ ### Command Line
264
+
265
+ [Output Formats](#output-formats)
266
+
267
+ [Output Files](#output-files)
268
+
269
+ [Running Benchmarks](#running-benchmarks)
270
+
271
+ [Running a Subset of Benchmarks](#running-a-subset-of-benchmarks)
272
+
273
+ [Result Comparison](#result-comparison)
274
+
275
+ ### Library
276
+
277
+ [Runtime and Reporting Considerations](#runtime-and-reporting-considerations)
278
+
279
+ [Passing Arguments](#passing-arguments)
280
+
281
+ [Calculating Asymptotic Complexity](#asymptotic-complexity)
282
+
283
+ [Templated Benchmarks](#templated-benchmarks)
284
+
285
+ [Fixtures](#fixtures)
286
+
287
+ [Custom Counters](#custom-counters)
288
+
289
+ [Multithreaded Benchmarks](#multithreaded-benchmarks)
290
+
291
+ [CPU Timers](#cpu-timers)
292
+
293
+ [Manual Timing](#manual-timing)
294
+
295
+ [Setting the Time Unit](#setting-the-time-unit)
296
+
297
+ [Preventing Optimization](#preventing-optimization)
298
+
299
+ [Reporting Statistics](#reporting-statistics)
300
+
301
+ [Custom Statistics](#custom-statistics)
302
+
303
+ [Using RegisterBenchmark](#using-register-benchmark)
304
+
305
+ [Exiting with an Error](#exiting-with-an-error)
306
+
307
+ [A Faster KeepRunning Loop](#a-faster-keep-running-loop)
308
+
309
+ [Disabling CPU Frequency Scaling](#disabling-cpu-frequency-scaling)
310
+
311
+
312
+ <a name="output-formats" />
313
+
314
+ ### Output Formats
315
+
316
+ The library supports multiple output formats. Use the
317
+ `--benchmark_format=<console|json|csv>` flag (or set the
318
+ `BENCHMARK_FORMAT=<console|json|csv>` environment variable) to set
319
+ the format type. `console` is the default format.
320
+
321
+ The Console format is intended to be a human readable format. By default
322
+ the format generates color output. Context is output on stderr and the
323
+ tabular data on stdout. Example tabular output looks like:
324
+
325
+ ```
326
+ Benchmark Time(ns) CPU(ns) Iterations
327
+ ----------------------------------------------------------------------
328
+ BM_SetInsert/1024/1 28928 29349 23853 133.097kB/s 33.2742k items/s
329
+ BM_SetInsert/1024/8 32065 32913 21375 949.487kB/s 237.372k items/s
330
+ BM_SetInsert/1024/10 33157 33648 21431 1.13369MB/s 290.225k items/s
331
+ ```
332
+
333
+ The JSON format outputs human readable json split into two top level attributes.
334
+ The `context` attribute contains information about the run in general, including
335
+ information about the CPU and the date.
336
+ The `benchmarks` attribute contains a list of every benchmark run. Example json
337
+ output looks like:
338
+
339
+ ```json
340
+ {
341
+ "context": {
342
+ "date": "2015/03/17-18:40:25",
343
+ "num_cpus": 40,
344
+ "mhz_per_cpu": 2801,
345
+ "cpu_scaling_enabled": false,
346
+ "build_type": "debug"
347
+ },
348
+ "benchmarks": [
349
+ {
350
+ "name": "BM_SetInsert/1024/1",
351
+ "iterations": 94877,
352
+ "real_time": 29275,
353
+ "cpu_time": 29836,
354
+ "bytes_per_second": 134066,
355
+ "items_per_second": 33516
356
+ },
357
+ {
358
+ "name": "BM_SetInsert/1024/8",
359
+ "iterations": 21609,
360
+ "real_time": 32317,
361
+ "cpu_time": 32429,
362
+ "bytes_per_second": 986770,
363
+ "items_per_second": 246693
364
+ },
365
+ {
366
+ "name": "BM_SetInsert/1024/10",
367
+ "iterations": 21393,
368
+ "real_time": 32724,
369
+ "cpu_time": 33355,
370
+ "bytes_per_second": 1199226,
371
+ "items_per_second": 299807
372
+ }
373
+ ]
374
+ }
375
+ ```
376
+
377
+ The CSV format outputs comma-separated values. The `context` is output on stderr
378
+ and the CSV itself on stdout. Example CSV output looks like:
379
+
380
+ ```
381
+ name,iterations,real_time,cpu_time,bytes_per_second,items_per_second,label
382
+ "BM_SetInsert/1024/1",65465,17890.7,8407.45,475768,118942,
383
+ "BM_SetInsert/1024/8",116606,18810.1,9766.64,3.27646e+06,819115,
384
+ "BM_SetInsert/1024/10",106365,17238.4,8421.53,4.74973e+06,1.18743e+06,
385
+ ```
386
+
387
+ <a name="output-files" />
388
+
389
+ ### Output Files
390
+
391
+ Write benchmark results to a file with the `--benchmark_out=<filename>` option
392
+ (or set `BENCHMARK_OUT`). Specify the output format with
393
+ `--benchmark_out_format={json|console|csv}` (or set
394
+ `BENCHMARK_OUT_FORMAT={json|console|csv}`). Note that specifying
395
+ `--benchmark_out` does not suppress the console output.
396
+
397
+ <a name="running-benchmarks" />
398
+
399
+ ### Running Benchmarks
400
+
401
+ Benchmarks are executed by running the produced binaries. Benchmarks binaries,
402
+ by default, accept options that may be specified either through their command
403
+ line interface or by setting environment variables before execution. For every
404
+ `--option_flag=<value>` CLI switch, a corresponding environment variable
405
+ `OPTION_FLAG=<value>` exist and is used as default if set (CLI switches always
406
+ prevails). A complete list of CLI options is available running benchmarks
407
+ with the `--help` switch.
408
+
409
+ <a name="running-a-subset-of-benchmarks" />
410
+
411
+ ### Running a Subset of Benchmarks
412
+
413
+ The `--benchmark_filter=<regex>` option (or `BENCHMARK_FILTER=<regex>`
414
+ environment variable) can be used to only run the benchmarks that match
415
+ the specified `<regex>`. For example:
416
+
417
+ ```bash
418
+ $ ./run_benchmarks.x --benchmark_filter=BM_memcpy/32
419
+ Run on (1 X 2300 MHz CPU )
420
+ 2016-06-25 19:34:24
421
+ Benchmark Time CPU Iterations
422
+ ----------------------------------------------------
423
+ BM_memcpy/32 11 ns 11 ns 79545455
424
+ BM_memcpy/32k 2181 ns 2185 ns 324074
425
+ BM_memcpy/32 12 ns 12 ns 54687500
426
+ BM_memcpy/32k 1834 ns 1837 ns 357143
427
+ ```
428
+
429
+ <a name="result-comparison" />
430
+
431
+ ### Result comparison
432
+
433
+ It is possible to compare the benchmarking results.
434
+ See [Additional Tooling Documentation](docs/tools.md)
435
+
436
+ <a name="runtime-and-reporting-considerations" />
437
+
438
+ ### Runtime and Reporting Considerations
439
+
440
+ When the benchmark binary is executed, each benchmark function is run serially.
441
+ The number of iterations to run is determined dynamically by running the
442
+ benchmark a few times and measuring the time taken and ensuring that the
443
+ ultimate result will be statistically stable. As such, faster benchmark
444
+ functions will be run for more iterations than slower benchmark functions, and
445
+ the number of iterations is thus reported.
446
+
447
+ In all cases, the number of iterations for which the benchmark is run is
448
+ governed by the amount of time the benchmark takes. Concretely, the number of
449
+ iterations is at least one, not more than 1e9, until CPU time is greater than
450
+ the minimum time, or the wallclock time is 5x minimum time. The minimum time is
451
+ set per benchmark by calling `MinTime` on the registered benchmark object.
452
+
453
+ Average timings are then reported over the iterations run. If multiple
454
+ repetitions are requested using the `--benchmark_repetitions` command-line
455
+ option, or at registration time, the benchmark function will be run several
456
+ times and statistical results across these repetitions will also be reported.
457
+
458
+ As well as the per-benchmark entries, a preamble in the report will include
459
+ information about the machine on which the benchmarks are run.
460
+
461
+ <a name="passing-arguments" />
462
+
463
+ ### Passing Arguments
464
+
465
+ Sometimes a family of benchmarks can be implemented with just one routine that
466
+ takes an extra argument to specify which one of the family of benchmarks to
467
+ run. For example, the following code defines a family of benchmarks for
468
+ measuring the speed of `memcpy()` calls of different lengths:
469
+
470
+ ```c++
471
+ static void BM_memcpy(benchmark::State& state) {
472
+ char* src = new char[state.range(0)];
473
+ char* dst = new char[state.range(0)];
474
+ memset(src, 'x', state.range(0));
475
+ for (auto _ : state)
476
+ memcpy(dst, src, state.range(0));
477
+ state.SetBytesProcessed(int64_t(state.iterations()) *
478
+ int64_t(state.range(0)));
479
+ delete[] src;
480
+ delete[] dst;
481
+ }
482
+ BENCHMARK(BM_memcpy)->Arg(8)->Arg(64)->Arg(512)->Arg(1<<10)->Arg(8<<10);
483
+ ```
484
+
485
+ The preceding code is quite repetitive, and can be replaced with the following
486
+ short-hand. The following invocation will pick a few appropriate arguments in
487
+ the specified range and will generate a benchmark for each such argument.
488
+
489
+ ```c++
490
+ BENCHMARK(BM_memcpy)->Range(8, 8<<10);
491
+ ```
492
+
493
+ By default the arguments in the range are generated in multiples of eight and
494
+ the command above selects [ 8, 64, 512, 4k, 8k ]. In the following code the
495
+ range multiplier is changed to multiples of two.
496
+
497
+ ```c++
498
+ BENCHMARK(BM_memcpy)->RangeMultiplier(2)->Range(8, 8<<10);
499
+ ```
500
+
501
+ Now arguments generated are [ 8, 16, 32, 64, 128, 256, 512, 1024, 2k, 4k, 8k ].
502
+
503
+ The preceding code shows a method of defining a sparse range. The following
504
+ example shows a method of defining a dense range. It is then used to benchmark
505
+ the performance of `std::vector` initialization for uniformly increasing sizes.
506
+
507
+ ```c++
508
+ static void BM_DenseRange(benchmark::State& state) {
509
+ for(auto _ : state) {
510
+ std::vector<int> v(state.range(0), state.range(0));
511
+ benchmark::DoNotOptimize(v.data());
512
+ benchmark::ClobberMemory();
513
+ }
514
+ }
515
+ BENCHMARK(BM_DenseRange)->DenseRange(0, 1024, 128);
516
+ ```
517
+
518
+ Now arguments generated are [ 0, 128, 256, 384, 512, 640, 768, 896, 1024 ].
519
+
520
+ You might have a benchmark that depends on two or more inputs. For example, the
521
+ following code defines a family of benchmarks for measuring the speed of set
522
+ insertion.
523
+
524
+ ```c++
525
+ static void BM_SetInsert(benchmark::State& state) {
526
+ std::set<int> data;
527
+ for (auto _ : state) {
528
+ state.PauseTiming();
529
+ data = ConstructRandomSet(state.range(0));
530
+ state.ResumeTiming();
531
+ for (int j = 0; j < state.range(1); ++j)
532
+ data.insert(RandomNumber());
533
+ }
534
+ }
535
+ BENCHMARK(BM_SetInsert)
536
+ ->Args({1<<10, 128})
537
+ ->Args({2<<10, 128})
538
+ ->Args({4<<10, 128})
539
+ ->Args({8<<10, 128})
540
+ ->Args({1<<10, 512})
541
+ ->Args({2<<10, 512})
542
+ ->Args({4<<10, 512})
543
+ ->Args({8<<10, 512});
544
+ ```
545
+
546
+ The preceding code is quite repetitive, and can be replaced with the following
547
+ short-hand. The following macro will pick a few appropriate arguments in the
548
+ product of the two specified ranges and will generate a benchmark for each such
549
+ pair.
550
+
551
+ ```c++
552
+ BENCHMARK(BM_SetInsert)->Ranges({{1<<10, 8<<10}, {128, 512}});
553
+ ```
554
+
555
+ Some benchmarks may require specific argument values that cannot be expressed
556
+ with `Ranges`. In this case, `ArgsProduct` offers the ability to generate a
557
+ benchmark input for each combination in the product of the supplied vectors.
558
+
559
+ ```c++
560
+ BENCHMARK(BM_SetInsert)
561
+ ->ArgsProduct({{1<<10, 3<<10, 8<<10}, {20, 40, 60, 80}})
562
+ // would generate the same benchmark arguments as
563
+ BENCHMARK(BM_SetInsert)
564
+ ->Args({1<<10, 20})
565
+ ->Args({3<<10, 20})
566
+ ->Args({8<<10, 20})
567
+ ->Args({3<<10, 40})
568
+ ->Args({8<<10, 40})
569
+ ->Args({1<<10, 40})
570
+ ->Args({1<<10, 60})
571
+ ->Args({3<<10, 60})
572
+ ->Args({8<<10, 60})
573
+ ->Args({1<<10, 80})
574
+ ->Args({3<<10, 80})
575
+ ->Args({8<<10, 80});
576
+ ```
577
+
578
+ For more complex patterns of inputs, passing a custom function to `Apply` allows
579
+ programmatic specification of an arbitrary set of arguments on which to run the
580
+ benchmark. The following example enumerates a dense range on one parameter,
581
+ and a sparse range on the second.
582
+
583
+ ```c++
584
+ static void CustomArguments(benchmark::internal::Benchmark* b) {
585
+ for (int i = 0; i <= 10; ++i)
586
+ for (int j = 32; j <= 1024*1024; j *= 8)
587
+ b->Args({i, j});
588
+ }
589
+ BENCHMARK(BM_SetInsert)->Apply(CustomArguments);
590
+ ```
591
+
592
+ #### Passing Arbitrary Arguments to a Benchmark
593
+
594
+ In C++11 it is possible to define a benchmark that takes an arbitrary number
595
+ of extra arguments. The `BENCHMARK_CAPTURE(func, test_case_name, ...args)`
596
+ macro creates a benchmark that invokes `func` with the `benchmark::State` as
597
+ the first argument followed by the specified `args...`.
598
+ The `test_case_name` is appended to the name of the benchmark and
599
+ should describe the values passed.
600
+
601
+ ```c++
602
+ template <class ...ExtraArgs>
603
+ void BM_takes_args(benchmark::State& state, ExtraArgs&&... extra_args) {
604
+ [...]
605
+ }
606
+ // Registers a benchmark named "BM_takes_args/int_string_test" that passes
607
+ // the specified values to `extra_args`.
608
+ BENCHMARK_CAPTURE(BM_takes_args, int_string_test, 42, std::string("abc"));
609
+ ```
610
+
611
+ Note that elements of `...args` may refer to global variables. Users should
612
+ avoid modifying global state inside of a benchmark.
613
+
614
+ <a name="asymptotic-complexity" />
615
+
616
+ ### Calculating Asymptotic Complexity (Big O)
617
+
618
+ Asymptotic complexity might be calculated for a family of benchmarks. The
619
+ following code will calculate the coefficient for the high-order term in the
620
+ running time and the normalized root-mean square error of string comparison.
621
+
622
+ ```c++
623
+ static void BM_StringCompare(benchmark::State& state) {
624
+ std::string s1(state.range(0), '-');
625
+ std::string s2(state.range(0), '-');
626
+ for (auto _ : state) {
627
+ benchmark::DoNotOptimize(s1.compare(s2));
628
+ }
629
+ state.SetComplexityN(state.range(0));
630
+ }
631
+ BENCHMARK(BM_StringCompare)
632
+ ->RangeMultiplier(2)->Range(1<<10, 1<<18)->Complexity(benchmark::oN);
633
+ ```
634
+
635
+ As shown in the following invocation, asymptotic complexity might also be
636
+ calculated automatically.
637
+
638
+ ```c++
639
+ BENCHMARK(BM_StringCompare)
640
+ ->RangeMultiplier(2)->Range(1<<10, 1<<18)->Complexity();
641
+ ```
642
+
643
+ The following code will specify asymptotic complexity with a lambda function,
644
+ that might be used to customize high-order term calculation.
645
+
646
+ ```c++
647
+ BENCHMARK(BM_StringCompare)->RangeMultiplier(2)
648
+ ->Range(1<<10, 1<<18)->Complexity([](benchmark::IterationCount n)->double{return n; });
649
+ ```
650
+
651
+ <a name="templated-benchmarks" />
652
+
653
+ ### Templated Benchmarks
654
+
655
+ This example produces and consumes messages of size `sizeof(v)` `range_x`
656
+ times. It also outputs throughput in the absence of multiprogramming.
657
+
658
+ ```c++
659
+ template <class Q> void BM_Sequential(benchmark::State& state) {
660
+ Q q;
661
+ typename Q::value_type v;
662
+ for (auto _ : state) {
663
+ for (int i = state.range(0); i--; )
664
+ q.push(v);
665
+ for (int e = state.range(0); e--; )
666
+ q.Wait(&v);
667
+ }
668
+ // actually messages, not bytes:
669
+ state.SetBytesProcessed(
670
+ static_cast<int64_t>(state.iterations())*state.range(0));
671
+ }
672
+ BENCHMARK_TEMPLATE(BM_Sequential, WaitQueue<int>)->Range(1<<0, 1<<10);
673
+ ```
674
+
675
+ Three macros are provided for adding benchmark templates.
676
+
677
+ ```c++
678
+ #ifdef BENCHMARK_HAS_CXX11
679
+ #define BENCHMARK_TEMPLATE(func, ...) // Takes any number of parameters.
680
+ #else // C++ < C++11
681
+ #define BENCHMARK_TEMPLATE(func, arg1)
682
+ #endif
683
+ #define BENCHMARK_TEMPLATE1(func, arg1)
684
+ #define BENCHMARK_TEMPLATE2(func, arg1, arg2)
685
+ ```
686
+
687
+ <a name="fixtures" />
688
+
689
+ ### Fixtures
690
+
691
+ Fixture tests are created by first defining a type that derives from
692
+ `::benchmark::Fixture` and then creating/registering the tests using the
693
+ following macros:
694
+
695
+ * `BENCHMARK_F(ClassName, Method)`
696
+ * `BENCHMARK_DEFINE_F(ClassName, Method)`
697
+ * `BENCHMARK_REGISTER_F(ClassName, Method)`
698
+
699
+ For Example:
700
+
701
+ ```c++
702
+ class MyFixture : public benchmark::Fixture {
703
+ public:
704
+ void SetUp(const ::benchmark::State& state) {
705
+ }
706
+
707
+ void TearDown(const ::benchmark::State& state) {
708
+ }
709
+ };
710
+
711
+ BENCHMARK_F(MyFixture, FooTest)(benchmark::State& st) {
712
+ for (auto _ : st) {
713
+ ...
714
+ }
715
+ }
716
+
717
+ BENCHMARK_DEFINE_F(MyFixture, BarTest)(benchmark::State& st) {
718
+ for (auto _ : st) {
719
+ ...
720
+ }
721
+ }
722
+ /* BarTest is NOT registered */
723
+ BENCHMARK_REGISTER_F(MyFixture, BarTest)->Threads(2);
724
+ /* BarTest is now registered */
725
+ ```
726
+
727
+ #### Templated Fixtures
728
+
729
+ Also you can create templated fixture by using the following macros:
730
+
731
+ * `BENCHMARK_TEMPLATE_F(ClassName, Method, ...)`
732
+ * `BENCHMARK_TEMPLATE_DEFINE_F(ClassName, Method, ...)`
733
+
734
+ For example:
735
+
736
+ ```c++
737
+ template<typename T>
738
+ class MyFixture : public benchmark::Fixture {};
739
+
740
+ BENCHMARK_TEMPLATE_F(MyFixture, IntTest, int)(benchmark::State& st) {
741
+ for (auto _ : st) {
742
+ ...
743
+ }
744
+ }
745
+
746
+ BENCHMARK_TEMPLATE_DEFINE_F(MyFixture, DoubleTest, double)(benchmark::State& st) {
747
+ for (auto _ : st) {
748
+ ...
749
+ }
750
+ }
751
+
752
+ BENCHMARK_REGISTER_F(MyFixture, DoubleTest)->Threads(2);
753
+ ```
754
+
755
+ <a name="custom-counters" />
756
+
757
+ ### Custom Counters
758
+
759
+ You can add your own counters with user-defined names. The example below
760
+ will add columns "Foo", "Bar" and "Baz" in its output:
761
+
762
+ ```c++
763
+ static void UserCountersExample1(benchmark::State& state) {
764
+ double numFoos = 0, numBars = 0, numBazs = 0;
765
+ for (auto _ : state) {
766
+ // ... count Foo,Bar,Baz events
767
+ }
768
+ state.counters["Foo"] = numFoos;
769
+ state.counters["Bar"] = numBars;
770
+ state.counters["Baz"] = numBazs;
771
+ }
772
+ ```
773
+
774
+ The `state.counters` object is a `std::map` with `std::string` keys
775
+ and `Counter` values. The latter is a `double`-like class, via an implicit
776
+ conversion to `double&`. Thus you can use all of the standard arithmetic
777
+ assignment operators (`=,+=,-=,*=,/=`) to change the value of each counter.
778
+
779
+ In multithreaded benchmarks, each counter is set on the calling thread only.
780
+ When the benchmark finishes, the counters from each thread will be summed;
781
+ the resulting sum is the value which will be shown for the benchmark.
782
+
783
+ The `Counter` constructor accepts three parameters: the value as a `double`
784
+ ; a bit flag which allows you to show counters as rates, and/or as per-thread
785
+ iteration, and/or as per-thread averages, and/or iteration invariants,
786
+ and/or finally inverting the result; and a flag specifying the 'unit' - i.e.
787
+ is 1k a 1000 (default, `benchmark::Counter::OneK::kIs1000`), or 1024
788
+ (`benchmark::Counter::OneK::kIs1024`)?
789
+
790
+ ```c++
791
+ // sets a simple counter
792
+ state.counters["Foo"] = numFoos;
793
+
794
+ // Set the counter as a rate. It will be presented divided
795
+ // by the duration of the benchmark.
796
+ // Meaning: per one second, how many 'foo's are processed?
797
+ state.counters["FooRate"] = Counter(numFoos, benchmark::Counter::kIsRate);
798
+
799
+ // Set the counter as a rate. It will be presented divided
800
+ // by the duration of the benchmark, and the result inverted.
801
+ // Meaning: how many seconds it takes to process one 'foo'?
802
+ state.counters["FooInvRate"] = Counter(numFoos, benchmark::Counter::kIsRate | benchmark::Counter::kInvert);
803
+
804
+ // Set the counter as a thread-average quantity. It will
805
+ // be presented divided by the number of threads.
806
+ state.counters["FooAvg"] = Counter(numFoos, benchmark::Counter::kAvgThreads);
807
+
808
+ // There's also a combined flag:
809
+ state.counters["FooAvgRate"] = Counter(numFoos,benchmark::Counter::kAvgThreadsRate);
810
+
811
+ // This says that we process with the rate of state.range(0) bytes every iteration:
812
+ state.counters["BytesProcessed"] = Counter(state.range(0), benchmark::Counter::kIsIterationInvariantRate, benchmark::Counter::OneK::kIs1024);
813
+ ```
814
+
815
+ When you're compiling in C++11 mode or later you can use `insert()` with
816
+ `std::initializer_list`:
817
+
818
+ ```c++
819
+ // With C++11, this can be done:
820
+ state.counters.insert({{"Foo", numFoos}, {"Bar", numBars}, {"Baz", numBazs}});
821
+ // ... instead of:
822
+ state.counters["Foo"] = numFoos;
823
+ state.counters["Bar"] = numBars;
824
+ state.counters["Baz"] = numBazs;
825
+ ```
826
+
827
+ #### Counter Reporting
828
+
829
+ When using the console reporter, by default, user counters are printed at
830
+ the end after the table, the same way as ``bytes_processed`` and
831
+ ``items_processed``. This is best for cases in which there are few counters,
832
+ or where there are only a couple of lines per benchmark. Here's an example of
833
+ the default output:
834
+
835
+ ```
836
+ ------------------------------------------------------------------------------
837
+ Benchmark Time CPU Iterations UserCounters...
838
+ ------------------------------------------------------------------------------
839
+ BM_UserCounter/threads:8 2248 ns 10277 ns 68808 Bar=16 Bat=40 Baz=24 Foo=8
840
+ BM_UserCounter/threads:1 9797 ns 9788 ns 71523 Bar=2 Bat=5 Baz=3 Foo=1024m
841
+ BM_UserCounter/threads:2 4924 ns 9842 ns 71036 Bar=4 Bat=10 Baz=6 Foo=2
842
+ BM_UserCounter/threads:4 2589 ns 10284 ns 68012 Bar=8 Bat=20 Baz=12 Foo=4
843
+ BM_UserCounter/threads:8 2212 ns 10287 ns 68040 Bar=16 Bat=40 Baz=24 Foo=8
844
+ BM_UserCounter/threads:16 1782 ns 10278 ns 68144 Bar=32 Bat=80 Baz=48 Foo=16
845
+ BM_UserCounter/threads:32 1291 ns 10296 ns 68256 Bar=64 Bat=160 Baz=96 Foo=32
846
+ BM_UserCounter/threads:4 2615 ns 10307 ns 68040 Bar=8 Bat=20 Baz=12 Foo=4
847
+ BM_Factorial 26 ns 26 ns 26608979 40320
848
+ BM_Factorial/real_time 26 ns 26 ns 26587936 40320
849
+ BM_CalculatePiRange/1 16 ns 16 ns 45704255 0
850
+ BM_CalculatePiRange/8 73 ns 73 ns 9520927 3.28374
851
+ BM_CalculatePiRange/64 609 ns 609 ns 1140647 3.15746
852
+ BM_CalculatePiRange/512 4900 ns 4901 ns 142696 3.14355
853
+ ```
854
+
855
+ If this doesn't suit you, you can print each counter as a table column by
856
+ passing the flag `--benchmark_counters_tabular=true` to the benchmark
857
+ application. This is best for cases in which there are a lot of counters, or
858
+ a lot of lines per individual benchmark. Note that this will trigger a
859
+ reprinting of the table header any time the counter set changes between
860
+ individual benchmarks. Here's an example of corresponding output when
861
+ `--benchmark_counters_tabular=true` is passed:
862
+
863
+ ```
864
+ ---------------------------------------------------------------------------------------
865
+ Benchmark Time CPU Iterations Bar Bat Baz Foo
866
+ ---------------------------------------------------------------------------------------
867
+ BM_UserCounter/threads:8 2198 ns 9953 ns 70688 16 40 24 8
868
+ BM_UserCounter/threads:1 9504 ns 9504 ns 73787 2 5 3 1
869
+ BM_UserCounter/threads:2 4775 ns 9550 ns 72606 4 10 6 2
870
+ BM_UserCounter/threads:4 2508 ns 9951 ns 70332 8 20 12 4
871
+ BM_UserCounter/threads:8 2055 ns 9933 ns 70344 16 40 24 8
872
+ BM_UserCounter/threads:16 1610 ns 9946 ns 70720 32 80 48 16
873
+ BM_UserCounter/threads:32 1192 ns 9948 ns 70496 64 160 96 32
874
+ BM_UserCounter/threads:4 2506 ns 9949 ns 70332 8 20 12 4
875
+ --------------------------------------------------------------
876
+ Benchmark Time CPU Iterations
877
+ --------------------------------------------------------------
878
+ BM_Factorial 26 ns 26 ns 26392245 40320
879
+ BM_Factorial/real_time 26 ns 26 ns 26494107 40320
880
+ BM_CalculatePiRange/1 15 ns 15 ns 45571597 0
881
+ BM_CalculatePiRange/8 74 ns 74 ns 9450212 3.28374
882
+ BM_CalculatePiRange/64 595 ns 595 ns 1173901 3.15746
883
+ BM_CalculatePiRange/512 4752 ns 4752 ns 147380 3.14355
884
+ BM_CalculatePiRange/4k 37970 ns 37972 ns 18453 3.14184
885
+ BM_CalculatePiRange/32k 303733 ns 303744 ns 2305 3.14162
886
+ BM_CalculatePiRange/256k 2434095 ns 2434186 ns 288 3.1416
887
+ BM_CalculatePiRange/1024k 9721140 ns 9721413 ns 71 3.14159
888
+ BM_CalculatePi/threads:8 2255 ns 9943 ns 70936
889
+ ```
890
+
891
+ Note above the additional header printed when the benchmark changes from
892
+ ``BM_UserCounter`` to ``BM_Factorial``. This is because ``BM_Factorial`` does
893
+ not have the same counter set as ``BM_UserCounter``.
894
+
895
+ <a name="multithreaded-benchmarks"/>
896
+
897
+ ### Multithreaded Benchmarks
898
+
899
+ In a multithreaded test (benchmark invoked by multiple threads simultaneously),
900
+ it is guaranteed that none of the threads will start until all have reached
901
+ the start of the benchmark loop, and all will have finished before any thread
902
+ exits the benchmark loop. (This behavior is also provided by the `KeepRunning()`
903
+ API) As such, any global setup or teardown can be wrapped in a check against the thread
904
+ index:
905
+
906
+ ```c++
907
+ static void BM_MultiThreaded(benchmark::State& state) {
908
+ if (state.thread_index == 0) {
909
+ // Setup code here.
910
+ }
911
+ for (auto _ : state) {
912
+ // Run the test as normal.
913
+ }
914
+ if (state.thread_index == 0) {
915
+ // Teardown code here.
916
+ }
917
+ }
918
+ BENCHMARK(BM_MultiThreaded)->Threads(2);
919
+ ```
920
+
921
+ If the benchmarked code itself uses threads and you want to compare it to
922
+ single-threaded code, you may want to use real-time ("wallclock") measurements
923
+ for latency comparisons:
924
+
925
+ ```c++
926
+ BENCHMARK(BM_test)->Range(8, 8<<10)->UseRealTime();
927
+ ```
928
+
929
+ Without `UseRealTime`, CPU time is used by default.
930
+
931
+ <a name="cpu-timers" />
932
+
933
+ ### CPU Timers
934
+
935
+ By default, the CPU timer only measures the time spent by the main thread.
936
+ If the benchmark itself uses threads internally, this measurement may not
937
+ be what you are looking for. Instead, there is a way to measure the total
938
+ CPU usage of the process, by all the threads.
939
+
940
+ ```c++
941
+ void callee(int i);
942
+
943
+ static void MyMain(int size) {
944
+ #pragma omp parallel for
945
+ for(int i = 0; i < size; i++)
946
+ callee(i);
947
+ }
948
+
949
+ static void BM_OpenMP(benchmark::State& state) {
950
+ for (auto _ : state)
951
+ MyMain(state.range(0));
952
+ }
953
+
954
+ // Measure the time spent by the main thread, use it to decide for how long to
955
+ // run the benchmark loop. Depending on the internal implementation detail may
956
+ // measure to anywhere from near-zero (the overhead spent before/after work
957
+ // handoff to worker thread[s]) to the whole single-thread time.
958
+ BENCHMARK(BM_OpenMP)->Range(8, 8<<10);
959
+
960
+ // Measure the user-visible time, the wall clock (literally, the time that
961
+ // has passed on the clock on the wall), use it to decide for how long to
962
+ // run the benchmark loop. This will always be meaningful, an will match the
963
+ // time spent by the main thread in single-threaded case, in general decreasing
964
+ // with the number of internal threads doing the work.
965
+ BENCHMARK(BM_OpenMP)->Range(8, 8<<10)->UseRealTime();
966
+
967
+ // Measure the total CPU consumption, use it to decide for how long to
968
+ // run the benchmark loop. This will always measure to no less than the
969
+ // time spent by the main thread in single-threaded case.
970
+ BENCHMARK(BM_OpenMP)->Range(8, 8<<10)->MeasureProcessCPUTime();
971
+
972
+ // A mixture of the last two. Measure the total CPU consumption, but use the
973
+ // wall clock to decide for how long to run the benchmark loop.
974
+ BENCHMARK(BM_OpenMP)->Range(8, 8<<10)->MeasureProcessCPUTime()->UseRealTime();
975
+ ```
976
+
977
+ #### Controlling Timers
978
+
979
+ Normally, the entire duration of the work loop (`for (auto _ : state) {}`)
980
+ is measured. But sometimes, it is necessary to do some work inside of
981
+ that loop, every iteration, but without counting that time to the benchmark time.
982
+ That is possible, although it is not recommended, since it has high overhead.
983
+
984
+ ```c++
985
+ static void BM_SetInsert_With_Timer_Control(benchmark::State& state) {
986
+ std::set<int> data;
987
+ for (auto _ : state) {
988
+ state.PauseTiming(); // Stop timers. They will not count until they are resumed.
989
+ data = ConstructRandomSet(state.range(0)); // Do something that should not be measured
990
+ state.ResumeTiming(); // And resume timers. They are now counting again.
991
+ // The rest will be measured.
992
+ for (int j = 0; j < state.range(1); ++j)
993
+ data.insert(RandomNumber());
994
+ }
995
+ }
996
+ BENCHMARK(BM_SetInsert_With_Timer_Control)->Ranges({{1<<10, 8<<10}, {128, 512}});
997
+ ```
998
+
999
+ <a name="manual-timing" />
1000
+
1001
+ ### Manual Timing
1002
+
1003
+ For benchmarking something for which neither CPU time nor real-time are
1004
+ correct or accurate enough, completely manual timing is supported using
1005
+ the `UseManualTime` function.
1006
+
1007
+ When `UseManualTime` is used, the benchmarked code must call
1008
+ `SetIterationTime` once per iteration of the benchmark loop to
1009
+ report the manually measured time.
1010
+
1011
+ An example use case for this is benchmarking GPU execution (e.g. OpenCL
1012
+ or CUDA kernels, OpenGL or Vulkan or Direct3D draw calls), which cannot
1013
+ be accurately measured using CPU time or real-time. Instead, they can be
1014
+ measured accurately using a dedicated API, and these measurement results
1015
+ can be reported back with `SetIterationTime`.
1016
+
1017
+ ```c++
1018
+ static void BM_ManualTiming(benchmark::State& state) {
1019
+ int microseconds = state.range(0);
1020
+ std::chrono::duration<double, std::micro> sleep_duration {
1021
+ static_cast<double>(microseconds)
1022
+ };
1023
+
1024
+ for (auto _ : state) {
1025
+ auto start = std::chrono::high_resolution_clock::now();
1026
+ // Simulate some useful workload with a sleep
1027
+ std::this_thread::sleep_for(sleep_duration);
1028
+ auto end = std::chrono::high_resolution_clock::now();
1029
+
1030
+ auto elapsed_seconds =
1031
+ std::chrono::duration_cast<std::chrono::duration<double>>(
1032
+ end - start);
1033
+
1034
+ state.SetIterationTime(elapsed_seconds.count());
1035
+ }
1036
+ }
1037
+ BENCHMARK(BM_ManualTiming)->Range(1, 1<<17)->UseManualTime();
1038
+ ```
1039
+
1040
+ <a name="setting-the-time-unit" />
1041
+
1042
+ ### Setting the Time Unit
1043
+
1044
+ If a benchmark runs a few milliseconds it may be hard to visually compare the
1045
+ measured times, since the output data is given in nanoseconds per default. In
1046
+ order to manually set the time unit, you can specify it manually:
1047
+
1048
+ ```c++
1049
+ BENCHMARK(BM_test)->Unit(benchmark::kMillisecond);
1050
+ ```
1051
+
1052
+ <a name="preventing-optimization" />
1053
+
1054
+ ### Preventing Optimization
1055
+
1056
+ To prevent a value or expression from being optimized away by the compiler
1057
+ the `benchmark::DoNotOptimize(...)` and `benchmark::ClobberMemory()`
1058
+ functions can be used.
1059
+
1060
+ ```c++
1061
+ static void BM_test(benchmark::State& state) {
1062
+ for (auto _ : state) {
1063
+ int x = 0;
1064
+ for (int i=0; i < 64; ++i) {
1065
+ benchmark::DoNotOptimize(x += i);
1066
+ }
1067
+ }
1068
+ }
1069
+ ```
1070
+
1071
+ `DoNotOptimize(<expr>)` forces the *result* of `<expr>` to be stored in either
1072
+ memory or a register. For GNU based compilers it acts as read/write barrier
1073
+ for global memory. More specifically it forces the compiler to flush pending
1074
+ writes to memory and reload any other values as necessary.
1075
+
1076
+ Note that `DoNotOptimize(<expr>)` does not prevent optimizations on `<expr>`
1077
+ in any way. `<expr>` may even be removed entirely when the result is already
1078
+ known. For example:
1079
+
1080
+ ```c++
1081
+ /* Example 1: `<expr>` is removed entirely. */
1082
+ int foo(int x) { return x + 42; }
1083
+ while (...) DoNotOptimize(foo(0)); // Optimized to DoNotOptimize(42);
1084
+
1085
+ /* Example 2: Result of '<expr>' is only reused */
1086
+ int bar(int) __attribute__((const));
1087
+ while (...) DoNotOptimize(bar(0)); // Optimized to:
1088
+ // int __result__ = bar(0);
1089
+ // while (...) DoNotOptimize(__result__);
1090
+ ```
1091
+
1092
+ The second tool for preventing optimizations is `ClobberMemory()`. In essence
1093
+ `ClobberMemory()` forces the compiler to perform all pending writes to global
1094
+ memory. Memory managed by block scope objects must be "escaped" using
1095
+ `DoNotOptimize(...)` before it can be clobbered. In the below example
1096
+ `ClobberMemory()` prevents the call to `v.push_back(42)` from being optimized
1097
+ away.
1098
+
1099
+ ```c++
1100
+ static void BM_vector_push_back(benchmark::State& state) {
1101
+ for (auto _ : state) {
1102
+ std::vector<int> v;
1103
+ v.reserve(1);
1104
+ benchmark::DoNotOptimize(v.data()); // Allow v.data() to be clobbered.
1105
+ v.push_back(42);
1106
+ benchmark::ClobberMemory(); // Force 42 to be written to memory.
1107
+ }
1108
+ }
1109
+ ```
1110
+
1111
+ Note that `ClobberMemory()` is only available for GNU or MSVC based compilers.
1112
+
1113
+ <a name="reporting-statistics" />
1114
+
1115
+ ### Statistics: Reporting the Mean, Median and Standard Deviation of Repeated Benchmarks
1116
+
1117
+ By default each benchmark is run once and that single result is reported.
1118
+ However benchmarks are often noisy and a single result may not be representative
1119
+ of the overall behavior. For this reason it's possible to repeatedly rerun the
1120
+ benchmark.
1121
+
1122
+ The number of runs of each benchmark is specified globally by the
1123
+ `--benchmark_repetitions` flag or on a per benchmark basis by calling
1124
+ `Repetitions` on the registered benchmark object. When a benchmark is run more
1125
+ than once the mean, median and standard deviation of the runs will be reported.
1126
+
1127
+ Additionally the `--benchmark_report_aggregates_only={true|false}`,
1128
+ `--benchmark_display_aggregates_only={true|false}` flags or
1129
+ `ReportAggregatesOnly(bool)`, `DisplayAggregatesOnly(bool)` functions can be
1130
+ used to change how repeated tests are reported. By default the result of each
1131
+ repeated run is reported. When `report aggregates only` option is `true`,
1132
+ only the aggregates (i.e. mean, median and standard deviation, maybe complexity
1133
+ measurements if they were requested) of the runs is reported, to both the
1134
+ reporters - standard output (console), and the file.
1135
+ However when only the `display aggregates only` option is `true`,
1136
+ only the aggregates are displayed in the standard output, while the file
1137
+ output still contains everything.
1138
+ Calling `ReportAggregatesOnly(bool)` / `DisplayAggregatesOnly(bool)` on a
1139
+ registered benchmark object overrides the value of the appropriate flag for that
1140
+ benchmark.
1141
+
1142
+ <a name="custom-statistics" />
1143
+
1144
+ ### Custom Statistics
1145
+
1146
+ While having mean, median and standard deviation is nice, this may not be
1147
+ enough for everyone. For example you may want to know what the largest
1148
+ observation is, e.g. because you have some real-time constraints. This is easy.
1149
+ The following code will specify a custom statistic to be calculated, defined
1150
+ by a lambda function.
1151
+
1152
+ ```c++
1153
+ void BM_spin_empty(benchmark::State& state) {
1154
+ for (auto _ : state) {
1155
+ for (int x = 0; x < state.range(0); ++x) {
1156
+ benchmark::DoNotOptimize(x);
1157
+ }
1158
+ }
1159
+ }
1160
+
1161
+ BENCHMARK(BM_spin_empty)
1162
+ ->ComputeStatistics("max", [](const std::vector<double>& v) -> double {
1163
+ return *(std::max_element(std::begin(v), std::end(v)));
1164
+ })
1165
+ ->Arg(512);
1166
+ ```
1167
+
1168
+ <a name="using-register-benchmark" />
1169
+
1170
+ ### Using RegisterBenchmark(name, fn, args...)
1171
+
1172
+ The `RegisterBenchmark(name, func, args...)` function provides an alternative
1173
+ way to create and register benchmarks.
1174
+ `RegisterBenchmark(name, func, args...)` creates, registers, and returns a
1175
+ pointer to a new benchmark with the specified `name` that invokes
1176
+ `func(st, args...)` where `st` is a `benchmark::State` object.
1177
+
1178
+ Unlike the `BENCHMARK` registration macros, which can only be used at the global
1179
+ scope, the `RegisterBenchmark` can be called anywhere. This allows for
1180
+ benchmark tests to be registered programmatically.
1181
+
1182
+ Additionally `RegisterBenchmark` allows any callable object to be registered
1183
+ as a benchmark. Including capturing lambdas and function objects.
1184
+
1185
+ For Example:
1186
+ ```c++
1187
+ auto BM_test = [](benchmark::State& st, auto Inputs) { /* ... */ };
1188
+
1189
+ int main(int argc, char** argv) {
1190
+ for (auto& test_input : { /* ... */ })
1191
+ benchmark::RegisterBenchmark(test_input.name(), BM_test, test_input);
1192
+ benchmark::Initialize(&argc, argv);
1193
+ benchmark::RunSpecifiedBenchmarks();
1194
+ }
1195
+ ```
1196
+
1197
+ <a name="exiting-with-an-error" />
1198
+
1199
+ ### Exiting with an Error
1200
+
1201
+ When errors caused by external influences, such as file I/O and network
1202
+ communication, occur within a benchmark the
1203
+ `State::SkipWithError(const char* msg)` function can be used to skip that run
1204
+ of benchmark and report the error. Note that only future iterations of the
1205
+ `KeepRunning()` are skipped. For the ranged-for version of the benchmark loop
1206
+ Users must explicitly exit the loop, otherwise all iterations will be performed.
1207
+ Users may explicitly return to exit the benchmark immediately.
1208
+
1209
+ The `SkipWithError(...)` function may be used at any point within the benchmark,
1210
+ including before and after the benchmark loop. Moreover, if `SkipWithError(...)`
1211
+ has been used, it is not required to reach the benchmark loop and one may return
1212
+ from the benchmark function early.
1213
+
1214
+ For example:
1215
+
1216
+ ```c++
1217
+ static void BM_test(benchmark::State& state) {
1218
+ auto resource = GetResource();
1219
+ if (!resource.good()) {
1220
+ state.SkipWithError("Resource is not good!");
1221
+ // KeepRunning() loop will not be entered.
1222
+ }
1223
+ while (state.KeepRunning()) {
1224
+ auto data = resource.read_data();
1225
+ if (!resource.good()) {
1226
+ state.SkipWithError("Failed to read data!");
1227
+ break; // Needed to skip the rest of the iteration.
1228
+ }
1229
+ do_stuff(data);
1230
+ }
1231
+ }
1232
+
1233
+ static void BM_test_ranged_fo(benchmark::State & state) {
1234
+ auto resource = GetResource();
1235
+ if (!resource.good()) {
1236
+ state.SkipWithError("Resource is not good!");
1237
+ return; // Early return is allowed when SkipWithError() has been used.
1238
+ }
1239
+ for (auto _ : state) {
1240
+ auto data = resource.read_data();
1241
+ if (!resource.good()) {
1242
+ state.SkipWithError("Failed to read data!");
1243
+ break; // REQUIRED to prevent all further iterations.
1244
+ }
1245
+ do_stuff(data);
1246
+ }
1247
+ }
1248
+ ```
1249
+ <a name="a-faster-keep-running-loop" />
1250
+
1251
+ ### A Faster KeepRunning Loop
1252
+
1253
+ In C++11 mode, a ranged-based for loop should be used in preference to
1254
+ the `KeepRunning` loop for running the benchmarks. For example:
1255
+
1256
+ ```c++
1257
+ static void BM_Fast(benchmark::State &state) {
1258
+ for (auto _ : state) {
1259
+ FastOperation();
1260
+ }
1261
+ }
1262
+ BENCHMARK(BM_Fast);
1263
+ ```
1264
+
1265
+ The reason the ranged-for loop is faster than using `KeepRunning`, is
1266
+ because `KeepRunning` requires a memory load and store of the iteration count
1267
+ ever iteration, whereas the ranged-for variant is able to keep the iteration count
1268
+ in a register.
1269
+
1270
+ For example, an empty inner loop of using the ranged-based for method looks like:
1271
+
1272
+ ```asm
1273
+ # Loop Init
1274
+ mov rbx, qword ptr [r14 + 104]
1275
+ call benchmark::State::StartKeepRunning()
1276
+ test rbx, rbx
1277
+ je .LoopEnd
1278
+ .LoopHeader: # =>This Inner Loop Header: Depth=1
1279
+ add rbx, -1
1280
+ jne .LoopHeader
1281
+ .LoopEnd:
1282
+ ```
1283
+
1284
+ Compared to an empty `KeepRunning` loop, which looks like:
1285
+
1286
+ ```asm
1287
+ .LoopHeader: # in Loop: Header=BB0_3 Depth=1
1288
+ cmp byte ptr [rbx], 1
1289
+ jne .LoopInit
1290
+ .LoopBody: # =>This Inner Loop Header: Depth=1
1291
+ mov rax, qword ptr [rbx + 8]
1292
+ lea rcx, [rax + 1]
1293
+ mov qword ptr [rbx + 8], rcx
1294
+ cmp rax, qword ptr [rbx + 104]
1295
+ jb .LoopHeader
1296
+ jmp .LoopEnd
1297
+ .LoopInit:
1298
+ mov rdi, rbx
1299
+ call benchmark::State::StartKeepRunning()
1300
+ jmp .LoopBody
1301
+ .LoopEnd:
1302
+ ```
1303
+
1304
+ Unless C++03 compatibility is required, the ranged-for variant of writing
1305
+ the benchmark loop should be preferred.
1306
+
1307
+ <a name="disabling-cpu-frequency-scaling" />
1308
+
1309
+ ### Disabling CPU Frequency Scaling
1310
+
1311
+ If you see this error:
1312
+
1313
+ ```
1314
+ ***WARNING*** CPU scaling is enabled, the benchmark real time measurements may be noisy and will incur extra overhead.
1315
+ ```
1316
+
1317
+ you might want to disable the CPU frequency scaling while running the benchmark:
1318
+
1319
+ ```bash
1320
+ sudo cpupower frequency-set --governor performance
1321
+ ./mybench
1322
+ sudo cpupower frequency-set --governor powersave
1323
+ ```