From e6918187568dbd01842d8d1d2c808ce16a894239 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 21 Apr 2024 13:54:28 +0200 Subject: Adding upstream version 18.2.2. Signed-off-by: Daniel Baumann --- src/arrow/cpp/.gitignore | 43 + src/arrow/cpp/Brewfile | 41 + src/arrow/cpp/CHANGELOG_PARQUET.md | 501 ++ src/arrow/cpp/CMakeLists.txt | 958 +++ src/arrow/cpp/CMakeSettings.json | 21 + src/arrow/cpp/README.md | 34 + src/arrow/cpp/apidoc/.gitignore | 1 + src/arrow/cpp/apidoc/Doxyfile | 2551 ++++++ src/arrow/cpp/apidoc/HDFS.md | 83 + src/arrow/cpp/apidoc/footer.html | 31 + src/arrow/cpp/apidoc/tutorials/plasma.md | 450 ++ src/arrow/cpp/apidoc/tutorials/tensor_to_py.md | 127 + src/arrow/cpp/build-support/asan_symbolize.py | 368 + src/arrow/cpp/build-support/build-lz4-lib.sh | 32 + src/arrow/cpp/build-support/build-zstd-lib.sh | 25 + src/arrow/cpp/build-support/cpplint.py | 6477 +++++++++++++++ .../cpp/build-support/fuzzing/generate_corpuses.sh | 59 + src/arrow/cpp/build-support/fuzzing/pack_corpus.py | 54 + src/arrow/cpp/build-support/get-upstream-commit.sh | 25 + src/arrow/cpp/build-support/iwyu/iwyu-filter.awk | 96 + src/arrow/cpp/build-support/iwyu/iwyu.sh | 90 + src/arrow/cpp/build-support/iwyu/iwyu_tool.py | 280 + .../cpp/build-support/iwyu/mappings/arrow-misc.imp | 61 + .../iwyu/mappings/boost-all-private.imp | 4166 ++++++++++ .../cpp/build-support/iwyu/mappings/boost-all.imp | 5679 ++++++++++++++ .../build-support/iwyu/mappings/boost-extra.imp | 23 + .../cpp/build-support/iwyu/mappings/gflags.imp | 20 + src/arrow/cpp/build-support/iwyu/mappings/glog.imp | 27 + .../cpp/build-support/iwyu/mappings/gmock.imp | 23 + .../cpp/build-support/iwyu/mappings/gtest.imp | 26 + src/arrow/cpp/build-support/lint_cpp_cli.py | 128 + src/arrow/cpp/build-support/lint_exclusions.txt | 15 + src/arrow/cpp/build-support/lintutils.py | 109 + src/arrow/cpp/build-support/lsan-suppressions.txt | 21 + src/arrow/cpp/build-support/run-infer.sh | 48 + src/arrow/cpp/build-support/run-test.sh | 237 + src/arrow/cpp/build-support/run_clang_format.py | 137 + src/arrow/cpp/build-support/run_clang_tidy.py | 124 + src/arrow/cpp/build-support/run_cpplint.py | 132 + .../build-support/sanitizer-disallowed-entries.txt | 25 + .../cpp/build-support/stacktrace_addr2line.pl | 92 + src/arrow/cpp/build-support/trim-boost.sh | 72 + src/arrow/cpp/build-support/tsan-suppressions.txt | 19 + src/arrow/cpp/build-support/ubsan-suppressions.txt | 16 + src/arrow/cpp/build-support/update-flatbuffers.sh | 50 + src/arrow/cpp/build-support/update-thrift.sh | 23 + src/arrow/cpp/build-support/vendor-flatbuffers.sh | 31 + src/arrow/cpp/cmake_modules/BuildUtils.cmake | 936 +++ src/arrow/cpp/cmake_modules/DefineOptions.cmake | 589 ++ src/arrow/cpp/cmake_modules/FindArrow.cmake | 466 ++ src/arrow/cpp/cmake_modules/FindArrowCUDA.cmake | 88 + src/arrow/cpp/cmake_modules/FindArrowDataset.cmake | 89 + src/arrow/cpp/cmake_modules/FindArrowFlight.cmake | 89 + .../cpp/cmake_modules/FindArrowFlightTesting.cmake | 98 + src/arrow/cpp/cmake_modules/FindArrowPython.cmake | 87 + .../cpp/cmake_modules/FindArrowPythonFlight.cmake | 94 + src/arrow/cpp/cmake_modules/FindArrowTesting.cmake | 89 + src/arrow/cpp/cmake_modules/FindBoostAlt.cmake | 63 + src/arrow/cpp/cmake_modules/FindBrotli.cmake | 130 + src/arrow/cpp/cmake_modules/FindClangTools.cmake | 106 + src/arrow/cpp/cmake_modules/FindGLOG.cmake | 56 + src/arrow/cpp/cmake_modules/FindGandiva.cmake | 94 + src/arrow/cpp/cmake_modules/FindInferTools.cmake | 47 + src/arrow/cpp/cmake_modules/FindLLVMAlt.cmake | 76 + src/arrow/cpp/cmake_modules/FindLz4.cmake | 84 + src/arrow/cpp/cmake_modules/FindNumPy.cmake | 96 + src/arrow/cpp/cmake_modules/FindORC.cmake | 55 + src/arrow/cpp/cmake_modules/FindOpenSSLAlt.cmake | 54 + src/arrow/cpp/cmake_modules/FindParquet.cmake | 126 + src/arrow/cpp/cmake_modules/FindPlasma.cmake | 102 + src/arrow/cpp/cmake_modules/FindPython3Alt.cmake | 96 + .../cpp/cmake_modules/FindPythonLibsNew.cmake | 267 + src/arrow/cpp/cmake_modules/FindRapidJSONAlt.cmake | 72 + src/arrow/cpp/cmake_modules/FindSnappy.cmake | 62 + src/arrow/cpp/cmake_modules/FindThrift.cmake | 144 + src/arrow/cpp/cmake_modules/Findc-aresAlt.cmake | 73 + src/arrow/cpp/cmake_modules/FindgRPCAlt.cmake | 76 + src/arrow/cpp/cmake_modules/FindgflagsAlt.cmake | 59 + src/arrow/cpp/cmake_modules/Findjemalloc.cmake | 94 + src/arrow/cpp/cmake_modules/Findre2Alt.cmake | 87 + src/arrow/cpp/cmake_modules/Findutf8proc.cmake | 101 + src/arrow/cpp/cmake_modules/Findzstd.cmake | 89 + src/arrow/cpp/cmake_modules/SetupCxxFlags.cmake | 648 ++ .../cpp/cmake_modules/ThirdpartyToolchain.cmake | 4063 ++++++++++ src/arrow/cpp/cmake_modules/UseCython.cmake | 187 + src/arrow/cpp/cmake_modules/Usevcpkg.cmake | 249 + src/arrow/cpp/cmake_modules/san-config.cmake | 122 + src/arrow/cpp/examples/arrow/CMakeLists.txt | 44 + .../arrow/compute_and_write_csv_example.cc | 113 + .../cpp/examples/arrow/compute_register_example.cc | 168 + .../arrow/dataset_documentation_example.cc | 374 + .../examples/arrow/dataset_parquet_scan_example.cc | 190 + .../examples/arrow/row_wise_conversion_example.cc | 207 + src/arrow/cpp/examples/minimal_build/.gitignore | 18 + .../cpp/examples/minimal_build/CMakeLists.txt | 40 + src/arrow/cpp/examples/minimal_build/README.md | 88 + .../cpp/examples/minimal_build/build_arrow.sh | 35 + .../cpp/examples/minimal_build/build_example.sh | 27 + .../cpp/examples/minimal_build/docker-compose.yml | 51 + src/arrow/cpp/examples/minimal_build/example.cc | 69 + .../cpp/examples/minimal_build/minimal.dockerfile | 27 + src/arrow/cpp/examples/minimal_build/run.sh | 48 + .../cpp/examples/minimal_build/run_static.bat | 88 + src/arrow/cpp/examples/minimal_build/run_static.sh | 121 + .../minimal_build/system_dependency.dockerfile | 44 + src/arrow/cpp/examples/minimal_build/test.csv | 3 + src/arrow/cpp/examples/parquet/CMakeLists.txt | 78 + .../low_level_api/encryption_reader_writer.cc | 451 ++ .../encryption_reader_writer_all_crypto_options.cc | 656 ++ .../parquet/low_level_api/reader_writer.cc | 413 + .../examples/parquet/low_level_api/reader_writer.h | 70 + .../parquet/low_level_api/reader_writer2.cc | 434 ++ .../examples/parquet/parquet_arrow/CMakeLists.txt | 42 + .../cpp/examples/parquet/parquet_arrow/README.md | 20 + .../parquet/parquet_arrow/reader_writer.cc | 140 + .../parquet_stream_api/stream_reader_writer.cc | 324 + src/arrow/cpp/src/arrow/ArrowConfig.cmake.in | 92 + .../cpp/src/arrow/ArrowTestingConfig.cmake.in | 36 + src/arrow/cpp/src/arrow/CMakeLists.txt | 751 ++ .../cpp/src/arrow/adapters/orc/CMakeLists.txt | 57 + src/arrow/cpp/src/arrow/adapters/orc/adapter.cc | 699 ++ src/arrow/cpp/src/arrow/adapters/orc/adapter.h | 291 + .../cpp/src/arrow/adapters/orc/adapter_test.cc | 686 ++ .../cpp/src/arrow/adapters/orc/adapter_util.cc | 1069 +++ .../cpp/src/arrow/adapters/orc/adapter_util.h | 57 + .../cpp/src/arrow/adapters/orc/arrow-orc.pc.in | 24 + .../src/arrow/adapters/tensorflow/CMakeLists.txt | 21 + .../adapters/tensorflow/arrow-tensorflow.pc.in | 24 + .../cpp/src/arrow/adapters/tensorflow/convert.h | 128 + src/arrow/cpp/src/arrow/api.h | 44 + src/arrow/cpp/src/arrow/array.h | 44 + src/arrow/cpp/src/arrow/array/CMakeLists.txt | 26 + src/arrow/cpp/src/arrow/array/README.md | 20 + src/arrow/cpp/src/arrow/array/array_base.cc | 313 + src/arrow/cpp/src/arrow/array/array_base.h | 260 + src/arrow/cpp/src/arrow/array/array_binary.cc | 108 + src/arrow/cpp/src/arrow/array/array_binary.h | 261 + src/arrow/cpp/src/arrow/array/array_binary_test.cc | 900 +++ src/arrow/cpp/src/arrow/array/array_decimal.cc | 63 + src/arrow/cpp/src/arrow/array/array_decimal.h | 72 + src/arrow/cpp/src/arrow/array/array_dict.cc | 442 ++ src/arrow/cpp/src/arrow/array/array_dict.h | 180 + src/arrow/cpp/src/arrow/array/array_dict_test.cc | 1678 ++++ src/arrow/cpp/src/arrow/array/array_list_test.cc | 1182 +++ src/arrow/cpp/src/arrow/array/array_nested.cc | 763 ++ src/arrow/cpp/src/arrow/array/array_nested.h | 533 ++ src/arrow/cpp/src/arrow/array/array_primitive.cc | 133 + src/arrow/cpp/src/arrow/array/array_primitive.h | 178 + src/arrow/cpp/src/arrow/array/array_struct_test.cc | 699 ++ src/arrow/cpp/src/arrow/array/array_test.cc | 3291 ++++++++ src/arrow/cpp/src/arrow/array/array_union_test.cc | 582 ++ src/arrow/cpp/src/arrow/array/array_view_test.cc | 441 ++ src/arrow/cpp/src/arrow/array/builder_adaptive.cc | 380 + src/arrow/cpp/src/arrow/array/builder_adaptive.h | 203 + src/arrow/cpp/src/arrow/array/builder_base.cc | 336 + src/arrow/cpp/src/arrow/array/builder_base.h | 307 + src/arrow/cpp/src/arrow/array/builder_binary.cc | 207 + src/arrow/cpp/src/arrow/array/builder_binary.h | 697 ++ src/arrow/cpp/src/arrow/array/builder_decimal.cc | 105 + src/arrow/cpp/src/arrow/array/builder_decimal.h | 94 + src/arrow/cpp/src/arrow/array/builder_dict.cc | 213 + src/arrow/cpp/src/arrow/array/builder_dict.h | 712 ++ src/arrow/cpp/src/arrow/array/builder_nested.cc | 294 + src/arrow/cpp/src/arrow/array/builder_nested.h | 544 ++ src/arrow/cpp/src/arrow/array/builder_primitive.cc | 145 + src/arrow/cpp/src/arrow/array/builder_primitive.h | 519 ++ src/arrow/cpp/src/arrow/array/builder_time.h | 56 + src/arrow/cpp/src/arrow/array/builder_union.cc | 151 + src/arrow/cpp/src/arrow/array/builder_union.h | 242 + src/arrow/cpp/src/arrow/array/concatenate.cc | 510 ++ src/arrow/cpp/src/arrow/array/concatenate.h | 37 + src/arrow/cpp/src/arrow/array/concatenate_test.cc | 398 + src/arrow/cpp/src/arrow/array/data.cc | 331 + src/arrow/cpp/src/arrow/array/data.h | 258 + src/arrow/cpp/src/arrow/array/dict_internal.h | 193 + src/arrow/cpp/src/arrow/array/diff.cc | 794 ++ src/arrow/cpp/src/arrow/array/diff.h | 76 + src/arrow/cpp/src/arrow/array/diff_test.cc | 696 ++ src/arrow/cpp/src/arrow/array/util.cc | 860 ++ src/arrow/cpp/src/arrow/array/util.h | 78 + src/arrow/cpp/src/arrow/array/validate.cc | 679 ++ src/arrow/cpp/src/arrow/array/validate.h | 55 + src/arrow/cpp/src/arrow/arrow-config.cmake | 26 + src/arrow/cpp/src/arrow/arrow-testing.pc.in | 27 + src/arrow/cpp/src/arrow/arrow.pc.in | 31 + src/arrow/cpp/src/arrow/buffer.cc | 207 + src/arrow/cpp/src/arrow/buffer.h | 499 ++ src/arrow/cpp/src/arrow/buffer_builder.h | 459 ++ src/arrow/cpp/src/arrow/buffer_test.cc | 926 +++ src/arrow/cpp/src/arrow/builder.cc | 312 + src/arrow/cpp/src/arrow/builder.h | 32 + src/arrow/cpp/src/arrow/builder_benchmark.cc | 453 ++ src/arrow/cpp/src/arrow/c/CMakeLists.txt | 22 + src/arrow/cpp/src/arrow/c/abi.h | 103 + src/arrow/cpp/src/arrow/c/bridge.cc | 1818 +++++ src/arrow/cpp/src/arrow/c/bridge.h | 197 + src/arrow/cpp/src/arrow/c/bridge_benchmark.cc | 159 + src/arrow/cpp/src/arrow/c/bridge_test.cc | 3226 ++++++++ src/arrow/cpp/src/arrow/c/helpers.h | 117 + src/arrow/cpp/src/arrow/c/util_internal.h | 85 + src/arrow/cpp/src/arrow/chunked_array.cc | 304 + src/arrow/cpp/src/arrow/chunked_array.h | 255 + src/arrow/cpp/src/arrow/chunked_array_test.cc | 266 + src/arrow/cpp/src/arrow/compare.cc | 1300 +++ src/arrow/cpp/src/arrow/compare.h | 133 + src/arrow/cpp/src/arrow/compare_benchmark.cc | 164 + src/arrow/cpp/src/arrow/compute/CMakeLists.txt | 72 + src/arrow/cpp/src/arrow/compute/README.md | 58 + src/arrow/cpp/src/arrow/compute/api.h | 35 + src/arrow/cpp/src/arrow/compute/api_aggregate.cc | 250 + src/arrow/cpp/src/arrow/compute/api_aggregate.h | 494 ++ src/arrow/cpp/src/arrow/compute/api_scalar.cc | 676 ++ src/arrow/cpp/src/arrow/compute/api_scalar.h | 1219 +++ src/arrow/cpp/src/arrow/compute/api_vector.cc | 328 + src/arrow/cpp/src/arrow/compute/api_vector.h | 506 ++ .../cpp/src/arrow/compute/arrow-compute.pc.in | 21 + src/arrow/cpp/src/arrow/compute/cast.cc | 273 + src/arrow/cpp/src/arrow/compute/cast.h | 167 + src/arrow/cpp/src/arrow/compute/cast_internal.h | 43 + src/arrow/cpp/src/arrow/compute/exec.cc | 1061 +++ src/arrow/cpp/src/arrow/compute/exec.h | 268 + .../cpp/src/arrow/compute/exec/CMakeLists.txt | 33 + .../cpp/src/arrow/compute/exec/aggregate_node.cc | 644 ++ .../src/arrow/compute/exec/doc/img/key_map_1.jpg | Bin 0 -> 53790 bytes .../src/arrow/compute/exec/doc/img/key_map_10.jpg | Bin 0 -> 69625 bytes .../src/arrow/compute/exec/doc/img/key_map_11.jpg | Bin 0 -> 60687 bytes .../src/arrow/compute/exec/doc/img/key_map_2.jpg | Bin 0 -> 43971 bytes .../src/arrow/compute/exec/doc/img/key_map_3.jpg | Bin 0 -> 59985 bytes .../src/arrow/compute/exec/doc/img/key_map_4.jpg | Bin 0 -> 56289 bytes .../src/arrow/compute/exec/doc/img/key_map_5.jpg | Bin 0 -> 61950 bytes .../src/arrow/compute/exec/doc/img/key_map_6.jpg | Bin 0 -> 43687 bytes .../src/arrow/compute/exec/doc/img/key_map_7.jpg | Bin 0 -> 43687 bytes .../src/arrow/compute/exec/doc/img/key_map_8.jpg | Bin 0 -> 48054 bytes .../src/arrow/compute/exec/doc/img/key_map_9.jpg | Bin 0 -> 52894 bytes .../cpp/src/arrow/compute/exec/doc/key_map.md | 223 + src/arrow/cpp/src/arrow/compute/exec/exec_plan.cc | 523 ++ src/arrow/cpp/src/arrow/compute/exec/exec_plan.h | 422 + src/arrow/cpp/src/arrow/compute/exec/expression.cc | 1192 +++ src/arrow/cpp/src/arrow/compute/exec/expression.h | 269 + .../src/arrow/compute/exec/expression_benchmark.cc | 88 + .../src/arrow/compute/exec/expression_internal.h | 336 + .../cpp/src/arrow/compute/exec/expression_test.cc | 1414 ++++ .../cpp/src/arrow/compute/exec/filter_node.cc | 116 + .../cpp/src/arrow/compute/exec/forest_internal.h | 125 + src/arrow/cpp/src/arrow/compute/exec/hash_join.cc | 795 ++ src/arrow/cpp/src/arrow/compute/exec/hash_join.h | 95 + .../cpp/src/arrow/compute/exec/hash_join_dict.cc | 665 ++ .../cpp/src/arrow/compute/exec/hash_join_dict.h | 315 + .../cpp/src/arrow/compute/exec/hash_join_node.cc | 469 ++ .../src/arrow/compute/exec/hash_join_node_test.cc | 1693 ++++ .../cpp/src/arrow/compute/exec/key_compare.cc | 424 + src/arrow/cpp/src/arrow/compute/exec/key_compare.h | 137 + .../cpp/src/arrow/compute/exec/key_compare_avx2.cc | 633 ++ src/arrow/cpp/src/arrow/compute/exec/key_encode.cc | 1341 ++++ src/arrow/cpp/src/arrow/compute/exec/key_encode.h | 567 ++ .../cpp/src/arrow/compute/exec/key_encode_avx2.cc | 241 + src/arrow/cpp/src/arrow/compute/exec/key_hash.cc | 319 + src/arrow/cpp/src/arrow/compute/exec/key_hash.h | 106 + .../cpp/src/arrow/compute/exec/key_hash_avx2.cc | 268 + src/arrow/cpp/src/arrow/compute/exec/key_map.cc | 862 ++ src/arrow/cpp/src/arrow/compute/exec/key_map.h | 206 + .../cpp/src/arrow/compute/exec/key_map_avx2.cc | 414 + src/arrow/cpp/src/arrow/compute/exec/options.h | 265 + .../cpp/src/arrow/compute/exec/order_by_impl.cc | 104 + .../cpp/src/arrow/compute/exec/order_by_impl.h | 53 + src/arrow/cpp/src/arrow/compute/exec/plan_test.cc | 1226 +++ .../cpp/src/arrow/compute/exec/project_node.cc | 127 + src/arrow/cpp/src/arrow/compute/exec/schema_util.h | 209 + src/arrow/cpp/src/arrow/compute/exec/sink_node.cc | 341 + .../cpp/src/arrow/compute/exec/source_node.cc | 182 + .../cpp/src/arrow/compute/exec/subtree_internal.h | 178 + .../cpp/src/arrow/compute/exec/subtree_test.cc | 377 + src/arrow/cpp/src/arrow/compute/exec/task_util.cc | 409 + src/arrow/cpp/src/arrow/compute/exec/task_util.h | 100 + src/arrow/cpp/src/arrow/compute/exec/test_util.cc | 239 + src/arrow/cpp/src/arrow/compute/exec/test_util.h | 107 + src/arrow/cpp/src/arrow/compute/exec/union_node.cc | 154 + .../cpp/src/arrow/compute/exec/union_node_test.cc | 150 + src/arrow/cpp/src/arrow/compute/exec/util.cc | 336 + src/arrow/cpp/src/arrow/compute/exec/util.h | 277 + src/arrow/cpp/src/arrow/compute/exec/util_avx2.cc | 221 + src/arrow/cpp/src/arrow/compute/exec/util_test.cc | 131 + src/arrow/cpp/src/arrow/compute/exec_internal.h | 145 + src/arrow/cpp/src/arrow/compute/exec_test.cc | 891 +++ src/arrow/cpp/src/arrow/compute/function.cc | 339 + src/arrow/cpp/src/arrow/compute/function.h | 395 + .../cpp/src/arrow/compute/function_benchmark.cc | 218 + .../cpp/src/arrow/compute/function_internal.cc | 113 + .../cpp/src/arrow/compute/function_internal.h | 648 ++ src/arrow/cpp/src/arrow/compute/function_test.cc | 351 + src/arrow/cpp/src/arrow/compute/kernel.cc | 507 ++ src/arrow/cpp/src/arrow/compute/kernel.h | 752 ++ src/arrow/cpp/src/arrow/compute/kernel_test.cc | 516 ++ .../cpp/src/arrow/compute/kernels/CMakeLists.txt | 78 + .../src/arrow/compute/kernels/aggregate_basic.cc | 1011 +++ .../arrow/compute/kernels/aggregate_basic_avx2.cc | 88 + .../compute/kernels/aggregate_basic_avx512.cc | 90 + .../compute/kernels/aggregate_basic_internal.h | 626 ++ .../arrow/compute/kernels/aggregate_benchmark.cc | 752 ++ .../src/arrow/compute/kernels/aggregate_internal.h | 223 + .../src/arrow/compute/kernels/aggregate_mode.cc | 419 + .../arrow/compute/kernels/aggregate_quantile.cc | 513 ++ .../src/arrow/compute/kernels/aggregate_tdigest.cc | 235 + .../src/arrow/compute/kernels/aggregate_test.cc | 3670 +++++++++ .../src/arrow/compute/kernels/aggregate_var_std.cc | 298 + .../compute/kernels/aggregate_var_std_internal.h | 68 + .../src/arrow/compute/kernels/chunked_internal.h | 167 + .../src/arrow/compute/kernels/codegen_internal.cc | 420 + .../src/arrow/compute/kernels/codegen_internal.h | 1353 ++++ .../arrow/compute/kernels/codegen_internal_test.cc | 163 + src/arrow/cpp/src/arrow/compute/kernels/common.h | 54 + .../src/arrow/compute/kernels/hash_aggregate.cc | 2659 +++++++ .../arrow/compute/kernels/hash_aggregate_test.cc | 2612 +++++++ .../cpp/src/arrow/compute/kernels/row_encoder.cc | 360 + .../cpp/src/arrow/compute/kernels/row_encoder.h | 267 + .../src/arrow/compute/kernels/scalar_arithmetic.cc | 2609 +++++++ .../compute/kernels/scalar_arithmetic_benchmark.cc | 159 + .../compute/kernels/scalar_arithmetic_test.cc | 3174 ++++++++ .../src/arrow/compute/kernels/scalar_boolean.cc | 563 ++ .../compute/kernels/scalar_boolean_benchmark.cc | 59 + .../arrow/compute/kernels/scalar_boolean_test.cc | 159 + .../arrow/compute/kernels/scalar_cast_benchmark.cc | 117 + .../arrow/compute/kernels/scalar_cast_boolean.cc | 70 + .../compute/kernels/scalar_cast_dictionary.cc | 126 + .../arrow/compute/kernels/scalar_cast_internal.cc | 299 + .../arrow/compute/kernels/scalar_cast_internal.h | 88 + .../arrow/compute/kernels/scalar_cast_nested.cc | 188 + .../arrow/compute/kernels/scalar_cast_numeric.cc | 784 ++ .../arrow/compute/kernels/scalar_cast_string.cc | 374 + .../arrow/compute/kernels/scalar_cast_temporal.cc | 598 ++ .../src/arrow/compute/kernels/scalar_cast_test.cc | 2334 ++++++ .../src/arrow/compute/kernels/scalar_compare.cc | 540 ++ .../compute/kernels/scalar_compare_benchmark.cc | 81 + .../arrow/compute/kernels/scalar_compare_test.cc | 1388 ++++ .../src/arrow/compute/kernels/scalar_if_else.cc | 2912 +++++++ .../compute/kernels/scalar_if_else_benchmark.cc | 457 ++ .../arrow/compute/kernels/scalar_if_else_test.cc | 2922 +++++++ .../cpp/src/arrow/compute/kernels/scalar_nested.cc | 317 + .../arrow/compute/kernels/scalar_nested_test.cc | 249 + .../src/arrow/compute/kernels/scalar_set_lookup.cc | 532 ++ .../compute/kernels/scalar_set_lookup_benchmark.cc | 143 + .../compute/kernels/scalar_set_lookup_test.cc | 992 +++ .../cpp/src/arrow/compute/kernels/scalar_string.cc | 4490 +++++++++++ .../compute/kernels/scalar_string_benchmark.cc | 240 + .../arrow/compute/kernels/scalar_string_test.cc | 1739 +++++ .../compute/kernels/scalar_temporal_binary.cc | 542 ++ .../arrow/compute/kernels/scalar_temporal_test.cc | 1330 ++++ .../arrow/compute/kernels/scalar_temporal_unary.cc | 1158 +++ .../src/arrow/compute/kernels/scalar_validity.cc | 286 + .../arrow/compute/kernels/scalar_validity_test.cc | 206 + .../cpp/src/arrow/compute/kernels/select_k_test.cc | 716 ++ .../src/arrow/compute/kernels/temporal_internal.h | 269 + .../cpp/src/arrow/compute/kernels/test_util.cc | 362 + .../cpp/src/arrow/compute/kernels/test_util.h | 241 + .../cpp/src/arrow/compute/kernels/util_internal.cc | 82 + .../cpp/src/arrow/compute/kernels/util_internal.h | 166 + .../src/arrow/compute/kernels/vector_array_sort.cc | 561 ++ .../cpp/src/arrow/compute/kernels/vector_hash.cc | 807 ++ .../arrow/compute/kernels/vector_hash_benchmark.cc | 250 + .../src/arrow/compute/kernels/vector_hash_test.cc | 756 ++ .../cpp/src/arrow/compute/kernels/vector_nested.cc | 194 + .../arrow/compute/kernels/vector_nested_test.cc | 132 + .../compute/kernels/vector_partition_benchmark.cc | 59 + .../src/arrow/compute/kernels/vector_replace.cc | 541 ++ .../compute/kernels/vector_replace_benchmark.cc | 89 + .../arrow/compute/kernels/vector_replace_test.cc | 677 ++ .../src/arrow/compute/kernels/vector_selection.cc | 2442 ++++++ .../compute/kernels/vector_selection_benchmark.cc | 354 + .../arrow/compute/kernels/vector_selection_test.cc | 2332 ++++++ .../cpp/src/arrow/compute/kernels/vector_sort.cc | 1902 +++++ .../arrow/compute/kernels/vector_sort_benchmark.cc | 305 + .../arrow/compute/kernels/vector_sort_internal.h | 457 ++ .../src/arrow/compute/kernels/vector_sort_test.cc | 1925 +++++ .../arrow/compute/kernels/vector_topk_benchmark.cc | 59 + src/arrow/cpp/src/arrow/compute/registry.cc | 200 + src/arrow/cpp/src/arrow/compute/registry.h | 93 + .../cpp/src/arrow/compute/registry_internal.h | 64 + src/arrow/cpp/src/arrow/compute/registry_test.cc | 87 + src/arrow/cpp/src/arrow/compute/type_fwd.h | 50 + src/arrow/cpp/src/arrow/config.cc | 78 + src/arrow/cpp/src/arrow/config.h | 72 + src/arrow/cpp/src/arrow/csv/CMakeLists.txt | 39 + src/arrow/cpp/src/arrow/csv/api.h | 26 + src/arrow/cpp/src/arrow/csv/arrow-csv.pc.in | 24 + src/arrow/cpp/src/arrow/csv/chunker.cc | 311 + src/arrow/cpp/src/arrow/csv/chunker.h | 36 + src/arrow/cpp/src/arrow/csv/chunker_test.cc | 372 + src/arrow/cpp/src/arrow/csv/column_builder.cc | 367 + src/arrow/cpp/src/arrow/csv/column_builder.h | 78 + src/arrow/cpp/src/arrow/csv/column_builder_test.cc | 608 ++ src/arrow/cpp/src/arrow/csv/column_decoder.cc | 250 + src/arrow/cpp/src/arrow/csv/column_decoder.h | 64 + src/arrow/cpp/src/arrow/csv/column_decoder_test.cc | 385 + src/arrow/cpp/src/arrow/csv/converter.cc | 780 ++ src/arrow/cpp/src/arrow/csv/converter.h | 82 + src/arrow/cpp/src/arrow/csv/converter_benchmark.cc | 152 + src/arrow/cpp/src/arrow/csv/converter_test.cc | 818 ++ src/arrow/cpp/src/arrow/csv/inference_internal.h | 155 + src/arrow/cpp/src/arrow/csv/invalid_row.h | 56 + src/arrow/cpp/src/arrow/csv/options.cc | 83 + src/arrow/cpp/src/arrow/csv/options.h | 194 + src/arrow/cpp/src/arrow/csv/parser.cc | 608 ++ src/arrow/cpp/src/arrow/csv/parser.h | 227 + src/arrow/cpp/src/arrow/csv/parser_benchmark.cc | 205 + src/arrow/cpp/src/arrow/csv/parser_test.cc | 805 ++ src/arrow/cpp/src/arrow/csv/reader.cc | 1303 ++++ src/arrow/cpp/src/arrow/csv/reader.h | 125 + src/arrow/cpp/src/arrow/csv/reader_test.cc | 490 ++ src/arrow/cpp/src/arrow/csv/test_common.cc | 121 + src/arrow/cpp/src/arrow/csv/test_common.h | 55 + src/arrow/cpp/src/arrow/csv/type_fwd.h | 28 + src/arrow/cpp/src/arrow/csv/writer.cc | 460 ++ src/arrow/cpp/src/arrow/csv/writer.h | 73 + src/arrow/cpp/src/arrow/csv/writer_test.cc | 159 + .../src/arrow/dataset/ArrowDatasetConfig.cmake.in | 37 + src/arrow/cpp/src/arrow/dataset/CMakeLists.txt | 145 + src/arrow/cpp/src/arrow/dataset/README.md | 32 + src/arrow/cpp/src/arrow/dataset/api.h | 30 + .../cpp/src/arrow/dataset/arrow-dataset.pc.in | 25 + src/arrow/cpp/src/arrow/dataset/dataset.cc | 269 + src/arrow/cpp/src/arrow/dataset/dataset.h | 264 + src/arrow/cpp/src/arrow/dataset/dataset_internal.h | 160 + src/arrow/cpp/src/arrow/dataset/dataset_test.cc | 734 ++ src/arrow/cpp/src/arrow/dataset/dataset_writer.cc | 529 ++ src/arrow/cpp/src/arrow/dataset/dataset_writer.h | 97 + .../cpp/src/arrow/dataset/dataset_writer_test.cc | 349 + src/arrow/cpp/src/arrow/dataset/discovery.cc | 282 + src/arrow/cpp/src/arrow/dataset/discovery.h | 271 + src/arrow/cpp/src/arrow/dataset/discovery_test.cc | 479 ++ src/arrow/cpp/src/arrow/dataset/file_base.cc | 466 ++ src/arrow/cpp/src/arrow/dataset/file_base.h | 421 + src/arrow/cpp/src/arrow/dataset/file_benchmark.cc | 90 + src/arrow/cpp/src/arrow/dataset/file_csv.cc | 335 + src/arrow/cpp/src/arrow/dataset/file_csv.h | 123 + src/arrow/cpp/src/arrow/dataset/file_csv_test.cc | 404 + src/arrow/cpp/src/arrow/dataset/file_ipc.cc | 310 + src/arrow/cpp/src/arrow/dataset/file_ipc.h | 125 + src/arrow/cpp/src/arrow/dataset/file_ipc_test.cc | 173 + src/arrow/cpp/src/arrow/dataset/file_orc.cc | 193 + src/arrow/cpp/src/arrow/dataset/file_orc.h | 79 + src/arrow/cpp/src/arrow/dataset/file_orc_test.cc | 85 + src/arrow/cpp/src/arrow/dataset/file_parquet.cc | 974 +++ src/arrow/cpp/src/arrow/dataset/file_parquet.h | 385 + .../cpp/src/arrow/dataset/file_parquet_test.cc | 612 ++ src/arrow/cpp/src/arrow/dataset/file_test.cc | 346 + src/arrow/cpp/src/arrow/dataset/partition.cc | 732 ++ src/arrow/cpp/src/arrow/dataset/partition.h | 372 + src/arrow/cpp/src/arrow/dataset/partition_test.cc | 836 ++ src/arrow/cpp/src/arrow/dataset/pch.h | 27 + src/arrow/cpp/src/arrow/dataset/plan.cc | 39 + src/arrow/cpp/src/arrow/dataset/plan.h | 33 + src/arrow/cpp/src/arrow/dataset/projector.cc | 63 + src/arrow/cpp/src/arrow/dataset/projector.h | 32 + src/arrow/cpp/src/arrow/dataset/scanner.cc | 1347 ++++ src/arrow/cpp/src/arrow/dataset/scanner.h | 458 ++ .../cpp/src/arrow/dataset/scanner_benchmark.cc | 210 + src/arrow/cpp/src/arrow/dataset/scanner_internal.h | 264 + src/arrow/cpp/src/arrow/dataset/scanner_test.cc | 1814 +++++ src/arrow/cpp/src/arrow/dataset/test_util.h | 1300 +++ src/arrow/cpp/src/arrow/dataset/type_fwd.h | 104 + src/arrow/cpp/src/arrow/dataset/visibility.h | 50 + src/arrow/cpp/src/arrow/datum.cc | 292 + src/arrow/cpp/src/arrow/datum.h | 281 + src/arrow/cpp/src/arrow/datum_test.cc | 172 + src/arrow/cpp/src/arrow/dbi/README.md | 24 + .../cpp/src/arrow/dbi/hiveserver2/CMakeLists.txt | 116 + src/arrow/cpp/src/arrow/dbi/hiveserver2/api.h | 27 + .../src/arrow/dbi/hiveserver2/columnar_row_set.cc | 100 + .../src/arrow/dbi/hiveserver2/columnar_row_set.h | 155 + .../src/arrow/dbi/hiveserver2/hiveserver2_test.cc | 458 ++ .../cpp/src/arrow/dbi/hiveserver2/operation.cc | 150 + .../cpp/src/arrow/dbi/hiveserver2/operation.h | 127 + .../src/arrow/dbi/hiveserver2/public_api_test.cc | 26 + .../cpp/src/arrow/dbi/hiveserver2/sample_usage.cc | 137 + src/arrow/cpp/src/arrow/dbi/hiveserver2/service.cc | 110 + src/arrow/cpp/src/arrow/dbi/hiveserver2/service.h | 140 + src/arrow/cpp/src/arrow/dbi/hiveserver2/session.cc | 103 + src/arrow/cpp/src/arrow/dbi/hiveserver2/session.h | 84 + .../src/arrow/dbi/hiveserver2/thrift/.gitignore | 1 + .../arrow/dbi/hiveserver2/thrift/CMakeLists.txt | 120 + .../arrow/dbi/hiveserver2/thrift/ExecStats.thrift | 103 + .../dbi/hiveserver2/thrift/ImpalaService.thrift | 300 + .../src/arrow/dbi/hiveserver2/thrift/Status.thrift | 23 + .../dbi/hiveserver2/thrift/TCLIService.thrift | 1180 +++ .../src/arrow/dbi/hiveserver2/thrift/Types.thrift | 218 + .../arrow/dbi/hiveserver2/thrift/beeswax.thrift | 174 + .../src/arrow/dbi/hiveserver2/thrift/fb303.thrift | 112 + .../dbi/hiveserver2/thrift/generate_error_codes.py | 293 + .../dbi/hiveserver2/thrift/hive_metastore.thrift | 1214 +++ .../src/arrow/dbi/hiveserver2/thrift_internal.cc | 301 + .../src/arrow/dbi/hiveserver2/thrift_internal.h | 91 + src/arrow/cpp/src/arrow/dbi/hiveserver2/types.cc | 45 + src/arrow/cpp/src/arrow/dbi/hiveserver2/types.h | 131 + src/arrow/cpp/src/arrow/dbi/hiveserver2/util.cc | 250 + src/arrow/cpp/src/arrow/dbi/hiveserver2/util.h | 36 + src/arrow/cpp/src/arrow/device.cc | 209 + src/arrow/cpp/src/arrow/device.h | 226 + src/arrow/cpp/src/arrow/extension_type.cc | 169 + src/arrow/cpp/src/arrow/extension_type.h | 161 + src/arrow/cpp/src/arrow/extension_type_test.cc | 336 + src/arrow/cpp/src/arrow/filesystem/CMakeLists.txt | 79 + src/arrow/cpp/src/arrow/filesystem/api.h | 28 + .../src/arrow/filesystem/arrow-filesystem.pc.in | 24 + src/arrow/cpp/src/arrow/filesystem/filesystem.cc | 767 ++ src/arrow/cpp/src/arrow/filesystem/filesystem.h | 535 ++ .../cpp/src/arrow/filesystem/filesystem_test.cc | 825 ++ src/arrow/cpp/src/arrow/filesystem/gcsfs.cc | 269 + src/arrow/cpp/src/arrow/filesystem/gcsfs.h | 118 + .../cpp/src/arrow/filesystem/gcsfs_internal.cc | 67 + .../cpp/src/arrow/filesystem/gcsfs_internal.h | 36 + src/arrow/cpp/src/arrow/filesystem/gcsfs_test.cc | 264 + src/arrow/cpp/src/arrow/filesystem/hdfs.cc | 518 ++ src/arrow/cpp/src/arrow/filesystem/hdfs.h | 113 + src/arrow/cpp/src/arrow/filesystem/hdfs_test.cc | 356 + src/arrow/cpp/src/arrow/filesystem/localfs.cc | 448 ++ src/arrow/cpp/src/arrow/filesystem/localfs.h | 113 + src/arrow/cpp/src/arrow/filesystem/localfs_test.cc | 396 + src/arrow/cpp/src/arrow/filesystem/mockfs.cc | 778 ++ src/arrow/cpp/src/arrow/filesystem/mockfs.h | 132 + src/arrow/cpp/src/arrow/filesystem/path_util.cc | 271 + src/arrow/cpp/src/arrow/filesystem/path_util.h | 130 + src/arrow/cpp/src/arrow/filesystem/s3_internal.h | 215 + src/arrow/cpp/src/arrow/filesystem/s3_test_util.h | 153 + src/arrow/cpp/src/arrow/filesystem/s3fs.cc | 2453 ++++++ src/arrow/cpp/src/arrow/filesystem/s3fs.h | 315 + .../cpp/src/arrow/filesystem/s3fs_benchmark.cc | 432 + .../src/arrow/filesystem/s3fs_narrative_test.cc | 245 + src/arrow/cpp/src/arrow/filesystem/s3fs_test.cc | 1084 +++ src/arrow/cpp/src/arrow/filesystem/test_util.cc | 1135 +++ src/arrow/cpp/src/arrow/filesystem/test_util.h | 246 + src/arrow/cpp/src/arrow/filesystem/type_fwd.h | 49 + .../cpp/src/arrow/filesystem/util_internal.cc | 73 + src/arrow/cpp/src/arrow/filesystem/util_internal.h | 56 + .../src/arrow/flight/ArrowFlightConfig.cmake.in | 36 + .../arrow/flight/ArrowFlightTestingConfig.cmake.in | 37 + src/arrow/cpp/src/arrow/flight/CMakeLists.txt | 267 + src/arrow/cpp/src/arrow/flight/README.md | 36 + src/arrow/cpp/src/arrow/flight/api.h | 27 + .../src/arrow/flight/arrow-flight-testing.pc.in | 25 + src/arrow/cpp/src/arrow/flight/arrow-flight.pc.in | 25 + src/arrow/cpp/src/arrow/flight/client.cc | 1355 ++++ src/arrow/cpp/src/arrow/flight/client.h | 330 + src/arrow/cpp/src/arrow/flight/client_auth.h | 62 + .../src/arrow/flight/client_cookie_middleware.cc | 65 + .../src/arrow/flight/client_cookie_middleware.h | 33 + .../cpp/src/arrow/flight/client_header_internal.cc | 337 + .../cpp/src/arrow/flight/client_header_internal.h | 151 + src/arrow/cpp/src/arrow/flight/client_middleware.h | 73 + .../cpp/src/arrow/flight/customize_protobuf.h | 108 + src/arrow/cpp/src/arrow/flight/flight_benchmark.cc | 493 ++ src/arrow/cpp/src/arrow/flight/flight_test.cc | 2872 +++++++ src/arrow/cpp/src/arrow/flight/internal.cc | 514 ++ src/arrow/cpp/src/arrow/flight/internal.h | 128 + src/arrow/cpp/src/arrow/flight/middleware.h | 73 + .../cpp/src/arrow/flight/middleware_internal.h | 46 + src/arrow/cpp/src/arrow/flight/pch.h | 26 + src/arrow/cpp/src/arrow/flight/perf.proto | 44 + src/arrow/cpp/src/arrow/flight/perf_server.cc | 285 + src/arrow/cpp/src/arrow/flight/platform.h | 32 + .../cpp/src/arrow/flight/protocol_internal.cc | 26 + src/arrow/cpp/src/arrow/flight/protocol_internal.h | 28 + .../cpp/src/arrow/flight/serialization_internal.cc | 474 ++ .../cpp/src/arrow/flight/serialization_internal.h | 152 + src/arrow/cpp/src/arrow/flight/server.cc | 1165 +++ src/arrow/cpp/src/arrow/flight/server.h | 285 + src/arrow/cpp/src/arrow/flight/server_auth.cc | 37 + src/arrow/cpp/src/arrow/flight/server_auth.h | 78 + src/arrow/cpp/src/arrow/flight/server_middleware.h | 83 + src/arrow/cpp/src/arrow/flight/test_integration.cc | 270 + src/arrow/cpp/src/arrow/flight/test_integration.h | 49 + .../src/arrow/flight/test_integration_client.cc | 244 + .../src/arrow/flight/test_integration_server.cc | 207 + src/arrow/cpp/src/arrow/flight/test_server.cc | 62 + src/arrow/cpp/src/arrow/flight/test_util.cc | 822 ++ src/arrow/cpp/src/arrow/flight/test_util.h | 242 + .../arrow/flight/try_compile/check_tls_opts_127.cc | 36 + .../arrow/flight/try_compile/check_tls_opts_132.cc | 36 + .../arrow/flight/try_compile/check_tls_opts_134.cc | 44 + .../arrow/flight/try_compile/check_tls_opts_136.cc | 38 + src/arrow/cpp/src/arrow/flight/types.cc | 378 + src/arrow/cpp/src/arrow/flight/types.h | 529 ++ src/arrow/cpp/src/arrow/flight/visibility.h | 48 + src/arrow/cpp/src/arrow/gpu/.gitignore | 18 + .../cpp/src/arrow/gpu/ArrowCUDAConfig.cmake.in | 36 + src/arrow/cpp/src/arrow/gpu/CMakeLists.txt | 88 + src/arrow/cpp/src/arrow/gpu/arrow-cuda.pc.in | 26 + src/arrow/cpp/src/arrow/gpu/cuda_api.h | 23 + src/arrow/cpp/src/arrow/gpu/cuda_arrow_ipc.cc | 69 + src/arrow/cpp/src/arrow/gpu/cuda_arrow_ipc.h | 72 + src/arrow/cpp/src/arrow/gpu/cuda_benchmark.cc | 94 + src/arrow/cpp/src/arrow/gpu/cuda_context.cc | 646 ++ src/arrow/cpp/src/arrow/gpu/cuda_context.h | 310 + src/arrow/cpp/src/arrow/gpu/cuda_internal.cc | 66 + src/arrow/cpp/src/arrow/gpu/cuda_internal.h | 60 + src/arrow/cpp/src/arrow/gpu/cuda_memory.cc | 484 ++ src/arrow/cpp/src/arrow/gpu/cuda_memory.h | 260 + src/arrow/cpp/src/arrow/gpu/cuda_test.cc | 626 ++ src/arrow/cpp/src/arrow/gpu/cuda_version.h.in | 25 + src/arrow/cpp/src/arrow/io/CMakeLists.txt | 39 + src/arrow/cpp/src/arrow/io/api.h | 25 + src/arrow/cpp/src/arrow/io/buffered.cc | 489 ++ src/arrow/cpp/src/arrow/io/buffered.h | 167 + src/arrow/cpp/src/arrow/io/buffered_test.cc | 667 ++ src/arrow/cpp/src/arrow/io/caching.cc | 318 + src/arrow/cpp/src/arrow/io/caching.h | 138 + src/arrow/cpp/src/arrow/io/compressed.cc | 450 ++ src/arrow/cpp/src/arrow/io/compressed.h | 118 + src/arrow/cpp/src/arrow/io/compressed_test.cc | 311 + src/arrow/cpp/src/arrow/io/concurrency.h | 263 + src/arrow/cpp/src/arrow/io/file.cc | 789 ++ src/arrow/cpp/src/arrow/io/file.h | 221 + src/arrow/cpp/src/arrow/io/file_benchmark.cc | 301 + src/arrow/cpp/src/arrow/io/file_test.cc | 1064 +++ src/arrow/cpp/src/arrow/io/hdfs.cc | 738 ++ src/arrow/cpp/src/arrow/io/hdfs.h | 284 + src/arrow/cpp/src/arrow/io/hdfs_internal.cc | 556 ++ src/arrow/cpp/src/arrow/io/hdfs_internal.h | 222 + src/arrow/cpp/src/arrow/io/hdfs_test.cc | 464 ++ src/arrow/cpp/src/arrow/io/interfaces.cc | 469 ++ src/arrow/cpp/src/arrow/io/interfaces.h | 340 + src/arrow/cpp/src/arrow/io/memory.cc | 388 + src/arrow/cpp/src/arrow/io/memory.h | 197 + src/arrow/cpp/src/arrow/io/memory_benchmark.cc | 359 + src/arrow/cpp/src/arrow/io/memory_test.cc | 883 +++ src/arrow/cpp/src/arrow/io/mman.h | 169 + src/arrow/cpp/src/arrow/io/slow.cc | 148 + src/arrow/cpp/src/arrow/io/slow.h | 118 + src/arrow/cpp/src/arrow/io/stdio.cc | 95 + src/arrow/cpp/src/arrow/io/stdio.h | 82 + src/arrow/cpp/src/arrow/io/test_common.cc | 121 + src/arrow/cpp/src/arrow/io/test_common.h | 58 + src/arrow/cpp/src/arrow/io/transform.cc | 162 + src/arrow/cpp/src/arrow/io/transform.h | 60 + src/arrow/cpp/src/arrow/io/type_fwd.h | 79 + src/arrow/cpp/src/arrow/io/util_internal.h | 66 + src/arrow/cpp/src/arrow/ipc/CMakeLists.txt | 87 + src/arrow/cpp/src/arrow/ipc/api.h | 25 + src/arrow/cpp/src/arrow/ipc/dictionary.cc | 412 + src/arrow/cpp/src/arrow/ipc/dictionary.h | 177 + src/arrow/cpp/src/arrow/ipc/feather.cc | 819 ++ src/arrow/cpp/src/arrow/ipc/feather.fbs | 156 + src/arrow/cpp/src/arrow/ipc/feather.h | 140 + src/arrow/cpp/src/arrow/ipc/feather_test.cc | 373 + src/arrow/cpp/src/arrow/ipc/file_fuzz.cc | 28 + src/arrow/cpp/src/arrow/ipc/file_to_stream.cc | 64 + .../cpp/src/arrow/ipc/generate_fuzz_corpus.cc | 161 + .../src/arrow/ipc/generate_tensor_fuzz_corpus.cc | 134 + src/arrow/cpp/src/arrow/ipc/json_simple.cc | 994 +++ src/arrow/cpp/src/arrow/ipc/json_simple.h | 66 + src/arrow/cpp/src/arrow/ipc/json_simple_test.cc | 1415 ++++ src/arrow/cpp/src/arrow/ipc/message.cc | 931 +++ src/arrow/cpp/src/arrow/ipc/message.h | 536 ++ src/arrow/cpp/src/arrow/ipc/metadata_internal.cc | 1497 ++++ src/arrow/cpp/src/arrow/ipc/metadata_internal.h | 228 + src/arrow/cpp/src/arrow/ipc/options.cc | 41 + src/arrow/cpp/src/arrow/ipc/options.h | 160 + .../cpp/src/arrow/ipc/read_write_benchmark.cc | 262 + src/arrow/cpp/src/arrow/ipc/read_write_test.cc | 2415 ++++++ src/arrow/cpp/src/arrow/ipc/reader.cc | 2095 +++++ src/arrow/cpp/src/arrow/ipc/reader.h | 536 ++ src/arrow/cpp/src/arrow/ipc/stream_fuzz.cc | 28 + src/arrow/cpp/src/arrow/ipc/stream_to_file.cc | 60 + src/arrow/cpp/src/arrow/ipc/tensor_stream_fuzz.cc | 29 + src/arrow/cpp/src/arrow/ipc/tensor_test.cc | 506 ++ src/arrow/cpp/src/arrow/ipc/test_common.cc | 1125 +++ src/arrow/cpp/src/arrow/ipc/test_common.h | 175 + src/arrow/cpp/src/arrow/ipc/type_fwd.h | 65 + src/arrow/cpp/src/arrow/ipc/util.h | 41 + src/arrow/cpp/src/arrow/ipc/writer.cc | 1429 ++++ src/arrow/cpp/src/arrow/ipc/writer.h | 459 ++ src/arrow/cpp/src/arrow/json/CMakeLists.txt | 32 + src/arrow/cpp/src/arrow/json/api.h | 21 + src/arrow/cpp/src/arrow/json/arrow-json.pc.in | 24 + src/arrow/cpp/src/arrow/json/chunked_builder.cc | 470 ++ src/arrow/cpp/src/arrow/json/chunked_builder.h | 68 + .../cpp/src/arrow/json/chunked_builder_test.cc | 450 ++ src/arrow/cpp/src/arrow/json/chunker.cc | 186 + src/arrow/cpp/src/arrow/json/chunker.h | 35 + src/arrow/cpp/src/arrow/json/chunker_test.cc | 276 + src/arrow/cpp/src/arrow/json/converter.cc | 362 + src/arrow/cpp/src/arrow/json/converter.h | 94 + src/arrow/cpp/src/arrow/json/converter_test.cc | 214 + src/arrow/cpp/src/arrow/json/object_parser.cc | 83 + src/arrow/cpp/src/arrow/json/object_parser.h | 49 + src/arrow/cpp/src/arrow/json/object_writer.cc | 82 + src/arrow/cpp/src/arrow/json/object_writer.h | 48 + src/arrow/cpp/src/arrow/json/options.cc | 28 + src/arrow/cpp/src/arrow/json/options.h | 74 + src/arrow/cpp/src/arrow/json/parser.cc | 1107 +++ src/arrow/cpp/src/arrow/json/parser.h | 101 + src/arrow/cpp/src/arrow/json/parser_benchmark.cc | 164 + src/arrow/cpp/src/arrow/json/parser_test.cc | 265 + src/arrow/cpp/src/arrow/json/rapidjson_defs.h | 43 + src/arrow/cpp/src/arrow/json/reader.cc | 218 + src/arrow/cpp/src/arrow/json/reader.h | 64 + src/arrow/cpp/src/arrow/json/reader_test.cc | 278 + src/arrow/cpp/src/arrow/json/test_common.h | 260 + src/arrow/cpp/src/arrow/json/type_fwd.h | 26 + src/arrow/cpp/src/arrow/memory_pool.cc | 797 ++ src/arrow/cpp/src/arrow/memory_pool.h | 185 + src/arrow/cpp/src/arrow/memory_pool_benchmark.cc | 129 + src/arrow/cpp/src/arrow/memory_pool_test.cc | 174 + src/arrow/cpp/src/arrow/memory_pool_test.h | 92 + src/arrow/cpp/src/arrow/pch.h | 30 + src/arrow/cpp/src/arrow/pretty_print.cc | 646 ++ src/arrow/cpp/src/arrow/pretty_print.h | 125 + src/arrow/cpp/src/arrow/pretty_print_test.cc | 1081 +++ src/arrow/cpp/src/arrow/public_api_test.cc | 93 + .../src/arrow/python/ArrowPythonConfig.cmake.in | 36 + .../arrow/python/ArrowPythonFlightConfig.cmake.in | 37 + src/arrow/cpp/src/arrow/python/CMakeLists.txt | 184 + src/arrow/cpp/src/arrow/python/api.h | 30 + .../cpp/src/arrow/python/arrow-python-flight.pc.in | 25 + src/arrow/cpp/src/arrow/python/arrow-python.pc.in | 26 + src/arrow/cpp/src/arrow/python/arrow_to_pandas.cc | 2322 ++++++ src/arrow/cpp/src/arrow/python/arrow_to_pandas.h | 124 + .../src/arrow/python/arrow_to_python_internal.h | 49 + src/arrow/cpp/src/arrow/python/benchmark.cc | 38 + src/arrow/cpp/src/arrow/python/benchmark.h | 36 + src/arrow/cpp/src/arrow/python/common.cc | 203 + src/arrow/cpp/src/arrow/python/common.h | 360 + src/arrow/cpp/src/arrow/python/datetime.cc | 566 ++ src/arrow/cpp/src/arrow/python/datetime.h | 211 + src/arrow/cpp/src/arrow/python/decimal.cc | 246 + src/arrow/cpp/src/arrow/python/decimal.h | 128 + src/arrow/cpp/src/arrow/python/deserialize.cc | 495 ++ src/arrow/cpp/src/arrow/python/deserialize.h | 106 + src/arrow/cpp/src/arrow/python/extension_type.cc | 217 + src/arrow/cpp/src/arrow/python/extension_type.h | 85 + src/arrow/cpp/src/arrow/python/filesystem.cc | 206 + src/arrow/cpp/src/arrow/python/filesystem.h | 126 + src/arrow/cpp/src/arrow/python/flight.cc | 408 + src/arrow/cpp/src/arrow/python/flight.h | 357 + src/arrow/cpp/src/arrow/python/helpers.cc | 470 ++ src/arrow/cpp/src/arrow/python/helpers.h | 159 + src/arrow/cpp/src/arrow/python/inference.cc | 723 ++ src/arrow/cpp/src/arrow/python/inference.h | 64 + src/arrow/cpp/src/arrow/python/init.cc | 24 + src/arrow/cpp/src/arrow/python/init.h | 26 + src/arrow/cpp/src/arrow/python/io.cc | 374 + src/arrow/cpp/src/arrow/python/io.h | 116 + src/arrow/cpp/src/arrow/python/ipc.cc | 67 + src/arrow/cpp/src/arrow/python/ipc.h | 52 + src/arrow/cpp/src/arrow/python/iterators.h | 194 + src/arrow/cpp/src/arrow/python/numpy_convert.cc | 562 ++ src/arrow/cpp/src/arrow/python/numpy_convert.h | 120 + src/arrow/cpp/src/arrow/python/numpy_internal.h | 182 + src/arrow/cpp/src/arrow/python/numpy_interop.h | 96 + src/arrow/cpp/src/arrow/python/numpy_to_arrow.cc | 865 ++ src/arrow/cpp/src/arrow/python/numpy_to_arrow.h | 72 + src/arrow/cpp/src/arrow/python/pch.h | 24 + src/arrow/cpp/src/arrow/python/platform.h | 36 + src/arrow/cpp/src/arrow/python/pyarrow.cc | 90 + src/arrow/cpp/src/arrow/python/pyarrow.h | 84 + src/arrow/cpp/src/arrow/python/pyarrow_api.h | 239 + src/arrow/cpp/src/arrow/python/pyarrow_lib.h | 82 + src/arrow/cpp/src/arrow/python/python_test.cc | 599 ++ src/arrow/cpp/src/arrow/python/python_to_arrow.cc | 1179 +++ src/arrow/cpp/src/arrow/python/python_to_arrow.h | 80 + src/arrow/cpp/src/arrow/python/serialize.cc | 798 ++ src/arrow/cpp/src/arrow/python/serialize.h | 145 + src/arrow/cpp/src/arrow/python/type_traits.h | 350 + src/arrow/cpp/src/arrow/python/util/CMakeLists.txt | 32 + src/arrow/cpp/src/arrow/python/util/test_main.cc | 41 + src/arrow/cpp/src/arrow/python/visibility.h | 39 + src/arrow/cpp/src/arrow/record_batch.cc | 367 + src/arrow/cpp/src/arrow/record_batch.h | 241 + src/arrow/cpp/src/arrow/record_batch_test.cc | 320 + src/arrow/cpp/src/arrow/result.cc | 36 + src/arrow/cpp/src/arrow/result.h | 512 ++ src/arrow/cpp/src/arrow/result_internal.h | 22 + src/arrow/cpp/src/arrow/result_test.cc | 799 ++ src/arrow/cpp/src/arrow/scalar.cc | 1008 +++ src/arrow/cpp/src/arrow/scalar.h | 636 ++ src/arrow/cpp/src/arrow/scalar_test.cc | 1629 ++++ src/arrow/cpp/src/arrow/sparse_tensor.cc | 478 ++ src/arrow/cpp/src/arrow/sparse_tensor.h | 617 ++ src/arrow/cpp/src/arrow/sparse_tensor_test.cc | 1678 ++++ src/arrow/cpp/src/arrow/status.cc | 143 + src/arrow/cpp/src/arrow/status.h | 451 ++ src/arrow/cpp/src/arrow/status_test.cc | 212 + src/arrow/cpp/src/arrow/stl.h | 466 ++ src/arrow/cpp/src/arrow/stl_allocator.h | 153 + src/arrow/cpp/src/arrow/stl_iterator.h | 146 + src/arrow/cpp/src/arrow/stl_iterator_test.cc | 252 + src/arrow/cpp/src/arrow/stl_test.cc | 558 ++ src/arrow/cpp/src/arrow/symbols.map | 38 + src/arrow/cpp/src/arrow/table.cc | 641 ++ src/arrow/cpp/src/arrow/table.h | 295 + src/arrow/cpp/src/arrow/table_builder.cc | 113 + src/arrow/cpp/src/arrow/table_builder.h | 110 + src/arrow/cpp/src/arrow/table_builder_test.cc | 182 + src/arrow/cpp/src/arrow/table_test.cc | 753 ++ src/arrow/cpp/src/arrow/tensor.cc | 342 + src/arrow/cpp/src/arrow/tensor.h | 246 + src/arrow/cpp/src/arrow/tensor/CMakeLists.txt | 25 + src/arrow/cpp/src/arrow/tensor/converter.h | 67 + .../cpp/src/arrow/tensor/converter_internal.h | 88 + src/arrow/cpp/src/arrow/tensor/coo_converter.cc | 333 + src/arrow/cpp/src/arrow/tensor/csf_converter.cc | 289 + src/arrow/cpp/src/arrow/tensor/csx_converter.cc | 241 + .../arrow/tensor/tensor_conversion_benchmark.cc | 230 + src/arrow/cpp/src/arrow/tensor_test.cc | 749 ++ src/arrow/cpp/src/arrow/testing/CMakeLists.txt | 37 + src/arrow/cpp/src/arrow/testing/async_test_util.h | 54 + src/arrow/cpp/src/arrow/testing/executor_util.h | 55 + src/arrow/cpp/src/arrow/testing/extension_type.h | 158 + src/arrow/cpp/src/arrow/testing/future_util.h | 142 + src/arrow/cpp/src/arrow/testing/generator.cc | 110 + src/arrow/cpp/src/arrow/testing/generator.h | 261 + src/arrow/cpp/src/arrow/testing/gtest_common.h | 128 + src/arrow/cpp/src/arrow/testing/gtest_compat.h | 33 + src/arrow/cpp/src/arrow/testing/gtest_util.cc | 1006 +++ src/arrow/cpp/src/arrow/testing/gtest_util.h | 691 ++ .../cpp/src/arrow/testing/json_integration.cc | 219 + src/arrow/cpp/src/arrow/testing/json_integration.h | 129 + .../cpp/src/arrow/testing/json_integration_test.cc | 1188 +++ src/arrow/cpp/src/arrow/testing/json_internal.cc | 1804 +++++ src/arrow/cpp/src/arrow/testing/json_internal.h | 126 + src/arrow/cpp/src/arrow/testing/matchers.h | 237 + src/arrow/cpp/src/arrow/testing/pch.h | 26 + src/arrow/cpp/src/arrow/testing/random.cc | 949 +++ src/arrow/cpp/src/arrow/testing/random.h | 489 ++ src/arrow/cpp/src/arrow/testing/random_test.cc | 513 ++ src/arrow/cpp/src/arrow/testing/uniform_real.h | 84 + src/arrow/cpp/src/arrow/testing/util.cc | 188 + src/arrow/cpp/src/arrow/testing/util.h | 190 + src/arrow/cpp/src/arrow/testing/visibility.h | 48 + src/arrow/cpp/src/arrow/type.cc | 2428 ++++++ src/arrow/cpp/src/arrow/type.h | 2041 +++++ src/arrow/cpp/src/arrow/type_benchmark.cc | 439 ++ src/arrow/cpp/src/arrow/type_fwd.h | 631 ++ src/arrow/cpp/src/arrow/type_test.cc | 1792 +++++ src/arrow/cpp/src/arrow/type_traits.h | 1059 +++ src/arrow/cpp/src/arrow/util/CMakeLists.txt | 100 + src/arrow/cpp/src/arrow/util/algorithm.h | 33 + src/arrow/cpp/src/arrow/util/align_util.h | 68 + src/arrow/cpp/src/arrow/util/align_util_test.cc | 150 + src/arrow/cpp/src/arrow/util/aligned_storage.h | 127 + src/arrow/cpp/src/arrow/util/async_generator.h | 1804 +++++ .../cpp/src/arrow/util/async_generator_test.cc | 1842 +++++ src/arrow/cpp/src/arrow/util/async_util.cc | 206 + src/arrow/cpp/src/arrow/util/async_util.h | 258 + src/arrow/cpp/src/arrow/util/async_util_test.cc | 239 + src/arrow/cpp/src/arrow/util/atomic_shared_ptr.h | 111 + src/arrow/cpp/src/arrow/util/base64.h | 35 + src/arrow/cpp/src/arrow/util/basic_decimal.cc | 1381 ++++ src/arrow/cpp/src/arrow/util/basic_decimal.h | 494 ++ src/arrow/cpp/src/arrow/util/benchmark_main.cc | 24 + src/arrow/cpp/src/arrow/util/benchmark_util.h | 138 + src/arrow/cpp/src/arrow/util/bit_block_counter.cc | 74 + src/arrow/cpp/src/arrow/util/bit_block_counter.h | 542 ++ .../src/arrow/util/bit_block_counter_benchmark.cc | 266 + .../cpp/src/arrow/util/bit_block_counter_test.cc | 417 + src/arrow/cpp/src/arrow/util/bit_run_reader.cc | 54 + src/arrow/cpp/src/arrow/util/bit_run_reader.h | 515 ++ src/arrow/cpp/src/arrow/util/bit_stream_utils.h | 513 ++ src/arrow/cpp/src/arrow/util/bit_util.cc | 129 + src/arrow/cpp/src/arrow/util/bit_util.h | 354 + src/arrow/cpp/src/arrow/util/bit_util_benchmark.cc | 560 ++ src/arrow/cpp/src/arrow/util/bit_util_test.cc | 2330 ++++++ src/arrow/cpp/src/arrow/util/bitmap.cc | 75 + src/arrow/cpp/src/arrow/util/bitmap.h | 461 ++ src/arrow/cpp/src/arrow/util/bitmap_builders.cc | 72 + src/arrow/cpp/src/arrow/util/bitmap_builders.h | 43 + src/arrow/cpp/src/arrow/util/bitmap_generate.h | 111 + src/arrow/cpp/src/arrow/util/bitmap_ops.cc | 387 + src/arrow/cpp/src/arrow/util/bitmap_ops.h | 206 + src/arrow/cpp/src/arrow/util/bitmap_reader.h | 271 + .../cpp/src/arrow/util/bitmap_reader_benchmark.cc | 113 + src/arrow/cpp/src/arrow/util/bitmap_visit.h | 88 + src/arrow/cpp/src/arrow/util/bitmap_writer.h | 285 + src/arrow/cpp/src/arrow/util/bitset_stack.h | 89 + src/arrow/cpp/src/arrow/util/bpacking.cc | 396 + src/arrow/cpp/src/arrow/util/bpacking.h | 34 + src/arrow/cpp/src/arrow/util/bpacking64_codegen.py | 131 + src/arrow/cpp/src/arrow/util/bpacking64_default.h | 5642 ++++++++++++++ src/arrow/cpp/src/arrow/util/bpacking_avx2.cc | 31 + src/arrow/cpp/src/arrow/util/bpacking_avx2.h | 28 + src/arrow/cpp/src/arrow/util/bpacking_avx512.cc | 31 + src/arrow/cpp/src/arrow/util/bpacking_avx512.h | 28 + src/arrow/cpp/src/arrow/util/bpacking_default.h | 4251 ++++++++++ src/arrow/cpp/src/arrow/util/bpacking_neon.cc | 31 + src/arrow/cpp/src/arrow/util/bpacking_neon.h | 28 + .../src/arrow/util/bpacking_simd128_generated.h | 2144 +++++ .../src/arrow/util/bpacking_simd256_generated.h | 1271 +++ .../src/arrow/util/bpacking_simd512_generated.h | 837 ++ .../cpp/src/arrow/util/bpacking_simd_codegen.py | 223 + .../cpp/src/arrow/util/bpacking_simd_internal.h | 138 + src/arrow/cpp/src/arrow/util/byte_stream_split.h | 626 ++ src/arrow/cpp/src/arrow/util/cache_benchmark.cc | 146 + src/arrow/cpp/src/arrow/util/cache_internal.h | 210 + src/arrow/cpp/src/arrow/util/cache_test.cc | 290 + src/arrow/cpp/src/arrow/util/cancel.cc | 226 + src/arrow/cpp/src/arrow/util/cancel.h | 102 + src/arrow/cpp/src/arrow/util/cancel_test.cc | 308 + src/arrow/cpp/src/arrow/util/checked_cast.h | 61 + src/arrow/cpp/src/arrow/util/checked_cast_test.cc | 74 + src/arrow/cpp/src/arrow/util/compare.h | 62 + src/arrow/cpp/src/arrow/util/compression.cc | 261 + src/arrow/cpp/src/arrow/util/compression.h | 202 + .../cpp/src/arrow/util/compression_benchmark.cc | 201 + src/arrow/cpp/src/arrow/util/compression_brotli.cc | 245 + src/arrow/cpp/src/arrow/util/compression_bz2.cc | 287 + .../cpp/src/arrow/util/compression_internal.h | 80 + src/arrow/cpp/src/arrow/util/compression_lz4.cc | 495 ++ src/arrow/cpp/src/arrow/util/compression_snappy.cc | 102 + src/arrow/cpp/src/arrow/util/compression_test.cc | 635 ++ src/arrow/cpp/src/arrow/util/compression_zlib.cc | 507 ++ src/arrow/cpp/src/arrow/util/compression_zstd.cc | 249 + src/arrow/cpp/src/arrow/util/concurrent_map.h | 68 + src/arrow/cpp/src/arrow/util/config.h.cmake | 48 + src/arrow/cpp/src/arrow/util/converter.h | 411 + src/arrow/cpp/src/arrow/util/counting_semaphore.cc | 126 + src/arrow/cpp/src/arrow/util/counting_semaphore.h | 60 + .../cpp/src/arrow/util/counting_semaphore_test.cc | 98 + src/arrow/cpp/src/arrow/util/cpu_info.cc | 563 ++ src/arrow/cpp/src/arrow/util/cpu_info.h | 143 + src/arrow/cpp/src/arrow/util/decimal.cc | 908 +++ src/arrow/cpp/src/arrow/util/decimal.h | 314 + src/arrow/cpp/src/arrow/util/decimal_benchmark.cc | 282 + src/arrow/cpp/src/arrow/util/decimal_test.cc | 1939 +++++ src/arrow/cpp/src/arrow/util/delimiting.cc | 193 + src/arrow/cpp/src/arrow/util/delimiting.h | 181 + src/arrow/cpp/src/arrow/util/dispatch.h | 115 + src/arrow/cpp/src/arrow/util/double_conversion.h | 32 + src/arrow/cpp/src/arrow/util/endian.h | 245 + src/arrow/cpp/src/arrow/util/formatting.cc | 91 + src/arrow/cpp/src/arrow/util/formatting.h | 602 ++ .../cpp/src/arrow/util/formatting_util_test.cc | 468 ++ src/arrow/cpp/src/arrow/util/functional.h | 160 + src/arrow/cpp/src/arrow/util/future.cc | 437 ++ src/arrow/cpp/src/arrow/util/future.h | 978 +++ src/arrow/cpp/src/arrow/util/future_iterator.h | 75 + src/arrow/cpp/src/arrow/util/future_test.cc | 1803 +++++ src/arrow/cpp/src/arrow/util/hash_util.h | 66 + src/arrow/cpp/src/arrow/util/hashing.h | 886 +++ src/arrow/cpp/src/arrow/util/hashing_benchmark.cc | 123 + src/arrow/cpp/src/arrow/util/hashing_test.cc | 490 ++ src/arrow/cpp/src/arrow/util/int128_internal.h | 45 + src/arrow/cpp/src/arrow/util/int_util.cc | 952 +++ src/arrow/cpp/src/arrow/util/int_util.h | 117 + src/arrow/cpp/src/arrow/util/int_util_benchmark.cc | 143 + src/arrow/cpp/src/arrow/util/int_util_internal.h | 153 + src/arrow/cpp/src/arrow/util/int_util_test.cc | 597 ++ src/arrow/cpp/src/arrow/util/io_util.cc | 1685 ++++ src/arrow/cpp/src/arrow/util/io_util.h | 349 + src/arrow/cpp/src/arrow/util/io_util_test.cc | 713 ++ src/arrow/cpp/src/arrow/util/io_util_test.manifest | 39 + src/arrow/cpp/src/arrow/util/io_util_test.rc | 44 + src/arrow/cpp/src/arrow/util/iterator.h | 568 ++ src/arrow/cpp/src/arrow/util/iterator_test.cc | 465 ++ src/arrow/cpp/src/arrow/util/key_value_metadata.cc | 274 + src/arrow/cpp/src/arrow/util/key_value_metadata.h | 98 + .../cpp/src/arrow/util/key_value_metadata_test.cc | 211 + src/arrow/cpp/src/arrow/util/launder.h | 35 + src/arrow/cpp/src/arrow/util/logging.cc | 256 + src/arrow/cpp/src/arrow/util/logging.h | 259 + src/arrow/cpp/src/arrow/util/logging_test.cc | 103 + src/arrow/cpp/src/arrow/util/machine_benchmark.cc | 74 + src/arrow/cpp/src/arrow/util/macros.h | 225 + src/arrow/cpp/src/arrow/util/make_unique.h | 42 + src/arrow/cpp/src/arrow/util/map.h | 63 + src/arrow/cpp/src/arrow/util/math_constants.h | 32 + src/arrow/cpp/src/arrow/util/memory.cc | 74 + src/arrow/cpp/src/arrow/util/memory.h | 43 + src/arrow/cpp/src/arrow/util/mutex.cc | 54 + src/arrow/cpp/src/arrow/util/mutex.h | 64 + src/arrow/cpp/src/arrow/util/optional.h | 35 + src/arrow/cpp/src/arrow/util/parallel.h | 102 + src/arrow/cpp/src/arrow/util/pcg_random.h | 31 + src/arrow/cpp/src/arrow/util/print.h | 51 + src/arrow/cpp/src/arrow/util/queue.h | 29 + src/arrow/cpp/src/arrow/util/queue_benchmark.cc | 85 + src/arrow/cpp/src/arrow/util/queue_test.cc | 55 + src/arrow/cpp/src/arrow/util/range.h | 155 + src/arrow/cpp/src/arrow/util/range_benchmark.cc | 128 + src/arrow/cpp/src/arrow/util/range_test.cc | 69 + src/arrow/cpp/src/arrow/util/reflection_internal.h | 133 + src/arrow/cpp/src/arrow/util/reflection_test.cc | 224 + src/arrow/cpp/src/arrow/util/rle_encoding.h | 826 ++ src/arrow/cpp/src/arrow/util/rle_encoding_test.cc | 573 ++ src/arrow/cpp/src/arrow/util/simd.h | 50 + src/arrow/cpp/src/arrow/util/small_vector.h | 519 ++ .../cpp/src/arrow/util/small_vector_benchmark.cc | 344 + src/arrow/cpp/src/arrow/util/small_vector_test.cc | 786 ++ src/arrow/cpp/src/arrow/util/sort.h | 78 + src/arrow/cpp/src/arrow/util/spaced.h | 98 + src/arrow/cpp/src/arrow/util/stl_util_test.cc | 172 + src/arrow/cpp/src/arrow/util/stopwatch.h | 48 + src/arrow/cpp/src/arrow/util/string.cc | 191 + src/arrow/cpp/src/arrow/util/string.h | 79 + src/arrow/cpp/src/arrow/util/string_builder.cc | 40 + src/arrow/cpp/src/arrow/util/string_builder.h | 84 + src/arrow/cpp/src/arrow/util/string_test.cc | 144 + src/arrow/cpp/src/arrow/util/string_view.h | 38 + src/arrow/cpp/src/arrow/util/task_group.cc | 224 + src/arrow/cpp/src/arrow/util/task_group.h | 106 + src/arrow/cpp/src/arrow/util/task_group_test.cc | 444 ++ src/arrow/cpp/src/arrow/util/tdigest.cc | 420 + src/arrow/cpp/src/arrow/util/tdigest.h | 104 + src/arrow/cpp/src/arrow/util/tdigest_benchmark.cc | 48 + src/arrow/cpp/src/arrow/util/tdigest_test.cc | 290 + src/arrow/cpp/src/arrow/util/test_common.cc | 68 + src/arrow/cpp/src/arrow/util/test_common.h | 90 + src/arrow/cpp/src/arrow/util/thread_pool.cc | 450 ++ src/arrow/cpp/src/arrow/util/thread_pool.h | 403 + .../cpp/src/arrow/util/thread_pool_benchmark.cc | 248 + src/arrow/cpp/src/arrow/util/thread_pool_test.cc | 718 ++ src/arrow/cpp/src/arrow/util/time.cc | 68 + src/arrow/cpp/src/arrow/util/time.h | 83 + src/arrow/cpp/src/arrow/util/time_test.cc | 63 + src/arrow/cpp/src/arrow/util/trie.cc | 211 + src/arrow/cpp/src/arrow/util/trie.h | 245 + src/arrow/cpp/src/arrow/util/trie_benchmark.cc | 222 + src/arrow/cpp/src/arrow/util/trie_test.cc | 305 + src/arrow/cpp/src/arrow/util/type_fwd.h | 62 + src/arrow/cpp/src/arrow/util/type_traits.h | 86 + src/arrow/cpp/src/arrow/util/ubsan.h | 88 + src/arrow/cpp/src/arrow/util/unreachable.cc | 29 + src/arrow/cpp/src/arrow/util/unreachable.h | 24 + src/arrow/cpp/src/arrow/util/uri.cc | 292 + src/arrow/cpp/src/arrow/util/uri.h | 104 + src/arrow/cpp/src/arrow/util/uri_test.cc | 312 + src/arrow/cpp/src/arrow/util/utf8.cc | 160 + src/arrow/cpp/src/arrow/util/utf8.h | 566 ++ .../cpp/src/arrow/util/utf8_util_benchmark.cc | 150 + src/arrow/cpp/src/arrow/util/utf8_util_test.cc | 513 ++ src/arrow/cpp/src/arrow/util/value_parsing.cc | 87 + src/arrow/cpp/src/arrow/util/value_parsing.h | 853 ++ .../cpp/src/arrow/util/value_parsing_benchmark.cc | 303 + src/arrow/cpp/src/arrow/util/value_parsing_test.cc | 643 ++ src/arrow/cpp/src/arrow/util/variant.h | 443 ++ src/arrow/cpp/src/arrow/util/variant_benchmark.cc | 248 + src/arrow/cpp/src/arrow/util/variant_test.cc | 345 + src/arrow/cpp/src/arrow/util/vector.h | 172 + src/arrow/cpp/src/arrow/util/visibility.h | 45 + .../cpp/src/arrow/util/windows_compatibility.h | 42 + src/arrow/cpp/src/arrow/util/windows_fixup.h | 52 + src/arrow/cpp/src/arrow/vendored/CMakeLists.txt | 21 + .../cpp/src/arrow/vendored/ProducerConsumerQueue.h | 217 + src/arrow/cpp/src/arrow/vendored/base64.cpp | 134 + src/arrow/cpp/src/arrow/vendored/datetime.h | 26 + .../cpp/src/arrow/vendored/datetime/CMakeLists.txt | 18 + .../cpp/src/arrow/vendored/datetime/README.md | 28 + src/arrow/cpp/src/arrow/vendored/datetime/date.h | 8237 ++++++++++++++++++++ src/arrow/cpp/src/arrow/vendored/datetime/ios.h | 53 + src/arrow/cpp/src/arrow/vendored/datetime/ios.mm | 340 + src/arrow/cpp/src/arrow/vendored/datetime/tz.cpp | 3951 ++++++++++ src/arrow/cpp/src/arrow/vendored/datetime/tz.h | 2801 +++++++ .../cpp/src/arrow/vendored/datetime/tz_private.h | 319 + .../cpp/src/arrow/vendored/datetime/visibility.h | 26 + .../arrow/vendored/double-conversion/.gitignore | 1 + .../vendored/double-conversion/CMakeLists.txt | 18 + .../src/arrow/vendored/double-conversion/README.md | 20 + .../vendored/double-conversion/bignum-dtoa.cc | 641 ++ .../arrow/vendored/double-conversion/bignum-dtoa.h | 84 + .../src/arrow/vendored/double-conversion/bignum.cc | 767 ++ .../src/arrow/vendored/double-conversion/bignum.h | 144 + .../vendored/double-conversion/cached-powers.cc | 175 + .../vendored/double-conversion/cached-powers.h | 64 + .../src/arrow/vendored/double-conversion/diy-fp.cc | 57 + .../src/arrow/vendored/double-conversion/diy-fp.h | 118 + .../double-conversion/double-conversion.cc | 1171 +++ .../vendored/double-conversion/double-conversion.h | 587 ++ .../arrow/vendored/double-conversion/fast-dtoa.cc | 665 ++ .../arrow/vendored/double-conversion/fast-dtoa.h | 88 + .../arrow/vendored/double-conversion/fixed-dtoa.cc | 405 + .../arrow/vendored/double-conversion/fixed-dtoa.h | 56 + .../src/arrow/vendored/double-conversion/ieee.h | 402 + .../src/arrow/vendored/double-conversion/strtod.cc | 580 ++ .../src/arrow/vendored/double-conversion/strtod.h | 45 + .../src/arrow/vendored/double-conversion/utils.h | 367 + .../cpp/src/arrow/vendored/fast_float/README.md | 7 + .../src/arrow/vendored/fast_float/ascii_number.h | 301 + .../arrow/vendored/fast_float/decimal_to_binary.h | 176 + .../cpp/src/arrow/vendored/fast_float/fast_float.h | 48 + .../cpp/src/arrow/vendored/fast_float/fast_table.h | 691 ++ .../src/arrow/vendored/fast_float/float_common.h | 345 + .../src/arrow/vendored/fast_float/parse_number.h | 133 + .../fast_float/simple_decimal_conversion.h | 362 + src/arrow/cpp/src/arrow/vendored/musl/README.md | 25 + src/arrow/cpp/src/arrow/vendored/musl/strptime.c | 237 + src/arrow/cpp/src/arrow/vendored/optional.hpp | 1553 ++++ src/arrow/cpp/src/arrow/vendored/pcg/README.md | 26 + .../cpp/src/arrow/vendored/pcg/pcg_extras.hpp | 670 ++ .../cpp/src/arrow/vendored/pcg/pcg_random.hpp | 1954 +++++ .../cpp/src/arrow/vendored/pcg/pcg_uint128.hpp | 1008 +++ .../src/arrow/vendored/portable-snippets/README.md | 10 + .../arrow/vendored/portable-snippets/safe-math.h | 1072 +++ src/arrow/cpp/src/arrow/vendored/string_view.hpp | 1531 ++++ src/arrow/cpp/src/arrow/vendored/strptime.h | 35 + .../cpp/src/arrow/vendored/uriparser/README.md | 25 + src/arrow/cpp/src/arrow/vendored/uriparser/Uri.h | 1090 +++ .../cpp/src/arrow/vendored/uriparser/UriBase.h | 377 + .../cpp/src/arrow/vendored/uriparser/UriCommon.c | 572 ++ .../cpp/src/arrow/vendored/uriparser/UriCommon.h | 109 + .../cpp/src/arrow/vendored/uriparser/UriCompare.c | 168 + .../cpp/src/arrow/vendored/uriparser/UriDefsAnsi.h | 82 + .../src/arrow/vendored/uriparser/UriDefsConfig.h | 102 + .../src/arrow/vendored/uriparser/UriDefsUnicode.h | 82 + .../cpp/src/arrow/vendored/uriparser/UriEscape.c | 453 ++ .../cpp/src/arrow/vendored/uriparser/UriFile.c | 242 + .../cpp/src/arrow/vendored/uriparser/UriIp4.c | 329 + .../cpp/src/arrow/vendored/uriparser/UriIp4.h | 110 + .../cpp/src/arrow/vendored/uriparser/UriIp4Base.c | 96 + .../cpp/src/arrow/vendored/uriparser/UriIp4Base.h | 59 + .../cpp/src/arrow/vendored/uriparser/UriMemory.c | 468 ++ .../cpp/src/arrow/vendored/uriparser/UriMemory.h | 78 + .../src/arrow/vendored/uriparser/UriNormalize.c | 771 ++ .../arrow/vendored/uriparser/UriNormalizeBase.c | 119 + .../arrow/vendored/uriparser/UriNormalizeBase.h | 53 + .../cpp/src/arrow/vendored/uriparser/UriParse.c | 2410 ++++++ .../src/arrow/vendored/uriparser/UriParseBase.c | 90 + .../src/arrow/vendored/uriparser/UriParseBase.h | 55 + .../cpp/src/arrow/vendored/uriparser/UriQuery.c | 501 ++ .../src/arrow/vendored/uriparser/UriRecompose.c | 577 ++ .../cpp/src/arrow/vendored/uriparser/UriResolve.c | 329 + .../cpp/src/arrow/vendored/uriparser/UriShorten.c | 324 + .../cpp/src/arrow/vendored/uriparser/config.h | 47 + src/arrow/cpp/src/arrow/vendored/utfcpp/README.md | 28 + src/arrow/cpp/src/arrow/vendored/utfcpp/checked.h | 333 + src/arrow/cpp/src/arrow/vendored/utfcpp/core.h | 338 + src/arrow/cpp/src/arrow/vendored/utfcpp/cpp11.h | 103 + src/arrow/cpp/src/arrow/vendored/xxhash.h | 18 + src/arrow/cpp/src/arrow/vendored/xxhash/README.md | 22 + src/arrow/cpp/src/arrow/vendored/xxhash/xxhash.c | 43 + src/arrow/cpp/src/arrow/vendored/xxhash/xxhash.h | 4769 ++++++++++++ src/arrow/cpp/src/arrow/visitor.cc | 172 + src/arrow/cpp/src/arrow/visitor.h | 155 + src/arrow/cpp/src/arrow/visitor_inline.h | 450 ++ src/arrow/cpp/src/gandiva/CMakeLists.txt | 253 + src/arrow/cpp/src/gandiva/GandivaConfig.cmake.in | 36 + src/arrow/cpp/src/gandiva/annotator.cc | 118 + src/arrow/cpp/src/gandiva/annotator.h | 81 + src/arrow/cpp/src/gandiva/annotator_test.cc | 102 + src/arrow/cpp/src/gandiva/arrow.h | 57 + src/arrow/cpp/src/gandiva/basic_decimal_scalar.h | 65 + src/arrow/cpp/src/gandiva/bitmap_accumulator.cc | 75 + src/arrow/cpp/src/gandiva/bitmap_accumulator.h | 79 + .../cpp/src/gandiva/bitmap_accumulator_test.cc | 112 + src/arrow/cpp/src/gandiva/cache.cc | 45 + src/arrow/cpp/src/gandiva/cache.h | 60 + src/arrow/cpp/src/gandiva/cast_time.cc | 85 + src/arrow/cpp/src/gandiva/compiled_expr.h | 71 + src/arrow/cpp/src/gandiva/condition.h | 37 + src/arrow/cpp/src/gandiva/configuration.cc | 43 + src/arrow/cpp/src/gandiva/configuration.h | 84 + src/arrow/cpp/src/gandiva/context_helper.cc | 76 + src/arrow/cpp/src/gandiva/date_utils.cc | 232 + src/arrow/cpp/src/gandiva/date_utils.h | 52 + src/arrow/cpp/src/gandiva/decimal_ir.cc | 559 ++ src/arrow/cpp/src/gandiva/decimal_ir.h | 188 + src/arrow/cpp/src/gandiva/decimal_scalar.h | 76 + src/arrow/cpp/src/gandiva/decimal_type_util.cc | 75 + src/arrow/cpp/src/gandiva/decimal_type_util.h | 83 + .../cpp/src/gandiva/decimal_type_util_test.cc | 58 + src/arrow/cpp/src/gandiva/decimal_xlarge.cc | 284 + src/arrow/cpp/src/gandiva/decimal_xlarge.h | 41 + src/arrow/cpp/src/gandiva/dex.h | 396 + src/arrow/cpp/src/gandiva/dex_visitor.h | 97 + src/arrow/cpp/src/gandiva/engine.cc | 338 + src/arrow/cpp/src/gandiva/engine.h | 104 + src/arrow/cpp/src/gandiva/engine_llvm_test.cc | 131 + src/arrow/cpp/src/gandiva/eval_batch.h | 107 + src/arrow/cpp/src/gandiva/execution_context.h | 54 + src/arrow/cpp/src/gandiva/exported_funcs.h | 59 + .../cpp/src/gandiva/exported_funcs_registry.cc | 30 + .../cpp/src/gandiva/exported_funcs_registry.h | 54 + src/arrow/cpp/src/gandiva/expr_decomposer.cc | 310 + src/arrow/cpp/src/gandiva/expr_decomposer.h | 128 + src/arrow/cpp/src/gandiva/expr_decomposer_test.cc | 409 + src/arrow/cpp/src/gandiva/expr_validator.cc | 193 + src/arrow/cpp/src/gandiva/expr_validator.h | 80 + src/arrow/cpp/src/gandiva/expression.cc | 25 + src/arrow/cpp/src/gandiva/expression.h | 46 + src/arrow/cpp/src/gandiva/expression_registry.cc | 187 + src/arrow/cpp/src/gandiva/expression_registry.h | 71 + .../cpp/src/gandiva/expression_registry_test.cc | 68 + src/arrow/cpp/src/gandiva/field_descriptor.h | 69 + src/arrow/cpp/src/gandiva/filter.cc | 171 + src/arrow/cpp/src/gandiva/filter.h | 112 + src/arrow/cpp/src/gandiva/formatting_utils.h | 69 + src/arrow/cpp/src/gandiva/func_descriptor.h | 50 + src/arrow/cpp/src/gandiva/function_holder.h | 34 + .../cpp/src/gandiva/function_holder_registry.h | 76 + src/arrow/cpp/src/gandiva/function_ir_builder.cc | 81 + src/arrow/cpp/src/gandiva/function_ir_builder.h | 61 + src/arrow/cpp/src/gandiva/function_registry.cc | 83 + src/arrow/cpp/src/gandiva/function_registry.h | 47 + .../src/gandiva/function_registry_arithmetic.cc | 125 + .../cpp/src/gandiva/function_registry_arithmetic.h | 27 + .../cpp/src/gandiva/function_registry_common.h | 268 + .../cpp/src/gandiva/function_registry_datetime.cc | 132 + .../cpp/src/gandiva/function_registry_datetime.h | 27 + .../cpp/src/gandiva/function_registry_hash.cc | 63 + src/arrow/cpp/src/gandiva/function_registry_hash.h | 27 + .../cpp/src/gandiva/function_registry_math_ops.cc | 106 + .../cpp/src/gandiva/function_registry_math_ops.h | 27 + .../cpp/src/gandiva/function_registry_string.cc | 422 + .../cpp/src/gandiva/function_registry_string.h | 27 + .../cpp/src/gandiva/function_registry_test.cc | 96 + .../function_registry_timestamp_arithmetic.cc | 89 + .../function_registry_timestamp_arithmetic.h | 27 + src/arrow/cpp/src/gandiva/function_signature.cc | 113 + src/arrow/cpp/src/gandiva/function_signature.h | 55 + .../cpp/src/gandiva/function_signature_test.cc | 113 + src/arrow/cpp/src/gandiva/gandiva.pc.in | 27 + src/arrow/cpp/src/gandiva/gandiva_aliases.h | 62 + src/arrow/cpp/src/gandiva/gdv_function_stubs.cc | 1603 ++++ src/arrow/cpp/src/gandiva/gdv_function_stubs.h | 173 + .../cpp/src/gandiva/gdv_function_stubs_test.cc | 769 ++ src/arrow/cpp/src/gandiva/greedy_dual_size_cache.h | 154 + .../cpp/src/gandiva/greedy_dual_size_cache_test.cc | 88 + src/arrow/cpp/src/gandiva/hash_utils.cc | 134 + src/arrow/cpp/src/gandiva/hash_utils.h | 44 + src/arrow/cpp/src/gandiva/hash_utils_test.cc | 164 + src/arrow/cpp/src/gandiva/in_holder.h | 91 + src/arrow/cpp/src/gandiva/jni/CMakeLists.txt | 107 + src/arrow/cpp/src/gandiva/jni/config_builder.cc | 53 + src/arrow/cpp/src/gandiva/jni/config_holder.cc | 30 + src/arrow/cpp/src/gandiva/jni/config_holder.h | 68 + src/arrow/cpp/src/gandiva/jni/env_helper.h | 23 + .../src/gandiva/jni/expression_registry_helper.cc | 190 + src/arrow/cpp/src/gandiva/jni/id_to_module_map.h | 66 + src/arrow/cpp/src/gandiva/jni/jni_common.cc | 1055 +++ src/arrow/cpp/src/gandiva/jni/module_holder.h | 59 + src/arrow/cpp/src/gandiva/jni/symbols.map | 20 + src/arrow/cpp/src/gandiva/like_holder.cc | 156 + src/arrow/cpp/src/gandiva/like_holder.h | 68 + src/arrow/cpp/src/gandiva/like_holder_test.cc | 281 + src/arrow/cpp/src/gandiva/literal_holder.cc | 45 + src/arrow/cpp/src/gandiva/literal_holder.h | 36 + src/arrow/cpp/src/gandiva/llvm_generator.cc | 1400 ++++ src/arrow/cpp/src/gandiva/llvm_generator.h | 253 + src/arrow/cpp/src/gandiva/llvm_generator_test.cc | 116 + src/arrow/cpp/src/gandiva/llvm_includes.h | 56 + src/arrow/cpp/src/gandiva/llvm_types.cc | 48 + src/arrow/cpp/src/gandiva/llvm_types.h | 130 + src/arrow/cpp/src/gandiva/llvm_types_test.cc | 61 + src/arrow/cpp/src/gandiva/local_bitmaps_holder.h | 85 + src/arrow/cpp/src/gandiva/lvalue.h | 77 + .../cpp/src/gandiva/make_precompiled_bitcode.py | 49 + src/arrow/cpp/src/gandiva/native_function.h | 81 + src/arrow/cpp/src/gandiva/node.h | 299 + src/arrow/cpp/src/gandiva/node_visitor.h | 56 + src/arrow/cpp/src/gandiva/pch.h | 24 + .../cpp/src/gandiva/precompiled/CMakeLists.txt | 142 + .../cpp/src/gandiva/precompiled/arithmetic_ops.cc | 274 + .../src/gandiva/precompiled/arithmetic_ops_test.cc | 180 + src/arrow/cpp/src/gandiva/precompiled/bitmap.cc | 60 + .../cpp/src/gandiva/precompiled/bitmap_test.cc | 62 + .../cpp/src/gandiva/precompiled/decimal_ops.cc | 723 ++ .../cpp/src/gandiva/precompiled/decimal_ops.h | 90 + .../src/gandiva/precompiled/decimal_ops_test.cc | 1095 +++ .../cpp/src/gandiva/precompiled/decimal_wrapper.cc | 433 + .../cpp/src/gandiva/precompiled/epoch_time_point.h | 118 + .../gandiva/precompiled/epoch_time_point_test.cc | 103 + .../src/gandiva/precompiled/extended_math_ops.cc | 410 + .../gandiva/precompiled/extended_math_ops_test.cc | 349 + src/arrow/cpp/src/gandiva/precompiled/hash.cc | 407 + src/arrow/cpp/src/gandiva/precompiled/hash_test.cc | 122 + src/arrow/cpp/src/gandiva/precompiled/print.cc | 28 + .../cpp/src/gandiva/precompiled/string_ops.cc | 2198 ++++++ .../cpp/src/gandiva/precompiled/string_ops_test.cc | 1758 +++++ src/arrow/cpp/src/gandiva/precompiled/testing.h | 43 + src/arrow/cpp/src/gandiva/precompiled/time.cc | 894 +++ .../cpp/src/gandiva/precompiled/time_constants.h | 30 + .../cpp/src/gandiva/precompiled/time_fields.h | 35 + src/arrow/cpp/src/gandiva/precompiled/time_test.cc | 953 +++ .../gandiva/precompiled/timestamp_arithmetic.cc | 283 + src/arrow/cpp/src/gandiva/precompiled/types.h | 592 ++ .../cpp/src/gandiva/precompiled_bitcode.cc.in | 26 + src/arrow/cpp/src/gandiva/projector.cc | 369 + src/arrow/cpp/src/gandiva/projector.h | 143 + src/arrow/cpp/src/gandiva/proto/Types.proto | 255 + .../cpp/src/gandiva/random_generator_holder.cc | 45 + .../cpp/src/gandiva/random_generator_holder.h | 57 + .../src/gandiva/random_generator_holder_test.cc | 103 + src/arrow/cpp/src/gandiva/regex_util.cc | 63 + src/arrow/cpp/src/gandiva/regex_util.h | 45 + src/arrow/cpp/src/gandiva/replace_holder.cc | 65 + src/arrow/cpp/src/gandiva/replace_holder.h | 97 + src/arrow/cpp/src/gandiva/replace_holder_test.cc | 129 + src/arrow/cpp/src/gandiva/selection_vector.cc | 179 + src/arrow/cpp/src/gandiva/selection_vector.h | 151 + src/arrow/cpp/src/gandiva/selection_vector_impl.h | 108 + src/arrow/cpp/src/gandiva/selection_vector_test.cc | 270 + src/arrow/cpp/src/gandiva/simple_arena.h | 160 + src/arrow/cpp/src/gandiva/simple_arena_test.cc | 102 + src/arrow/cpp/src/gandiva/symbols.map | 35 + src/arrow/cpp/src/gandiva/tests/CMakeLists.txt | 42 + src/arrow/cpp/src/gandiva/tests/binary_test.cc | 136 + .../cpp/src/gandiva/tests/boolean_expr_test.cc | 388 + src/arrow/cpp/src/gandiva/tests/date_time_test.cc | 602 ++ .../cpp/src/gandiva/tests/decimal_single_test.cc | 305 + src/arrow/cpp/src/gandiva/tests/decimal_test.cc | 1194 +++ .../cpp/src/gandiva/tests/filter_project_test.cc | 276 + src/arrow/cpp/src/gandiva/tests/filter_test.cc | 340 + src/arrow/cpp/src/gandiva/tests/generate_data.h | 152 + src/arrow/cpp/src/gandiva/tests/hash_test.cc | 615 ++ src/arrow/cpp/src/gandiva/tests/huge_table_test.cc | 157 + src/arrow/cpp/src/gandiva/tests/if_expr_test.cc | 378 + src/arrow/cpp/src/gandiva/tests/in_expr_test.cc | 278 + src/arrow/cpp/src/gandiva/tests/literal_test.cc | 232 + .../cpp/src/gandiva/tests/micro_benchmarks.cc | 456 ++ .../cpp/src/gandiva/tests/null_validity_test.cc | 175 + .../tests/projector_build_validation_test.cc | 287 + src/arrow/cpp/src/gandiva/tests/projector_test.cc | 1609 ++++ src/arrow/cpp/src/gandiva/tests/test_util.h | 103 + src/arrow/cpp/src/gandiva/tests/timed_evaluate.h | 136 + src/arrow/cpp/src/gandiva/tests/to_string_test.cc | 88 + src/arrow/cpp/src/gandiva/tests/utf8_test.cc | 751 ++ src/arrow/cpp/src/gandiva/to_date_holder.cc | 116 + src/arrow/cpp/src/gandiva/to_date_holder.h | 58 + src/arrow/cpp/src/gandiva/to_date_holder_test.cc | 152 + src/arrow/cpp/src/gandiva/tree_expr_builder.cc | 223 + src/arrow/cpp/src/gandiva/tree_expr_builder.h | 139 + src/arrow/cpp/src/gandiva/tree_expr_test.cc | 159 + src/arrow/cpp/src/gandiva/value_validity_pair.h | 48 + src/arrow/cpp/src/gandiva/visibility.h | 48 + src/arrow/cpp/src/generated/Expression_generated.h | 1870 +++++ src/arrow/cpp/src/generated/File_generated.h | 200 + src/arrow/cpp/src/generated/Literal_generated.h | 2037 +++++ src/arrow/cpp/src/generated/Message_generated.h | 659 ++ src/arrow/cpp/src/generated/Plan_generated.h | 115 + src/arrow/cpp/src/generated/Relation_generated.h | 1647 ++++ src/arrow/cpp/src/generated/Schema_generated.h | 2367 ++++++ .../cpp/src/generated/SparseTensor_generated.h | 921 +++ src/arrow/cpp/src/generated/Tensor_generated.h | 387 + src/arrow/cpp/src/generated/feather_generated.h | 863 ++ src/arrow/cpp/src/generated/parquet_constants.cpp | 17 + src/arrow/cpp/src/generated/parquet_constants.h | 24 + src/arrow/cpp/src/generated/parquet_types.cpp | 7413 ++++++++++++++++++ src/arrow/cpp/src/generated/parquet_types.h | 2917 +++++++ src/arrow/cpp/src/jni/CMakeLists.txt | 27 + src/arrow/cpp/src/jni/dataset/CMakeLists.txt | 65 + src/arrow/cpp/src/jni/dataset/jni_util.cc | 242 + src/arrow/cpp/src/jni/dataset/jni_util.h | 135 + src/arrow/cpp/src/jni/dataset/jni_util_test.cc | 134 + src/arrow/cpp/src/jni/dataset/jni_wrapper.cc | 545 ++ src/arrow/cpp/src/jni/orc/CMakeLists.txt | 53 + src/arrow/cpp/src/jni/orc/concurrent_map.h | 77 + src/arrow/cpp/src/jni/orc/jni_wrapper.cpp | 306 + src/arrow/cpp/src/parquet/CMakeLists.txt | 414 + src/arrow/cpp/src/parquet/ParquetConfig.cmake.in | 43 + src/arrow/cpp/src/parquet/README | 10 + src/arrow/cpp/src/parquet/api/CMakeLists.txt | 19 + src/arrow/cpp/src/parquet/api/io.h | 20 + src/arrow/cpp/src/parquet/api/reader.h | 35 + src/arrow/cpp/src/parquet/api/schema.h | 21 + src/arrow/cpp/src/parquet/api/writer.h | 25 + src/arrow/cpp/src/parquet/arrow/CMakeLists.txt | 31 + .../src/parquet/arrow/arrow_reader_writer_test.cc | 4343 +++++++++++ .../cpp/src/parquet/arrow/arrow_schema_test.cc | 1701 ++++ .../cpp/src/parquet/arrow/arrow_statistics_test.cc | 161 + src/arrow/cpp/src/parquet/arrow/fuzz.cc | 25 + .../cpp/src/parquet/arrow/generate_fuzz_corpus.cc | 198 + src/arrow/cpp/src/parquet/arrow/path_internal.cc | 901 +++ src/arrow/cpp/src/parquet/arrow/path_internal.h | 155 + .../cpp/src/parquet/arrow/path_internal_test.cc | 648 ++ src/arrow/cpp/src/parquet/arrow/reader.cc | 1305 ++++ src/arrow/cpp/src/parquet/arrow/reader.h | 344 + src/arrow/cpp/src/parquet/arrow/reader_internal.cc | 791 ++ src/arrow/cpp/src/parquet/arrow/reader_internal.h | 122 + .../src/parquet/arrow/reader_writer_benchmark.cc | 585 ++ .../src/parquet/arrow/reconstruct_internal_test.cc | 1639 ++++ src/arrow/cpp/src/parquet/arrow/schema.cc | 1093 +++ src/arrow/cpp/src/parquet/arrow/schema.h | 184 + src/arrow/cpp/src/parquet/arrow/schema_internal.cc | 222 + src/arrow/cpp/src/parquet/arrow/schema_internal.h | 51 + src/arrow/cpp/src/parquet/arrow/test_util.h | 512 ++ src/arrow/cpp/src/parquet/arrow/writer.cc | 480 ++ src/arrow/cpp/src/parquet/arrow/writer.h | 109 + src/arrow/cpp/src/parquet/bloom_filter.cc | 162 + src/arrow/cpp/src/parquet/bloom_filter.h | 247 + src/arrow/cpp/src/parquet/bloom_filter_test.cc | 247 + src/arrow/cpp/src/parquet/column_io_benchmark.cc | 261 + src/arrow/cpp/src/parquet/column_page.h | 160 + src/arrow/cpp/src/parquet/column_reader.cc | 1808 +++++ src/arrow/cpp/src/parquet/column_reader.h | 376 + src/arrow/cpp/src/parquet/column_reader_test.cc | 476 ++ src/arrow/cpp/src/parquet/column_scanner.cc | 91 + src/arrow/cpp/src/parquet/column_scanner.h | 262 + src/arrow/cpp/src/parquet/column_scanner_test.cc | 229 + src/arrow/cpp/src/parquet/column_writer.cc | 2103 +++++ src/arrow/cpp/src/parquet/column_writer.h | 270 + src/arrow/cpp/src/parquet/column_writer_test.cc | 1019 +++ src/arrow/cpp/src/parquet/encoding.cc | 2597 ++++++ src/arrow/cpp/src/parquet/encoding.h | 460 ++ src/arrow/cpp/src/parquet/encoding_benchmark.cc | 802 ++ src/arrow/cpp/src/parquet/encoding_test.cc | 1247 +++ .../cpp/src/parquet/encryption/CMakeLists.txt | 19 + .../cpp/src/parquet/encryption/crypto_factory.cc | 175 + .../cpp/src/parquet/encryption/crypto_factory.h | 135 + src/arrow/cpp/src/parquet/encryption/encryption.cc | 412 + src/arrow/cpp/src/parquet/encryption/encryption.h | 510 ++ .../src/parquet/encryption/encryption_internal.cc | 613 ++ .../src/parquet/encryption/encryption_internal.h | 116 + .../encryption/encryption_internal_nossl.cc | 110 + .../parquet/encryption/file_key_material_store.h | 31 + .../src/parquet/encryption/file_key_unwrapper.cc | 114 + .../src/parquet/encryption/file_key_unwrapper.h | 66 + .../cpp/src/parquet/encryption/file_key_wrapper.cc | 109 + .../cpp/src/parquet/encryption/file_key_wrapper.h | 82 + .../parquet/encryption/internal_file_decryptor.cc | 240 + .../parquet/encryption/internal_file_decryptor.h | 121 + .../parquet/encryption/internal_file_encryptor.cc | 170 + .../parquet/encryption/internal_file_encryptor.h | 109 + .../src/parquet/encryption/key_encryption_key.h | 59 + .../src/parquet/encryption/key_management_test.cc | 225 + .../cpp/src/parquet/encryption/key_material.cc | 159 + .../cpp/src/parquet/encryption/key_material.h | 131 + .../cpp/src/parquet/encryption/key_metadata.cc | 89 + .../cpp/src/parquet/encryption/key_metadata.h | 94 + .../src/parquet/encryption/key_metadata_test.cc | 77 + .../cpp/src/parquet/encryption/key_toolkit.cc | 52 + src/arrow/cpp/src/parquet/encryption/key_toolkit.h | 76 + .../src/parquet/encryption/key_toolkit_internal.cc | 80 + .../src/parquet/encryption/key_toolkit_internal.h | 58 + .../src/parquet/encryption/key_wrapping_test.cc | 103 + src/arrow/cpp/src/parquet/encryption/kms_client.cc | 44 + src/arrow/cpp/src/parquet/encryption/kms_client.h | 95 + .../src/parquet/encryption/kms_client_factory.h | 40 + .../parquet/encryption/local_wrap_kms_client.cc | 116 + .../src/parquet/encryption/local_wrap_kms_client.h | 96 + .../cpp/src/parquet/encryption/properties_test.cc | 276 + .../parquet/encryption/read_configurations_test.cc | 272 + .../src/parquet/encryption/test_encryption_util.cc | 502 ++ .../src/parquet/encryption/test_encryption_util.h | 118 + .../src/parquet/encryption/test_in_memory_kms.cc | 81 + .../src/parquet/encryption/test_in_memory_kms.h | 89 + .../encryption/two_level_cache_with_expiration.h | 159 + .../two_level_cache_with_expiration_test.cc | 177 + .../encryption/write_configurations_test.cc | 234 + src/arrow/cpp/src/parquet/exception.cc | 27 + src/arrow/cpp/src/parquet/exception.h | 158 + src/arrow/cpp/src/parquet/file_deserialize_test.cc | 372 + src/arrow/cpp/src/parquet/file_reader.cc | 868 +++ src/arrow/cpp/src/parquet/file_reader.h | 188 + src/arrow/cpp/src/parquet/file_serialize_test.cc | 470 ++ src/arrow/cpp/src/parquet/file_writer.cc | 547 ++ src/arrow/cpp/src/parquet/file_writer.h | 234 + src/arrow/cpp/src/parquet/hasher.h | 72 + src/arrow/cpp/src/parquet/level_comparison.cc | 82 + src/arrow/cpp/src/parquet/level_comparison.h | 40 + src/arrow/cpp/src/parquet/level_comparison_avx2.cc | 34 + src/arrow/cpp/src/parquet/level_comparison_inc.h | 65 + src/arrow/cpp/src/parquet/level_conversion.cc | 183 + src/arrow/cpp/src/parquet/level_conversion.h | 199 + .../cpp/src/parquet/level_conversion_benchmark.cc | 80 + src/arrow/cpp/src/parquet/level_conversion_bmi2.cc | 33 + src/arrow/cpp/src/parquet/level_conversion_inc.h | 357 + src/arrow/cpp/src/parquet/level_conversion_test.cc | 361 + src/arrow/cpp/src/parquet/metadata.cc | 1797 +++++ src/arrow/cpp/src/parquet/metadata.h | 489 ++ src/arrow/cpp/src/parquet/metadata_test.cc | 571 ++ src/arrow/cpp/src/parquet/murmur3.cc | 222 + src/arrow/cpp/src/parquet/murmur3.h | 54 + src/arrow/cpp/src/parquet/parquet.pc.in | 31 + src/arrow/cpp/src/parquet/parquet.thrift | 1063 +++ src/arrow/cpp/src/parquet/parquet_version.h.in | 31 + src/arrow/cpp/src/parquet/pch.h | 28 + src/arrow/cpp/src/parquet/platform.cc | 41 + src/arrow/cpp/src/parquet/platform.h | 111 + src/arrow/cpp/src/parquet/printer.cc | 297 + src/arrow/cpp/src/parquet/printer.h | 46 + src/arrow/cpp/src/parquet/properties.cc | 64 + src/arrow/cpp/src/parquet/properties.h | 801 ++ src/arrow/cpp/src/parquet/properties_test.cc | 90 + src/arrow/cpp/src/parquet/public_api_test.cc | 49 + src/arrow/cpp/src/parquet/reader_test.cc | 810 ++ src/arrow/cpp/src/parquet/schema.cc | 945 +++ src/arrow/cpp/src/parquet/schema.h | 491 ++ src/arrow/cpp/src/parquet/schema_internal.h | 54 + src/arrow/cpp/src/parquet/schema_test.cc | 2226 ++++++ src/arrow/cpp/src/parquet/statistics.cc | 887 +++ src/arrow/cpp/src/parquet/statistics.h | 367 + src/arrow/cpp/src/parquet/statistics_test.cc | 1178 +++ src/arrow/cpp/src/parquet/stream_reader.cc | 521 ++ src/arrow/cpp/src/parquet/stream_reader.h | 299 + src/arrow/cpp/src/parquet/stream_reader_test.cc | 916 +++ src/arrow/cpp/src/parquet/stream_writer.cc | 324 + src/arrow/cpp/src/parquet/stream_writer.h | 243 + src/arrow/cpp/src/parquet/stream_writer_test.cc | 419 + src/arrow/cpp/src/parquet/symbols.map | 40 + src/arrow/cpp/src/parquet/test_util.cc | 136 + src/arrow/cpp/src/parquet/test_util.h | 715 ++ src/arrow/cpp/src/parquet/thrift_internal.h | 509 ++ src/arrow/cpp/src/parquet/type_fwd.h | 88 + src/arrow/cpp/src/parquet/types.cc | 1567 ++++ src/arrow/cpp/src/parquet/types.h | 766 ++ src/arrow/cpp/src/parquet/types_test.cc | 172 + src/arrow/cpp/src/parquet/windows_compatibility.h | 30 + src/arrow/cpp/src/plasma/.gitignore | 18 + src/arrow/cpp/src/plasma/CMakeLists.txt | 235 + src/arrow/cpp/src/plasma/PlasmaConfig.cmake.in | 39 + src/arrow/cpp/src/plasma/client.cc | 1224 +++ src/arrow/cpp/src/plasma/client.h | 309 + src/arrow/cpp/src/plasma/common.cc | 195 + src/arrow/cpp/src/plasma/common.fbs | 39 + src/arrow/cpp/src/plasma/common.h | 155 + src/arrow/cpp/src/plasma/common_generated.h | 230 + src/arrow/cpp/src/plasma/compat.h | 32 + src/arrow/cpp/src/plasma/dlmalloc.cc | 166 + src/arrow/cpp/src/plasma/events.cc | 107 + src/arrow/cpp/src/plasma/events.h | 108 + src/arrow/cpp/src/plasma/eviction_policy.cc | 175 + src/arrow/cpp/src/plasma/eviction_policy.h | 209 + src/arrow/cpp/src/plasma/external_store.cc | 63 + src/arrow/cpp/src/plasma/external_store.h | 120 + src/arrow/cpp/src/plasma/fling.cc | 129 + src/arrow/cpp/src/plasma/fling.h | 52 + src/arrow/cpp/src/plasma/hash_table_store.cc | 58 + src/arrow/cpp/src/plasma/hash_table_store.h | 50 + src/arrow/cpp/src/plasma/io.cc | 250 + src/arrow/cpp/src/plasma/io.h | 67 + .../org_apache_arrow_plasma_PlasmaClientJNI.cc | 263 + .../java/org_apache_arrow_plasma_PlasmaClientJNI.h | 141 + src/arrow/cpp/src/plasma/malloc.cc | 70 + src/arrow/cpp/src/plasma/malloc.h | 51 + src/arrow/cpp/src/plasma/plasma.cc | 99 + src/arrow/cpp/src/plasma/plasma.fbs | 357 + src/arrow/cpp/src/plasma/plasma.h | 175 + src/arrow/cpp/src/plasma/plasma.pc.in | 33 + src/arrow/cpp/src/plasma/plasma_allocator.cc | 56 + src/arrow/cpp/src/plasma/plasma_allocator.h | 61 + src/arrow/cpp/src/plasma/plasma_generated.h | 3984 ++++++++++ src/arrow/cpp/src/plasma/protocol.cc | 829 ++ src/arrow/cpp/src/plasma/protocol.h | 251 + src/arrow/cpp/src/plasma/quota_aware_policy.cc | 177 + src/arrow/cpp/src/plasma/quota_aware_policy.h | 88 + src/arrow/cpp/src/plasma/store.cc | 1353 ++++ src/arrow/cpp/src/plasma/store.h | 245 + src/arrow/cpp/src/plasma/symbols.map | 34 + src/arrow/cpp/src/plasma/test/client_tests.cc | 1084 +++ .../cpp/src/plasma/test/external_store_tests.cc | 143 + .../cpp/src/plasma/test/serialization_tests.cc | 333 + src/arrow/cpp/src/plasma/test_util.h | 46 + src/arrow/cpp/src/plasma/thirdparty/ae/ae.c | 465 ++ src/arrow/cpp/src/plasma/thirdparty/ae/ae.h | 121 + src/arrow/cpp/src/plasma/thirdparty/ae/ae_epoll.c | 137 + src/arrow/cpp/src/plasma/thirdparty/ae/ae_evport.c | 320 + src/arrow/cpp/src/plasma/thirdparty/ae/ae_kqueue.c | 138 + src/arrow/cpp/src/plasma/thirdparty/ae/ae_select.c | 106 + src/arrow/cpp/src/plasma/thirdparty/ae/config.h | 52 + src/arrow/cpp/src/plasma/thirdparty/ae/zmalloc.h | 43 + src/arrow/cpp/src/plasma/thirdparty/dlmalloc.c | 6296 +++++++++++++++ .../cpp/submodules/parquet-testing/LICENSE.txt | 202 + src/arrow/cpp/submodules/parquet-testing/README.md | 19 + .../parquet-testing/bad_data/PARQUET-1481.parquet | Bin 0 -> 451 bytes .../submodules/parquet-testing/bad_data/README.md | 24 + .../cpp/submodules/parquet-testing/data/README.md | 58 + .../data/alltypes_dictionary.parquet | Bin 0 -> 1698 bytes .../parquet-testing/data/alltypes_plain.parquet | Bin 0 -> 1851 bytes .../data/alltypes_plain.snappy.parquet | Bin 0 -> 1736 bytes .../submodules/parquet-testing/data/binary.parquet | Bin 0 -> 478 bytes .../parquet-testing/data/bloom_filter.bin | Bin 0 -> 1036 bytes .../data/byte_array_decimal.parquet | Bin 0 -> 324 bytes .../data/datapage_v2.snappy.parquet | Bin 0 -> 1165 bytes .../parquet-testing/data/delta_binary_packed.md | 440 ++ .../data/delta_binary_packed.parquet | Bin 0 -> 72971 bytes .../data/delta_binary_packed_expect.csv | 201 + .../data/dict-page-offset-zero.parquet | Bin 0 -> 635 bytes .../encrypt_columns_and_footer.parquet.encrypted | Bin 0 -> 4930 bytes ...ncrypt_columns_and_footer_aad.parquet.encrypted | Bin 0 -> 4938 bytes ...ncrypt_columns_and_footer_ctr.parquet.encrypted | Bin 0 -> 4864 bytes ...nd_footer_disable_aad_storage.parquet.encrypted | Bin 0 -> 4930 bytes ...rypt_columns_plaintext_footer.parquet.encrypted | Bin 0 -> 5083 bytes .../data/fixed_length_decimal.parquet | Bin 0 -> 677 bytes .../data/fixed_length_decimal_legacy.parquet | Bin 0 -> 537 bytes .../data/hadoop_lz4_compressed.parquet | Bin 0 -> 702 bytes .../data/hadoop_lz4_compressed_larger.parquet | Bin 0 -> 358859 bytes .../parquet-testing/data/int32_decimal.parquet | Bin 0 -> 478 bytes .../parquet-testing/data/int64_decimal.parquet | Bin 0 -> 591 bytes .../parquet-testing/data/list_columns.parquet | Bin 0 -> 2526 bytes .../data/lz4_raw_compressed.parquet | Bin 0 -> 797 bytes .../data/lz4_raw_compressed_larger.parquet | Bin 0 -> 380836 bytes .../data/nation.dict-malformed.parquet | Bin 0 -> 2850 bytes .../data/nested_lists.snappy.parquet | Bin 0 -> 881 bytes .../data/nested_maps.snappy.parquet | Bin 0 -> 1324 bytes .../data/nested_structs.rust.parquet | Bin 0 -> 53040 bytes .../data/non_hadoop_lz4_compressed.parquet | Bin 0 -> 1228 bytes .../data/nonnullable.impala.parquet | Bin 0 -> 3186 bytes .../parquet-testing/data/nullable.impala.parquet | Bin 0 -> 3896 bytes .../parquet-testing/data/nulls.snappy.parquet | Bin 0 -> 461 bytes .../data/repeated_no_annotation.parquet | Bin 0 -> 662 bytes .../parquet-testing/data/single_nan.parquet | Bin 0 -> 660 bytes .../data/uniform_encryption.parquet.encrypted | Bin 0 -> 5483 bytes src/arrow/cpp/thirdparty/README.md | 25 + src/arrow/cpp/thirdparty/download_dependencies.sh | 63 + .../flatbuffers/include/flatbuffers/base.h | 398 + .../flatbuffers/include/flatbuffers/flatbuffers.h | 2783 +++++++ .../include/flatbuffers/stl_emulation.h | 307 + src/arrow/cpp/thirdparty/hadoop/include/hdfs.h | 1024 +++ src/arrow/cpp/thirdparty/versions.txt | 130 + src/arrow/cpp/tools/parquet/CMakeLists.txt | 36 + src/arrow/cpp/tools/parquet/parquet_dump_schema.cc | 52 + src/arrow/cpp/tools/parquet/parquet_reader.cc | 82 + src/arrow/cpp/tools/parquet/parquet_scan.cc | 78 + src/arrow/cpp/valgrind.supp | 53 + src/arrow/cpp/vcpkg.json | 46 + 1602 files changed, 588654 insertions(+) create mode 100644 src/arrow/cpp/.gitignore create mode 100644 src/arrow/cpp/Brewfile create mode 100644 src/arrow/cpp/CHANGELOG_PARQUET.md create mode 100644 src/arrow/cpp/CMakeLists.txt create mode 100644 src/arrow/cpp/CMakeSettings.json create mode 100644 src/arrow/cpp/README.md create mode 100644 src/arrow/cpp/apidoc/.gitignore create mode 100644 src/arrow/cpp/apidoc/Doxyfile create mode 100644 src/arrow/cpp/apidoc/HDFS.md create mode 100644 src/arrow/cpp/apidoc/footer.html create mode 100644 src/arrow/cpp/apidoc/tutorials/plasma.md create mode 100644 src/arrow/cpp/apidoc/tutorials/tensor_to_py.md create mode 100755 src/arrow/cpp/build-support/asan_symbolize.py create mode 100755 src/arrow/cpp/build-support/build-lz4-lib.sh create mode 100755 src/arrow/cpp/build-support/build-zstd-lib.sh create mode 100755 src/arrow/cpp/build-support/cpplint.py create mode 100755 src/arrow/cpp/build-support/fuzzing/generate_corpuses.sh create mode 100755 src/arrow/cpp/build-support/fuzzing/pack_corpus.py create mode 100755 src/arrow/cpp/build-support/get-upstream-commit.sh create mode 100644 src/arrow/cpp/build-support/iwyu/iwyu-filter.awk create mode 100755 src/arrow/cpp/build-support/iwyu/iwyu.sh create mode 100755 src/arrow/cpp/build-support/iwyu/iwyu_tool.py create mode 100644 src/arrow/cpp/build-support/iwyu/mappings/arrow-misc.imp create mode 100644 src/arrow/cpp/build-support/iwyu/mappings/boost-all-private.imp create mode 100644 src/arrow/cpp/build-support/iwyu/mappings/boost-all.imp create mode 100644 src/arrow/cpp/build-support/iwyu/mappings/boost-extra.imp create mode 100644 src/arrow/cpp/build-support/iwyu/mappings/gflags.imp create mode 100644 src/arrow/cpp/build-support/iwyu/mappings/glog.imp create mode 100644 src/arrow/cpp/build-support/iwyu/mappings/gmock.imp create mode 100644 src/arrow/cpp/build-support/iwyu/mappings/gtest.imp create mode 100755 src/arrow/cpp/build-support/lint_cpp_cli.py create mode 100644 src/arrow/cpp/build-support/lint_exclusions.txt create mode 100644 src/arrow/cpp/build-support/lintutils.py create mode 100644 src/arrow/cpp/build-support/lsan-suppressions.txt create mode 100755 src/arrow/cpp/build-support/run-infer.sh create mode 100755 src/arrow/cpp/build-support/run-test.sh create mode 100755 src/arrow/cpp/build-support/run_clang_format.py create mode 100755 src/arrow/cpp/build-support/run_clang_tidy.py create mode 100755 src/arrow/cpp/build-support/run_cpplint.py create mode 100644 src/arrow/cpp/build-support/sanitizer-disallowed-entries.txt create mode 100755 src/arrow/cpp/build-support/stacktrace_addr2line.pl create mode 100755 src/arrow/cpp/build-support/trim-boost.sh create mode 100644 src/arrow/cpp/build-support/tsan-suppressions.txt create mode 100644 src/arrow/cpp/build-support/ubsan-suppressions.txt create mode 100755 src/arrow/cpp/build-support/update-flatbuffers.sh create mode 100755 src/arrow/cpp/build-support/update-thrift.sh create mode 100755 src/arrow/cpp/build-support/vendor-flatbuffers.sh create mode 100644 src/arrow/cpp/cmake_modules/BuildUtils.cmake create mode 100644 src/arrow/cpp/cmake_modules/DefineOptions.cmake create mode 100644 src/arrow/cpp/cmake_modules/FindArrow.cmake create mode 100644 src/arrow/cpp/cmake_modules/FindArrowCUDA.cmake create mode 100644 src/arrow/cpp/cmake_modules/FindArrowDataset.cmake create mode 100644 src/arrow/cpp/cmake_modules/FindArrowFlight.cmake create mode 100644 src/arrow/cpp/cmake_modules/FindArrowFlightTesting.cmake create mode 100644 src/arrow/cpp/cmake_modules/FindArrowPython.cmake create mode 100644 src/arrow/cpp/cmake_modules/FindArrowPythonFlight.cmake create mode 100644 src/arrow/cpp/cmake_modules/FindArrowTesting.cmake create mode 100644 src/arrow/cpp/cmake_modules/FindBoostAlt.cmake create mode 100644 src/arrow/cpp/cmake_modules/FindBrotli.cmake create mode 100644 src/arrow/cpp/cmake_modules/FindClangTools.cmake create mode 100644 src/arrow/cpp/cmake_modules/FindGLOG.cmake create mode 100644 src/arrow/cpp/cmake_modules/FindGandiva.cmake create mode 100644 src/arrow/cpp/cmake_modules/FindInferTools.cmake create mode 100644 src/arrow/cpp/cmake_modules/FindLLVMAlt.cmake create mode 100644 src/arrow/cpp/cmake_modules/FindLz4.cmake create mode 100644 src/arrow/cpp/cmake_modules/FindNumPy.cmake create mode 100644 src/arrow/cpp/cmake_modules/FindORC.cmake create mode 100644 src/arrow/cpp/cmake_modules/FindOpenSSLAlt.cmake create mode 100644 src/arrow/cpp/cmake_modules/FindParquet.cmake create mode 100644 src/arrow/cpp/cmake_modules/FindPlasma.cmake create mode 100644 src/arrow/cpp/cmake_modules/FindPython3Alt.cmake create mode 100644 src/arrow/cpp/cmake_modules/FindPythonLibsNew.cmake create mode 100644 src/arrow/cpp/cmake_modules/FindRapidJSONAlt.cmake create mode 100644 src/arrow/cpp/cmake_modules/FindSnappy.cmake create mode 100644 src/arrow/cpp/cmake_modules/FindThrift.cmake create mode 100644 src/arrow/cpp/cmake_modules/Findc-aresAlt.cmake create mode 100644 src/arrow/cpp/cmake_modules/FindgRPCAlt.cmake create mode 100644 src/arrow/cpp/cmake_modules/FindgflagsAlt.cmake create mode 100644 src/arrow/cpp/cmake_modules/Findjemalloc.cmake create mode 100644 src/arrow/cpp/cmake_modules/Findre2Alt.cmake create mode 100644 src/arrow/cpp/cmake_modules/Findutf8proc.cmake create mode 100644 src/arrow/cpp/cmake_modules/Findzstd.cmake create mode 100644 src/arrow/cpp/cmake_modules/SetupCxxFlags.cmake create mode 100644 src/arrow/cpp/cmake_modules/ThirdpartyToolchain.cmake create mode 100644 src/arrow/cpp/cmake_modules/UseCython.cmake create mode 100644 src/arrow/cpp/cmake_modules/Usevcpkg.cmake create mode 100644 src/arrow/cpp/cmake_modules/san-config.cmake create mode 100644 src/arrow/cpp/examples/arrow/CMakeLists.txt create mode 100644 src/arrow/cpp/examples/arrow/compute_and_write_csv_example.cc create mode 100644 src/arrow/cpp/examples/arrow/compute_register_example.cc create mode 100644 src/arrow/cpp/examples/arrow/dataset_documentation_example.cc create mode 100644 src/arrow/cpp/examples/arrow/dataset_parquet_scan_example.cc create mode 100644 src/arrow/cpp/examples/arrow/row_wise_conversion_example.cc create mode 100644 src/arrow/cpp/examples/minimal_build/.gitignore create mode 100644 src/arrow/cpp/examples/minimal_build/CMakeLists.txt create mode 100644 src/arrow/cpp/examples/minimal_build/README.md create mode 100755 src/arrow/cpp/examples/minimal_build/build_arrow.sh create mode 100755 src/arrow/cpp/examples/minimal_build/build_example.sh create mode 100644 src/arrow/cpp/examples/minimal_build/docker-compose.yml create mode 100644 src/arrow/cpp/examples/minimal_build/example.cc create mode 100644 src/arrow/cpp/examples/minimal_build/minimal.dockerfile create mode 100755 src/arrow/cpp/examples/minimal_build/run.sh create mode 100644 src/arrow/cpp/examples/minimal_build/run_static.bat create mode 100755 src/arrow/cpp/examples/minimal_build/run_static.sh create mode 100644 src/arrow/cpp/examples/minimal_build/system_dependency.dockerfile create mode 100644 src/arrow/cpp/examples/minimal_build/test.csv create mode 100644 src/arrow/cpp/examples/parquet/CMakeLists.txt create mode 100644 src/arrow/cpp/examples/parquet/low_level_api/encryption_reader_writer.cc create mode 100644 src/arrow/cpp/examples/parquet/low_level_api/encryption_reader_writer_all_crypto_options.cc create mode 100644 src/arrow/cpp/examples/parquet/low_level_api/reader_writer.cc create mode 100644 src/arrow/cpp/examples/parquet/low_level_api/reader_writer.h create mode 100644 src/arrow/cpp/examples/parquet/low_level_api/reader_writer2.cc create mode 100644 src/arrow/cpp/examples/parquet/parquet_arrow/CMakeLists.txt create mode 100644 src/arrow/cpp/examples/parquet/parquet_arrow/README.md create mode 100644 src/arrow/cpp/examples/parquet/parquet_arrow/reader_writer.cc create mode 100644 src/arrow/cpp/examples/parquet/parquet_stream_api/stream_reader_writer.cc create mode 100644 src/arrow/cpp/src/arrow/ArrowConfig.cmake.in create mode 100644 src/arrow/cpp/src/arrow/ArrowTestingConfig.cmake.in create mode 100644 src/arrow/cpp/src/arrow/CMakeLists.txt create mode 100644 src/arrow/cpp/src/arrow/adapters/orc/CMakeLists.txt create mode 100644 src/arrow/cpp/src/arrow/adapters/orc/adapter.cc create mode 100644 src/arrow/cpp/src/arrow/adapters/orc/adapter.h create mode 100644 src/arrow/cpp/src/arrow/adapters/orc/adapter_test.cc create mode 100644 src/arrow/cpp/src/arrow/adapters/orc/adapter_util.cc create mode 100644 src/arrow/cpp/src/arrow/adapters/orc/adapter_util.h create mode 100644 src/arrow/cpp/src/arrow/adapters/orc/arrow-orc.pc.in create mode 100644 src/arrow/cpp/src/arrow/adapters/tensorflow/CMakeLists.txt create mode 100644 src/arrow/cpp/src/arrow/adapters/tensorflow/arrow-tensorflow.pc.in create mode 100644 src/arrow/cpp/src/arrow/adapters/tensorflow/convert.h create mode 100644 src/arrow/cpp/src/arrow/api.h create mode 100644 src/arrow/cpp/src/arrow/array.h create mode 100644 src/arrow/cpp/src/arrow/array/CMakeLists.txt create mode 100644 src/arrow/cpp/src/arrow/array/README.md create mode 100644 src/arrow/cpp/src/arrow/array/array_base.cc create mode 100644 src/arrow/cpp/src/arrow/array/array_base.h create mode 100644 src/arrow/cpp/src/arrow/array/array_binary.cc create mode 100644 src/arrow/cpp/src/arrow/array/array_binary.h create mode 100644 src/arrow/cpp/src/arrow/array/array_binary_test.cc create mode 100644 src/arrow/cpp/src/arrow/array/array_decimal.cc create mode 100644 src/arrow/cpp/src/arrow/array/array_decimal.h create mode 100644 src/arrow/cpp/src/arrow/array/array_dict.cc create mode 100644 src/arrow/cpp/src/arrow/array/array_dict.h create mode 100644 src/arrow/cpp/src/arrow/array/array_dict_test.cc create mode 100644 src/arrow/cpp/src/arrow/array/array_list_test.cc create mode 100644 src/arrow/cpp/src/arrow/array/array_nested.cc create mode 100644 src/arrow/cpp/src/arrow/array/array_nested.h create mode 100644 src/arrow/cpp/src/arrow/array/array_primitive.cc create mode 100644 src/arrow/cpp/src/arrow/array/array_primitive.h create mode 100644 src/arrow/cpp/src/arrow/array/array_struct_test.cc create mode 100644 src/arrow/cpp/src/arrow/array/array_test.cc create mode 100644 src/arrow/cpp/src/arrow/array/array_union_test.cc create mode 100644 src/arrow/cpp/src/arrow/array/array_view_test.cc create mode 100644 src/arrow/cpp/src/arrow/array/builder_adaptive.cc create mode 100644 src/arrow/cpp/src/arrow/array/builder_adaptive.h create mode 100644 src/arrow/cpp/src/arrow/array/builder_base.cc create mode 100644 src/arrow/cpp/src/arrow/array/builder_base.h create mode 100644 src/arrow/cpp/src/arrow/array/builder_binary.cc create mode 100644 src/arrow/cpp/src/arrow/array/builder_binary.h create mode 100644 src/arrow/cpp/src/arrow/array/builder_decimal.cc create mode 100644 src/arrow/cpp/src/arrow/array/builder_decimal.h create mode 100644 src/arrow/cpp/src/arrow/array/builder_dict.cc create mode 100644 src/arrow/cpp/src/arrow/array/builder_dict.h create mode 100644 src/arrow/cpp/src/arrow/array/builder_nested.cc create mode 100644 src/arrow/cpp/src/arrow/array/builder_nested.h create mode 100644 src/arrow/cpp/src/arrow/array/builder_primitive.cc create mode 100644 src/arrow/cpp/src/arrow/array/builder_primitive.h create mode 100644 src/arrow/cpp/src/arrow/array/builder_time.h create mode 100644 src/arrow/cpp/src/arrow/array/builder_union.cc create mode 100644 src/arrow/cpp/src/arrow/array/builder_union.h create mode 100644 src/arrow/cpp/src/arrow/array/concatenate.cc create mode 100644 src/arrow/cpp/src/arrow/array/concatenate.h create mode 100644 src/arrow/cpp/src/arrow/array/concatenate_test.cc create mode 100644 src/arrow/cpp/src/arrow/array/data.cc create mode 100644 src/arrow/cpp/src/arrow/array/data.h create mode 100644 src/arrow/cpp/src/arrow/array/dict_internal.h create mode 100644 src/arrow/cpp/src/arrow/array/diff.cc create mode 100644 src/arrow/cpp/src/arrow/array/diff.h create mode 100644 src/arrow/cpp/src/arrow/array/diff_test.cc create mode 100644 src/arrow/cpp/src/arrow/array/util.cc create mode 100644 src/arrow/cpp/src/arrow/array/util.h create mode 100644 src/arrow/cpp/src/arrow/array/validate.cc create mode 100644 src/arrow/cpp/src/arrow/array/validate.h create mode 100644 src/arrow/cpp/src/arrow/arrow-config.cmake create mode 100644 src/arrow/cpp/src/arrow/arrow-testing.pc.in create mode 100644 src/arrow/cpp/src/arrow/arrow.pc.in create mode 100644 src/arrow/cpp/src/arrow/buffer.cc create mode 100644 src/arrow/cpp/src/arrow/buffer.h create mode 100644 src/arrow/cpp/src/arrow/buffer_builder.h create mode 100644 src/arrow/cpp/src/arrow/buffer_test.cc create mode 100644 src/arrow/cpp/src/arrow/builder.cc create mode 100644 src/arrow/cpp/src/arrow/builder.h create mode 100644 src/arrow/cpp/src/arrow/builder_benchmark.cc create mode 100644 src/arrow/cpp/src/arrow/c/CMakeLists.txt create mode 100644 src/arrow/cpp/src/arrow/c/abi.h create mode 100644 src/arrow/cpp/src/arrow/c/bridge.cc create mode 100644 src/arrow/cpp/src/arrow/c/bridge.h create mode 100644 src/arrow/cpp/src/arrow/c/bridge_benchmark.cc create mode 100644 src/arrow/cpp/src/arrow/c/bridge_test.cc create mode 100644 src/arrow/cpp/src/arrow/c/helpers.h create mode 100644 src/arrow/cpp/src/arrow/c/util_internal.h create mode 100644 src/arrow/cpp/src/arrow/chunked_array.cc create mode 100644 src/arrow/cpp/src/arrow/chunked_array.h create mode 100644 src/arrow/cpp/src/arrow/chunked_array_test.cc create mode 100644 src/arrow/cpp/src/arrow/compare.cc create mode 100644 src/arrow/cpp/src/arrow/compare.h create mode 100644 src/arrow/cpp/src/arrow/compare_benchmark.cc create mode 100644 src/arrow/cpp/src/arrow/compute/CMakeLists.txt create mode 100644 src/arrow/cpp/src/arrow/compute/README.md create mode 100644 src/arrow/cpp/src/arrow/compute/api.h create mode 100644 src/arrow/cpp/src/arrow/compute/api_aggregate.cc create mode 100644 src/arrow/cpp/src/arrow/compute/api_aggregate.h create mode 100644 src/arrow/cpp/src/arrow/compute/api_scalar.cc create mode 100644 src/arrow/cpp/src/arrow/compute/api_scalar.h create mode 100644 src/arrow/cpp/src/arrow/compute/api_vector.cc create mode 100644 src/arrow/cpp/src/arrow/compute/api_vector.h create mode 100644 src/arrow/cpp/src/arrow/compute/arrow-compute.pc.in create mode 100644 src/arrow/cpp/src/arrow/compute/cast.cc create mode 100644 src/arrow/cpp/src/arrow/compute/cast.h create mode 100644 src/arrow/cpp/src/arrow/compute/cast_internal.h create mode 100644 src/arrow/cpp/src/arrow/compute/exec.cc create mode 100644 src/arrow/cpp/src/arrow/compute/exec.h create mode 100644 src/arrow/cpp/src/arrow/compute/exec/CMakeLists.txt create mode 100644 src/arrow/cpp/src/arrow/compute/exec/aggregate_node.cc create mode 100644 src/arrow/cpp/src/arrow/compute/exec/doc/img/key_map_1.jpg create mode 100644 src/arrow/cpp/src/arrow/compute/exec/doc/img/key_map_10.jpg create mode 100644 src/arrow/cpp/src/arrow/compute/exec/doc/img/key_map_11.jpg create mode 100644 src/arrow/cpp/src/arrow/compute/exec/doc/img/key_map_2.jpg create mode 100644 src/arrow/cpp/src/arrow/compute/exec/doc/img/key_map_3.jpg create mode 100644 src/arrow/cpp/src/arrow/compute/exec/doc/img/key_map_4.jpg create mode 100644 src/arrow/cpp/src/arrow/compute/exec/doc/img/key_map_5.jpg create mode 100644 src/arrow/cpp/src/arrow/compute/exec/doc/img/key_map_6.jpg create mode 100644 src/arrow/cpp/src/arrow/compute/exec/doc/img/key_map_7.jpg create mode 100644 src/arrow/cpp/src/arrow/compute/exec/doc/img/key_map_8.jpg create mode 100644 src/arrow/cpp/src/arrow/compute/exec/doc/img/key_map_9.jpg create mode 100644 src/arrow/cpp/src/arrow/compute/exec/doc/key_map.md create mode 100644 src/arrow/cpp/src/arrow/compute/exec/exec_plan.cc create mode 100644 src/arrow/cpp/src/arrow/compute/exec/exec_plan.h create mode 100644 src/arrow/cpp/src/arrow/compute/exec/expression.cc create mode 100644 src/arrow/cpp/src/arrow/compute/exec/expression.h create mode 100644 src/arrow/cpp/src/arrow/compute/exec/expression_benchmark.cc create mode 100644 src/arrow/cpp/src/arrow/compute/exec/expression_internal.h create mode 100644 src/arrow/cpp/src/arrow/compute/exec/expression_test.cc create mode 100644 src/arrow/cpp/src/arrow/compute/exec/filter_node.cc create mode 100644 src/arrow/cpp/src/arrow/compute/exec/forest_internal.h create mode 100644 src/arrow/cpp/src/arrow/compute/exec/hash_join.cc create mode 100644 src/arrow/cpp/src/arrow/compute/exec/hash_join.h create mode 100644 src/arrow/cpp/src/arrow/compute/exec/hash_join_dict.cc create mode 100644 src/arrow/cpp/src/arrow/compute/exec/hash_join_dict.h create mode 100644 src/arrow/cpp/src/arrow/compute/exec/hash_join_node.cc create mode 100644 src/arrow/cpp/src/arrow/compute/exec/hash_join_node_test.cc create mode 100644 src/arrow/cpp/src/arrow/compute/exec/key_compare.cc create mode 100644 src/arrow/cpp/src/arrow/compute/exec/key_compare.h create mode 100644 src/arrow/cpp/src/arrow/compute/exec/key_compare_avx2.cc create mode 100644 src/arrow/cpp/src/arrow/compute/exec/key_encode.cc create mode 100644 src/arrow/cpp/src/arrow/compute/exec/key_encode.h create mode 100644 src/arrow/cpp/src/arrow/compute/exec/key_encode_avx2.cc create mode 100644 src/arrow/cpp/src/arrow/compute/exec/key_hash.cc create mode 100644 src/arrow/cpp/src/arrow/compute/exec/key_hash.h create mode 100644 src/arrow/cpp/src/arrow/compute/exec/key_hash_avx2.cc create mode 100644 src/arrow/cpp/src/arrow/compute/exec/key_map.cc create mode 100644 src/arrow/cpp/src/arrow/compute/exec/key_map.h create mode 100644 src/arrow/cpp/src/arrow/compute/exec/key_map_avx2.cc create mode 100644 src/arrow/cpp/src/arrow/compute/exec/options.h create mode 100644 src/arrow/cpp/src/arrow/compute/exec/order_by_impl.cc create mode 100644 src/arrow/cpp/src/arrow/compute/exec/order_by_impl.h create mode 100644 src/arrow/cpp/src/arrow/compute/exec/plan_test.cc create mode 100644 src/arrow/cpp/src/arrow/compute/exec/project_node.cc create mode 100644 src/arrow/cpp/src/arrow/compute/exec/schema_util.h create mode 100644 src/arrow/cpp/src/arrow/compute/exec/sink_node.cc create mode 100644 src/arrow/cpp/src/arrow/compute/exec/source_node.cc create mode 100644 src/arrow/cpp/src/arrow/compute/exec/subtree_internal.h create mode 100644 src/arrow/cpp/src/arrow/compute/exec/subtree_test.cc create mode 100644 src/arrow/cpp/src/arrow/compute/exec/task_util.cc create mode 100644 src/arrow/cpp/src/arrow/compute/exec/task_util.h create mode 100644 src/arrow/cpp/src/arrow/compute/exec/test_util.cc create mode 100644 src/arrow/cpp/src/arrow/compute/exec/test_util.h create mode 100644 src/arrow/cpp/src/arrow/compute/exec/union_node.cc create mode 100644 src/arrow/cpp/src/arrow/compute/exec/union_node_test.cc create mode 100644 src/arrow/cpp/src/arrow/compute/exec/util.cc create mode 100644 src/arrow/cpp/src/arrow/compute/exec/util.h create mode 100644 src/arrow/cpp/src/arrow/compute/exec/util_avx2.cc create mode 100644 src/arrow/cpp/src/arrow/compute/exec/util_test.cc create mode 100644 src/arrow/cpp/src/arrow/compute/exec_internal.h create mode 100644 src/arrow/cpp/src/arrow/compute/exec_test.cc create mode 100644 src/arrow/cpp/src/arrow/compute/function.cc create mode 100644 src/arrow/cpp/src/arrow/compute/function.h create mode 100644 src/arrow/cpp/src/arrow/compute/function_benchmark.cc create mode 100644 src/arrow/cpp/src/arrow/compute/function_internal.cc create mode 100644 src/arrow/cpp/src/arrow/compute/function_internal.h create mode 100644 src/arrow/cpp/src/arrow/compute/function_test.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernel.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernel.h create mode 100644 src/arrow/cpp/src/arrow/compute/kernel_test.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/CMakeLists.txt create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/aggregate_basic.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/aggregate_basic_avx2.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/aggregate_basic_avx512.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/aggregate_basic_internal.h create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/aggregate_benchmark.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/aggregate_internal.h create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/aggregate_mode.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/aggregate_quantile.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/aggregate_tdigest.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/aggregate_test.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/aggregate_var_std.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/aggregate_var_std_internal.h create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/chunked_internal.h create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/codegen_internal.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/codegen_internal.h create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/codegen_internal_test.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/common.h create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/hash_aggregate.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/hash_aggregate_test.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/row_encoder.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/row_encoder.h create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/scalar_arithmetic.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/scalar_arithmetic_benchmark.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/scalar_arithmetic_test.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/scalar_boolean.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/scalar_boolean_benchmark.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/scalar_boolean_test.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/scalar_cast_benchmark.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/scalar_cast_boolean.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/scalar_cast_dictionary.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/scalar_cast_internal.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/scalar_cast_internal.h create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/scalar_cast_nested.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/scalar_cast_numeric.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/scalar_cast_string.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/scalar_cast_temporal.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/scalar_cast_test.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/scalar_compare.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/scalar_compare_benchmark.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/scalar_compare_test.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/scalar_if_else.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/scalar_if_else_benchmark.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/scalar_if_else_test.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/scalar_nested.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/scalar_nested_test.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/scalar_set_lookup.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/scalar_set_lookup_benchmark.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/scalar_set_lookup_test.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/scalar_string.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/scalar_string_benchmark.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/scalar_string_test.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/scalar_temporal_binary.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/scalar_temporal_test.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/scalar_temporal_unary.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/scalar_validity.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/scalar_validity_test.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/select_k_test.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/temporal_internal.h create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/test_util.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/test_util.h create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/util_internal.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/util_internal.h create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/vector_array_sort.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/vector_hash.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/vector_hash_benchmark.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/vector_hash_test.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/vector_nested.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/vector_nested_test.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/vector_partition_benchmark.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/vector_replace.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/vector_replace_benchmark.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/vector_replace_test.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/vector_selection.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/vector_selection_benchmark.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/vector_selection_test.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/vector_sort.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/vector_sort_benchmark.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/vector_sort_internal.h create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/vector_sort_test.cc create mode 100644 src/arrow/cpp/src/arrow/compute/kernels/vector_topk_benchmark.cc create mode 100644 src/arrow/cpp/src/arrow/compute/registry.cc create mode 100644 src/arrow/cpp/src/arrow/compute/registry.h create mode 100644 src/arrow/cpp/src/arrow/compute/registry_internal.h create mode 100644 src/arrow/cpp/src/arrow/compute/registry_test.cc create mode 100644 src/arrow/cpp/src/arrow/compute/type_fwd.h create mode 100644 src/arrow/cpp/src/arrow/config.cc create mode 100644 src/arrow/cpp/src/arrow/config.h create mode 100644 src/arrow/cpp/src/arrow/csv/CMakeLists.txt create mode 100644 src/arrow/cpp/src/arrow/csv/api.h create mode 100644 src/arrow/cpp/src/arrow/csv/arrow-csv.pc.in create mode 100644 src/arrow/cpp/src/arrow/csv/chunker.cc create mode 100644 src/arrow/cpp/src/arrow/csv/chunker.h create mode 100644 src/arrow/cpp/src/arrow/csv/chunker_test.cc create mode 100644 src/arrow/cpp/src/arrow/csv/column_builder.cc create mode 100644 src/arrow/cpp/src/arrow/csv/column_builder.h create mode 100644 src/arrow/cpp/src/arrow/csv/column_builder_test.cc create mode 100644 src/arrow/cpp/src/arrow/csv/column_decoder.cc create mode 100644 src/arrow/cpp/src/arrow/csv/column_decoder.h create mode 100644 src/arrow/cpp/src/arrow/csv/column_decoder_test.cc create mode 100644 src/arrow/cpp/src/arrow/csv/converter.cc create mode 100644 src/arrow/cpp/src/arrow/csv/converter.h create mode 100644 src/arrow/cpp/src/arrow/csv/converter_benchmark.cc create mode 100644 src/arrow/cpp/src/arrow/csv/converter_test.cc create mode 100644 src/arrow/cpp/src/arrow/csv/inference_internal.h create mode 100644 src/arrow/cpp/src/arrow/csv/invalid_row.h create mode 100644 src/arrow/cpp/src/arrow/csv/options.cc create mode 100644 src/arrow/cpp/src/arrow/csv/options.h create mode 100644 src/arrow/cpp/src/arrow/csv/parser.cc create mode 100644 src/arrow/cpp/src/arrow/csv/parser.h create mode 100644 src/arrow/cpp/src/arrow/csv/parser_benchmark.cc create mode 100644 src/arrow/cpp/src/arrow/csv/parser_test.cc create mode 100644 src/arrow/cpp/src/arrow/csv/reader.cc create mode 100644 src/arrow/cpp/src/arrow/csv/reader.h create mode 100644 src/arrow/cpp/src/arrow/csv/reader_test.cc create mode 100644 src/arrow/cpp/src/arrow/csv/test_common.cc create mode 100644 src/arrow/cpp/src/arrow/csv/test_common.h create mode 100644 src/arrow/cpp/src/arrow/csv/type_fwd.h create mode 100644 src/arrow/cpp/src/arrow/csv/writer.cc create mode 100644 src/arrow/cpp/src/arrow/csv/writer.h create mode 100644 src/arrow/cpp/src/arrow/csv/writer_test.cc create mode 100644 src/arrow/cpp/src/arrow/dataset/ArrowDatasetConfig.cmake.in create mode 100644 src/arrow/cpp/src/arrow/dataset/CMakeLists.txt create mode 100644 src/arrow/cpp/src/arrow/dataset/README.md create mode 100644 src/arrow/cpp/src/arrow/dataset/api.h create mode 100644 src/arrow/cpp/src/arrow/dataset/arrow-dataset.pc.in create mode 100644 src/arrow/cpp/src/arrow/dataset/dataset.cc create mode 100644 src/arrow/cpp/src/arrow/dataset/dataset.h create mode 100644 src/arrow/cpp/src/arrow/dataset/dataset_internal.h create mode 100644 src/arrow/cpp/src/arrow/dataset/dataset_test.cc create mode 100644 src/arrow/cpp/src/arrow/dataset/dataset_writer.cc create mode 100644 src/arrow/cpp/src/arrow/dataset/dataset_writer.h create mode 100644 src/arrow/cpp/src/arrow/dataset/dataset_writer_test.cc create mode 100644 src/arrow/cpp/src/arrow/dataset/discovery.cc create mode 100644 src/arrow/cpp/src/arrow/dataset/discovery.h create mode 100644 src/arrow/cpp/src/arrow/dataset/discovery_test.cc create mode 100644 src/arrow/cpp/src/arrow/dataset/file_base.cc create mode 100644 src/arrow/cpp/src/arrow/dataset/file_base.h create mode 100644 src/arrow/cpp/src/arrow/dataset/file_benchmark.cc create mode 100644 src/arrow/cpp/src/arrow/dataset/file_csv.cc create mode 100644 src/arrow/cpp/src/arrow/dataset/file_csv.h create mode 100644 src/arrow/cpp/src/arrow/dataset/file_csv_test.cc create mode 100644 src/arrow/cpp/src/arrow/dataset/file_ipc.cc create mode 100644 src/arrow/cpp/src/arrow/dataset/file_ipc.h create mode 100644 src/arrow/cpp/src/arrow/dataset/file_ipc_test.cc create mode 100644 src/arrow/cpp/src/arrow/dataset/file_orc.cc create mode 100644 src/arrow/cpp/src/arrow/dataset/file_orc.h create mode 100644 src/arrow/cpp/src/arrow/dataset/file_orc_test.cc create mode 100644 src/arrow/cpp/src/arrow/dataset/file_parquet.cc create mode 100644 src/arrow/cpp/src/arrow/dataset/file_parquet.h create mode 100644 src/arrow/cpp/src/arrow/dataset/file_parquet_test.cc create mode 100644 src/arrow/cpp/src/arrow/dataset/file_test.cc create mode 100644 src/arrow/cpp/src/arrow/dataset/partition.cc create mode 100644 src/arrow/cpp/src/arrow/dataset/partition.h create mode 100644 src/arrow/cpp/src/arrow/dataset/partition_test.cc create mode 100644 src/arrow/cpp/src/arrow/dataset/pch.h create mode 100644 src/arrow/cpp/src/arrow/dataset/plan.cc create mode 100644 src/arrow/cpp/src/arrow/dataset/plan.h create mode 100644 src/arrow/cpp/src/arrow/dataset/projector.cc create mode 100644 src/arrow/cpp/src/arrow/dataset/projector.h create mode 100644 src/arrow/cpp/src/arrow/dataset/scanner.cc create mode 100644 src/arrow/cpp/src/arrow/dataset/scanner.h create mode 100644 src/arrow/cpp/src/arrow/dataset/scanner_benchmark.cc create mode 100644 src/arrow/cpp/src/arrow/dataset/scanner_internal.h create mode 100644 src/arrow/cpp/src/arrow/dataset/scanner_test.cc create mode 100644 src/arrow/cpp/src/arrow/dataset/test_util.h create mode 100644 src/arrow/cpp/src/arrow/dataset/type_fwd.h create mode 100644 src/arrow/cpp/src/arrow/dataset/visibility.h create mode 100644 src/arrow/cpp/src/arrow/datum.cc create mode 100644 src/arrow/cpp/src/arrow/datum.h create mode 100644 src/arrow/cpp/src/arrow/datum_test.cc create mode 100644 src/arrow/cpp/src/arrow/dbi/README.md create mode 100644 src/arrow/cpp/src/arrow/dbi/hiveserver2/CMakeLists.txt create mode 100644 src/arrow/cpp/src/arrow/dbi/hiveserver2/api.h create mode 100644 src/arrow/cpp/src/arrow/dbi/hiveserver2/columnar_row_set.cc create mode 100644 src/arrow/cpp/src/arrow/dbi/hiveserver2/columnar_row_set.h create mode 100644 src/arrow/cpp/src/arrow/dbi/hiveserver2/hiveserver2_test.cc create mode 100644 src/arrow/cpp/src/arrow/dbi/hiveserver2/operation.cc create mode 100644 src/arrow/cpp/src/arrow/dbi/hiveserver2/operation.h create mode 100644 src/arrow/cpp/src/arrow/dbi/hiveserver2/public_api_test.cc create mode 100644 src/arrow/cpp/src/arrow/dbi/hiveserver2/sample_usage.cc create mode 100644 src/arrow/cpp/src/arrow/dbi/hiveserver2/service.cc create mode 100644 src/arrow/cpp/src/arrow/dbi/hiveserver2/service.h create mode 100644 src/arrow/cpp/src/arrow/dbi/hiveserver2/session.cc create mode 100644 src/arrow/cpp/src/arrow/dbi/hiveserver2/session.h create mode 100644 src/arrow/cpp/src/arrow/dbi/hiveserver2/thrift/.gitignore create mode 100644 src/arrow/cpp/src/arrow/dbi/hiveserver2/thrift/CMakeLists.txt create mode 100644 src/arrow/cpp/src/arrow/dbi/hiveserver2/thrift/ExecStats.thrift create mode 100644 src/arrow/cpp/src/arrow/dbi/hiveserver2/thrift/ImpalaService.thrift create mode 100644 src/arrow/cpp/src/arrow/dbi/hiveserver2/thrift/Status.thrift create mode 100644 src/arrow/cpp/src/arrow/dbi/hiveserver2/thrift/TCLIService.thrift create mode 100644 src/arrow/cpp/src/arrow/dbi/hiveserver2/thrift/Types.thrift create mode 100644 src/arrow/cpp/src/arrow/dbi/hiveserver2/thrift/beeswax.thrift create mode 100644 src/arrow/cpp/src/arrow/dbi/hiveserver2/thrift/fb303.thrift create mode 100644 src/arrow/cpp/src/arrow/dbi/hiveserver2/thrift/generate_error_codes.py create mode 100644 src/arrow/cpp/src/arrow/dbi/hiveserver2/thrift/hive_metastore.thrift create mode 100644 src/arrow/cpp/src/arrow/dbi/hiveserver2/thrift_internal.cc create mode 100644 src/arrow/cpp/src/arrow/dbi/hiveserver2/thrift_internal.h create mode 100644 src/arrow/cpp/src/arrow/dbi/hiveserver2/types.cc create mode 100644 src/arrow/cpp/src/arrow/dbi/hiveserver2/types.h create mode 100644 src/arrow/cpp/src/arrow/dbi/hiveserver2/util.cc create mode 100644 src/arrow/cpp/src/arrow/dbi/hiveserver2/util.h create mode 100644 src/arrow/cpp/src/arrow/device.cc create mode 100644 src/arrow/cpp/src/arrow/device.h create mode 100644 src/arrow/cpp/src/arrow/extension_type.cc create mode 100644 src/arrow/cpp/src/arrow/extension_type.h create mode 100644 src/arrow/cpp/src/arrow/extension_type_test.cc create mode 100644 src/arrow/cpp/src/arrow/filesystem/CMakeLists.txt create mode 100644 src/arrow/cpp/src/arrow/filesystem/api.h create mode 100644 src/arrow/cpp/src/arrow/filesystem/arrow-filesystem.pc.in create mode 100644 src/arrow/cpp/src/arrow/filesystem/filesystem.cc create mode 100644 src/arrow/cpp/src/arrow/filesystem/filesystem.h create mode 100644 src/arrow/cpp/src/arrow/filesystem/filesystem_test.cc create mode 100644 src/arrow/cpp/src/arrow/filesystem/gcsfs.cc create mode 100644 src/arrow/cpp/src/arrow/filesystem/gcsfs.h create mode 100644 src/arrow/cpp/src/arrow/filesystem/gcsfs_internal.cc create mode 100644 src/arrow/cpp/src/arrow/filesystem/gcsfs_internal.h create mode 100644 src/arrow/cpp/src/arrow/filesystem/gcsfs_test.cc create mode 100644 src/arrow/cpp/src/arrow/filesystem/hdfs.cc create mode 100644 src/arrow/cpp/src/arrow/filesystem/hdfs.h create mode 100644 src/arrow/cpp/src/arrow/filesystem/hdfs_test.cc create mode 100644 src/arrow/cpp/src/arrow/filesystem/localfs.cc create mode 100644 src/arrow/cpp/src/arrow/filesystem/localfs.h create mode 100644 src/arrow/cpp/src/arrow/filesystem/localfs_test.cc create mode 100644 src/arrow/cpp/src/arrow/filesystem/mockfs.cc create mode 100644 src/arrow/cpp/src/arrow/filesystem/mockfs.h create mode 100644 src/arrow/cpp/src/arrow/filesystem/path_util.cc create mode 100644 src/arrow/cpp/src/arrow/filesystem/path_util.h create mode 100644 src/arrow/cpp/src/arrow/filesystem/s3_internal.h create mode 100644 src/arrow/cpp/src/arrow/filesystem/s3_test_util.h create mode 100644 src/arrow/cpp/src/arrow/filesystem/s3fs.cc create mode 100644 src/arrow/cpp/src/arrow/filesystem/s3fs.h create mode 100644 src/arrow/cpp/src/arrow/filesystem/s3fs_benchmark.cc create mode 100644 src/arrow/cpp/src/arrow/filesystem/s3fs_narrative_test.cc create mode 100644 src/arrow/cpp/src/arrow/filesystem/s3fs_test.cc create mode 100644 src/arrow/cpp/src/arrow/filesystem/test_util.cc create mode 100644 src/arrow/cpp/src/arrow/filesystem/test_util.h create mode 100644 src/arrow/cpp/src/arrow/filesystem/type_fwd.h create mode 100644 src/arrow/cpp/src/arrow/filesystem/util_internal.cc create mode 100644 src/arrow/cpp/src/arrow/filesystem/util_internal.h create mode 100644 src/arrow/cpp/src/arrow/flight/ArrowFlightConfig.cmake.in create mode 100644 src/arrow/cpp/src/arrow/flight/ArrowFlightTestingConfig.cmake.in create mode 100644 src/arrow/cpp/src/arrow/flight/CMakeLists.txt create mode 100644 src/arrow/cpp/src/arrow/flight/README.md create mode 100644 src/arrow/cpp/src/arrow/flight/api.h create mode 100644 src/arrow/cpp/src/arrow/flight/arrow-flight-testing.pc.in create mode 100644 src/arrow/cpp/src/arrow/flight/arrow-flight.pc.in create mode 100644 src/arrow/cpp/src/arrow/flight/client.cc create mode 100644 src/arrow/cpp/src/arrow/flight/client.h create mode 100644 src/arrow/cpp/src/arrow/flight/client_auth.h create mode 100644 src/arrow/cpp/src/arrow/flight/client_cookie_middleware.cc create mode 100644 src/arrow/cpp/src/arrow/flight/client_cookie_middleware.h create mode 100644 src/arrow/cpp/src/arrow/flight/client_header_internal.cc create mode 100644 src/arrow/cpp/src/arrow/flight/client_header_internal.h create mode 100644 src/arrow/cpp/src/arrow/flight/client_middleware.h create mode 100644 src/arrow/cpp/src/arrow/flight/customize_protobuf.h create mode 100644 src/arrow/cpp/src/arrow/flight/flight_benchmark.cc create mode 100644 src/arrow/cpp/src/arrow/flight/flight_test.cc create mode 100644 src/arrow/cpp/src/arrow/flight/internal.cc create mode 100644 src/arrow/cpp/src/arrow/flight/internal.h create mode 100644 src/arrow/cpp/src/arrow/flight/middleware.h create mode 100644 src/arrow/cpp/src/arrow/flight/middleware_internal.h create mode 100644 src/arrow/cpp/src/arrow/flight/pch.h create mode 100644 src/arrow/cpp/src/arrow/flight/perf.proto create mode 100644 src/arrow/cpp/src/arrow/flight/perf_server.cc create mode 100644 src/arrow/cpp/src/arrow/flight/platform.h create mode 100644 src/arrow/cpp/src/arrow/flight/protocol_internal.cc create mode 100644 src/arrow/cpp/src/arrow/flight/protocol_internal.h create mode 100644 src/arrow/cpp/src/arrow/flight/serialization_internal.cc create mode 100644 src/arrow/cpp/src/arrow/flight/serialization_internal.h create mode 100644 src/arrow/cpp/src/arrow/flight/server.cc create mode 100644 src/arrow/cpp/src/arrow/flight/server.h create mode 100644 src/arrow/cpp/src/arrow/flight/server_auth.cc create mode 100644 src/arrow/cpp/src/arrow/flight/server_auth.h create mode 100644 src/arrow/cpp/src/arrow/flight/server_middleware.h create mode 100644 src/arrow/cpp/src/arrow/flight/test_integration.cc create mode 100644 src/arrow/cpp/src/arrow/flight/test_integration.h create mode 100644 src/arrow/cpp/src/arrow/flight/test_integration_client.cc create mode 100644 src/arrow/cpp/src/arrow/flight/test_integration_server.cc create mode 100644 src/arrow/cpp/src/arrow/flight/test_server.cc create mode 100644 src/arrow/cpp/src/arrow/flight/test_util.cc create mode 100644 src/arrow/cpp/src/arrow/flight/test_util.h create mode 100644 src/arrow/cpp/src/arrow/flight/try_compile/check_tls_opts_127.cc create mode 100644 src/arrow/cpp/src/arrow/flight/try_compile/check_tls_opts_132.cc create mode 100644 src/arrow/cpp/src/arrow/flight/try_compile/check_tls_opts_134.cc create mode 100644 src/arrow/cpp/src/arrow/flight/try_compile/check_tls_opts_136.cc create mode 100644 src/arrow/cpp/src/arrow/flight/types.cc create mode 100644 src/arrow/cpp/src/arrow/flight/types.h create mode 100644 src/arrow/cpp/src/arrow/flight/visibility.h create mode 100644 src/arrow/cpp/src/arrow/gpu/.gitignore create mode 100644 src/arrow/cpp/src/arrow/gpu/ArrowCUDAConfig.cmake.in create mode 100644 src/arrow/cpp/src/arrow/gpu/CMakeLists.txt create mode 100644 src/arrow/cpp/src/arrow/gpu/arrow-cuda.pc.in create mode 100644 src/arrow/cpp/src/arrow/gpu/cuda_api.h create mode 100644 src/arrow/cpp/src/arrow/gpu/cuda_arrow_ipc.cc create mode 100644 src/arrow/cpp/src/arrow/gpu/cuda_arrow_ipc.h create mode 100644 src/arrow/cpp/src/arrow/gpu/cuda_benchmark.cc create mode 100644 src/arrow/cpp/src/arrow/gpu/cuda_context.cc create mode 100644 src/arrow/cpp/src/arrow/gpu/cuda_context.h create mode 100644 src/arrow/cpp/src/arrow/gpu/cuda_internal.cc create mode 100644 src/arrow/cpp/src/arrow/gpu/cuda_internal.h create mode 100644 src/arrow/cpp/src/arrow/gpu/cuda_memory.cc create mode 100644 src/arrow/cpp/src/arrow/gpu/cuda_memory.h create mode 100644 src/arrow/cpp/src/arrow/gpu/cuda_test.cc create mode 100644 src/arrow/cpp/src/arrow/gpu/cuda_version.h.in create mode 100644 src/arrow/cpp/src/arrow/io/CMakeLists.txt create mode 100644 src/arrow/cpp/src/arrow/io/api.h create mode 100644 src/arrow/cpp/src/arrow/io/buffered.cc create mode 100644 src/arrow/cpp/src/arrow/io/buffered.h create mode 100644 src/arrow/cpp/src/arrow/io/buffered_test.cc create mode 100644 src/arrow/cpp/src/arrow/io/caching.cc create mode 100644 src/arrow/cpp/src/arrow/io/caching.h create mode 100644 src/arrow/cpp/src/arrow/io/compressed.cc create mode 100644 src/arrow/cpp/src/arrow/io/compressed.h create mode 100644 src/arrow/cpp/src/arrow/io/compressed_test.cc create mode 100644 src/arrow/cpp/src/arrow/io/concurrency.h create mode 100644 src/arrow/cpp/src/arrow/io/file.cc create mode 100644 src/arrow/cpp/src/arrow/io/file.h create mode 100644 src/arrow/cpp/src/arrow/io/file_benchmark.cc create mode 100644 src/arrow/cpp/src/arrow/io/file_test.cc create mode 100644 src/arrow/cpp/src/arrow/io/hdfs.cc create mode 100644 src/arrow/cpp/src/arrow/io/hdfs.h create mode 100644 src/arrow/cpp/src/arrow/io/hdfs_internal.cc create mode 100644 src/arrow/cpp/src/arrow/io/hdfs_internal.h create mode 100644 src/arrow/cpp/src/arrow/io/hdfs_test.cc create mode 100644 src/arrow/cpp/src/arrow/io/interfaces.cc create mode 100644 src/arrow/cpp/src/arrow/io/interfaces.h create mode 100644 src/arrow/cpp/src/arrow/io/memory.cc create mode 100644 src/arrow/cpp/src/arrow/io/memory.h create mode 100644 src/arrow/cpp/src/arrow/io/memory_benchmark.cc create mode 100644 src/arrow/cpp/src/arrow/io/memory_test.cc create mode 100644 src/arrow/cpp/src/arrow/io/mman.h create mode 100644 src/arrow/cpp/src/arrow/io/slow.cc create mode 100644 src/arrow/cpp/src/arrow/io/slow.h create mode 100644 src/arrow/cpp/src/arrow/io/stdio.cc create mode 100644 src/arrow/cpp/src/arrow/io/stdio.h create mode 100644 src/arrow/cpp/src/arrow/io/test_common.cc create mode 100644 src/arrow/cpp/src/arrow/io/test_common.h create mode 100644 src/arrow/cpp/src/arrow/io/transform.cc create mode 100644 src/arrow/cpp/src/arrow/io/transform.h create mode 100644 src/arrow/cpp/src/arrow/io/type_fwd.h create mode 100644 src/arrow/cpp/src/arrow/io/util_internal.h create mode 100644 src/arrow/cpp/src/arrow/ipc/CMakeLists.txt create mode 100644 src/arrow/cpp/src/arrow/ipc/api.h create mode 100644 src/arrow/cpp/src/arrow/ipc/dictionary.cc create mode 100644 src/arrow/cpp/src/arrow/ipc/dictionary.h create mode 100644 src/arrow/cpp/src/arrow/ipc/feather.cc create mode 100644 src/arrow/cpp/src/arrow/ipc/feather.fbs create mode 100644 src/arrow/cpp/src/arrow/ipc/feather.h create mode 100644 src/arrow/cpp/src/arrow/ipc/feather_test.cc create mode 100644 src/arrow/cpp/src/arrow/ipc/file_fuzz.cc create mode 100644 src/arrow/cpp/src/arrow/ipc/file_to_stream.cc create mode 100644 src/arrow/cpp/src/arrow/ipc/generate_fuzz_corpus.cc create mode 100644 src/arrow/cpp/src/arrow/ipc/generate_tensor_fuzz_corpus.cc create mode 100644 src/arrow/cpp/src/arrow/ipc/json_simple.cc create mode 100644 src/arrow/cpp/src/arrow/ipc/json_simple.h create mode 100644 src/arrow/cpp/src/arrow/ipc/json_simple_test.cc create mode 100644 src/arrow/cpp/src/arrow/ipc/message.cc create mode 100644 src/arrow/cpp/src/arrow/ipc/message.h create mode 100644 src/arrow/cpp/src/arrow/ipc/metadata_internal.cc create mode 100644 src/arrow/cpp/src/arrow/ipc/metadata_internal.h create mode 100644 src/arrow/cpp/src/arrow/ipc/options.cc create mode 100644 src/arrow/cpp/src/arrow/ipc/options.h create mode 100644 src/arrow/cpp/src/arrow/ipc/read_write_benchmark.cc create mode 100644 src/arrow/cpp/src/arrow/ipc/read_write_test.cc create mode 100644 src/arrow/cpp/src/arrow/ipc/reader.cc create mode 100644 src/arrow/cpp/src/arrow/ipc/reader.h create mode 100644 src/arrow/cpp/src/arrow/ipc/stream_fuzz.cc create mode 100644 src/arrow/cpp/src/arrow/ipc/stream_to_file.cc create mode 100644 src/arrow/cpp/src/arrow/ipc/tensor_stream_fuzz.cc create mode 100644 src/arrow/cpp/src/arrow/ipc/tensor_test.cc create mode 100644 src/arrow/cpp/src/arrow/ipc/test_common.cc create mode 100644 src/arrow/cpp/src/arrow/ipc/test_common.h create mode 100644 src/arrow/cpp/src/arrow/ipc/type_fwd.h create mode 100644 src/arrow/cpp/src/arrow/ipc/util.h create mode 100644 src/arrow/cpp/src/arrow/ipc/writer.cc create mode 100644 src/arrow/cpp/src/arrow/ipc/writer.h create mode 100644 src/arrow/cpp/src/arrow/json/CMakeLists.txt create mode 100644 src/arrow/cpp/src/arrow/json/api.h create mode 100644 src/arrow/cpp/src/arrow/json/arrow-json.pc.in create mode 100644 src/arrow/cpp/src/arrow/json/chunked_builder.cc create mode 100644 src/arrow/cpp/src/arrow/json/chunked_builder.h create mode 100644 src/arrow/cpp/src/arrow/json/chunked_builder_test.cc create mode 100644 src/arrow/cpp/src/arrow/json/chunker.cc create mode 100644 src/arrow/cpp/src/arrow/json/chunker.h create mode 100644 src/arrow/cpp/src/arrow/json/chunker_test.cc create mode 100644 src/arrow/cpp/src/arrow/json/converter.cc create mode 100644 src/arrow/cpp/src/arrow/json/converter.h create mode 100644 src/arrow/cpp/src/arrow/json/converter_test.cc create mode 100644 src/arrow/cpp/src/arrow/json/object_parser.cc create mode 100644 src/arrow/cpp/src/arrow/json/object_parser.h create mode 100644 src/arrow/cpp/src/arrow/json/object_writer.cc create mode 100644 src/arrow/cpp/src/arrow/json/object_writer.h create mode 100644 src/arrow/cpp/src/arrow/json/options.cc create mode 100644 src/arrow/cpp/src/arrow/json/options.h create mode 100644 src/arrow/cpp/src/arrow/json/parser.cc create mode 100644 src/arrow/cpp/src/arrow/json/parser.h create mode 100644 src/arrow/cpp/src/arrow/json/parser_benchmark.cc create mode 100644 src/arrow/cpp/src/arrow/json/parser_test.cc create mode 100644 src/arrow/cpp/src/arrow/json/rapidjson_defs.h create mode 100644 src/arrow/cpp/src/arrow/json/reader.cc create mode 100644 src/arrow/cpp/src/arrow/json/reader.h create mode 100644 src/arrow/cpp/src/arrow/json/reader_test.cc create mode 100644 src/arrow/cpp/src/arrow/json/test_common.h create mode 100644 src/arrow/cpp/src/arrow/json/type_fwd.h create mode 100644 src/arrow/cpp/src/arrow/memory_pool.cc create mode 100644 src/arrow/cpp/src/arrow/memory_pool.h create mode 100644 src/arrow/cpp/src/arrow/memory_pool_benchmark.cc create mode 100644 src/arrow/cpp/src/arrow/memory_pool_test.cc create mode 100644 src/arrow/cpp/src/arrow/memory_pool_test.h create mode 100644 src/arrow/cpp/src/arrow/pch.h create mode 100644 src/arrow/cpp/src/arrow/pretty_print.cc create mode 100644 src/arrow/cpp/src/arrow/pretty_print.h create mode 100644 src/arrow/cpp/src/arrow/pretty_print_test.cc create mode 100644 src/arrow/cpp/src/arrow/public_api_test.cc create mode 100644 src/arrow/cpp/src/arrow/python/ArrowPythonConfig.cmake.in create mode 100644 src/arrow/cpp/src/arrow/python/ArrowPythonFlightConfig.cmake.in create mode 100644 src/arrow/cpp/src/arrow/python/CMakeLists.txt create mode 100644 src/arrow/cpp/src/arrow/python/api.h create mode 100644 src/arrow/cpp/src/arrow/python/arrow-python-flight.pc.in create mode 100644 src/arrow/cpp/src/arrow/python/arrow-python.pc.in create mode 100644 src/arrow/cpp/src/arrow/python/arrow_to_pandas.cc create mode 100644 src/arrow/cpp/src/arrow/python/arrow_to_pandas.h create mode 100644 src/arrow/cpp/src/arrow/python/arrow_to_python_internal.h create mode 100644 src/arrow/cpp/src/arrow/python/benchmark.cc create mode 100644 src/arrow/cpp/src/arrow/python/benchmark.h create mode 100644 src/arrow/cpp/src/arrow/python/common.cc create mode 100644 src/arrow/cpp/src/arrow/python/common.h create mode 100644 src/arrow/cpp/src/arrow/python/datetime.cc create mode 100644 src/arrow/cpp/src/arrow/python/datetime.h create mode 100644 src/arrow/cpp/src/arrow/python/decimal.cc create mode 100644 src/arrow/cpp/src/arrow/python/decimal.h create mode 100644 src/arrow/cpp/src/arrow/python/deserialize.cc create mode 100644 src/arrow/cpp/src/arrow/python/deserialize.h create mode 100644 src/arrow/cpp/src/arrow/python/extension_type.cc create mode 100644 src/arrow/cpp/src/arrow/python/extension_type.h create mode 100644 src/arrow/cpp/src/arrow/python/filesystem.cc create mode 100644 src/arrow/cpp/src/arrow/python/filesystem.h create mode 100644 src/arrow/cpp/src/arrow/python/flight.cc create mode 100644 src/arrow/cpp/src/arrow/python/flight.h create mode 100644 src/arrow/cpp/src/arrow/python/helpers.cc create mode 100644 src/arrow/cpp/src/arrow/python/helpers.h create mode 100644 src/arrow/cpp/src/arrow/python/inference.cc create mode 100644 src/arrow/cpp/src/arrow/python/inference.h create mode 100644 src/arrow/cpp/src/arrow/python/init.cc create mode 100644 src/arrow/cpp/src/arrow/python/init.h create mode 100644 src/arrow/cpp/src/arrow/python/io.cc create mode 100644 src/arrow/cpp/src/arrow/python/io.h create mode 100644 src/arrow/cpp/src/arrow/python/ipc.cc create mode 100644 src/arrow/cpp/src/arrow/python/ipc.h create mode 100644 src/arrow/cpp/src/arrow/python/iterators.h create mode 100644 src/arrow/cpp/src/arrow/python/numpy_convert.cc create mode 100644 src/arrow/cpp/src/arrow/python/numpy_convert.h create mode 100644 src/arrow/cpp/src/arrow/python/numpy_internal.h create mode 100644 src/arrow/cpp/src/arrow/python/numpy_interop.h create mode 100644 src/arrow/cpp/src/arrow/python/numpy_to_arrow.cc create mode 100644 src/arrow/cpp/src/arrow/python/numpy_to_arrow.h create mode 100644 src/arrow/cpp/src/arrow/python/pch.h create mode 100644 src/arrow/cpp/src/arrow/python/platform.h create mode 100644 src/arrow/cpp/src/arrow/python/pyarrow.cc create mode 100644 src/arrow/cpp/src/arrow/python/pyarrow.h create mode 100644 src/arrow/cpp/src/arrow/python/pyarrow_api.h create mode 100644 src/arrow/cpp/src/arrow/python/pyarrow_lib.h create mode 100644 src/arrow/cpp/src/arrow/python/python_test.cc create mode 100644 src/arrow/cpp/src/arrow/python/python_to_arrow.cc create mode 100644 src/arrow/cpp/src/arrow/python/python_to_arrow.h create mode 100644 src/arrow/cpp/src/arrow/python/serialize.cc create mode 100644 src/arrow/cpp/src/arrow/python/serialize.h create mode 100644 src/arrow/cpp/src/arrow/python/type_traits.h create mode 100644 src/arrow/cpp/src/arrow/python/util/CMakeLists.txt create mode 100644 src/arrow/cpp/src/arrow/python/util/test_main.cc create mode 100644 src/arrow/cpp/src/arrow/python/visibility.h create mode 100644 src/arrow/cpp/src/arrow/record_batch.cc create mode 100644 src/arrow/cpp/src/arrow/record_batch.h create mode 100644 src/arrow/cpp/src/arrow/record_batch_test.cc create mode 100644 src/arrow/cpp/src/arrow/result.cc create mode 100644 src/arrow/cpp/src/arrow/result.h create mode 100644 src/arrow/cpp/src/arrow/result_internal.h create mode 100644 src/arrow/cpp/src/arrow/result_test.cc create mode 100644 src/arrow/cpp/src/arrow/scalar.cc create mode 100644 src/arrow/cpp/src/arrow/scalar.h create mode 100644 src/arrow/cpp/src/arrow/scalar_test.cc create mode 100644 src/arrow/cpp/src/arrow/sparse_tensor.cc create mode 100644 src/arrow/cpp/src/arrow/sparse_tensor.h create mode 100644 src/arrow/cpp/src/arrow/sparse_tensor_test.cc create mode 100644 src/arrow/cpp/src/arrow/status.cc create mode 100644 src/arrow/cpp/src/arrow/status.h create mode 100644 src/arrow/cpp/src/arrow/status_test.cc create mode 100644 src/arrow/cpp/src/arrow/stl.h create mode 100644 src/arrow/cpp/src/arrow/stl_allocator.h create mode 100644 src/arrow/cpp/src/arrow/stl_iterator.h create mode 100644 src/arrow/cpp/src/arrow/stl_iterator_test.cc create mode 100644 src/arrow/cpp/src/arrow/stl_test.cc create mode 100644 src/arrow/cpp/src/arrow/symbols.map create mode 100644 src/arrow/cpp/src/arrow/table.cc create mode 100644 src/arrow/cpp/src/arrow/table.h create mode 100644 src/arrow/cpp/src/arrow/table_builder.cc create mode 100644 src/arrow/cpp/src/arrow/table_builder.h create mode 100644 src/arrow/cpp/src/arrow/table_builder_test.cc create mode 100644 src/arrow/cpp/src/arrow/table_test.cc create mode 100644 src/arrow/cpp/src/arrow/tensor.cc create mode 100644 src/arrow/cpp/src/arrow/tensor.h create mode 100644 src/arrow/cpp/src/arrow/tensor/CMakeLists.txt create mode 100644 src/arrow/cpp/src/arrow/tensor/converter.h create mode 100644 src/arrow/cpp/src/arrow/tensor/converter_internal.h create mode 100644 src/arrow/cpp/src/arrow/tensor/coo_converter.cc create mode 100644 src/arrow/cpp/src/arrow/tensor/csf_converter.cc create mode 100644 src/arrow/cpp/src/arrow/tensor/csx_converter.cc create mode 100644 src/arrow/cpp/src/arrow/tensor/tensor_conversion_benchmark.cc create mode 100644 src/arrow/cpp/src/arrow/tensor_test.cc create mode 100644 src/arrow/cpp/src/arrow/testing/CMakeLists.txt create mode 100644 src/arrow/cpp/src/arrow/testing/async_test_util.h create mode 100644 src/arrow/cpp/src/arrow/testing/executor_util.h create mode 100644 src/arrow/cpp/src/arrow/testing/extension_type.h create mode 100644 src/arrow/cpp/src/arrow/testing/future_util.h create mode 100644 src/arrow/cpp/src/arrow/testing/generator.cc create mode 100644 src/arrow/cpp/src/arrow/testing/generator.h create mode 100644 src/arrow/cpp/src/arrow/testing/gtest_common.h create mode 100644 src/arrow/cpp/src/arrow/testing/gtest_compat.h create mode 100644 src/arrow/cpp/src/arrow/testing/gtest_util.cc create mode 100644 src/arrow/cpp/src/arrow/testing/gtest_util.h create mode 100644 src/arrow/cpp/src/arrow/testing/json_integration.cc create mode 100644 src/arrow/cpp/src/arrow/testing/json_integration.h create mode 100644 src/arrow/cpp/src/arrow/testing/json_integration_test.cc create mode 100644 src/arrow/cpp/src/arrow/testing/json_internal.cc create mode 100644 src/arrow/cpp/src/arrow/testing/json_internal.h create mode 100644 src/arrow/cpp/src/arrow/testing/matchers.h create mode 100644 src/arrow/cpp/src/arrow/testing/pch.h create mode 100644 src/arrow/cpp/src/arrow/testing/random.cc create mode 100644 src/arrow/cpp/src/arrow/testing/random.h create mode 100644 src/arrow/cpp/src/arrow/testing/random_test.cc create mode 100644 src/arrow/cpp/src/arrow/testing/uniform_real.h create mode 100644 src/arrow/cpp/src/arrow/testing/util.cc create mode 100644 src/arrow/cpp/src/arrow/testing/util.h create mode 100644 src/arrow/cpp/src/arrow/testing/visibility.h create mode 100644 src/arrow/cpp/src/arrow/type.cc create mode 100644 src/arrow/cpp/src/arrow/type.h create mode 100644 src/arrow/cpp/src/arrow/type_benchmark.cc create mode 100644 src/arrow/cpp/src/arrow/type_fwd.h create mode 100644 src/arrow/cpp/src/arrow/type_test.cc create mode 100644 src/arrow/cpp/src/arrow/type_traits.h create mode 100644 src/arrow/cpp/src/arrow/util/CMakeLists.txt create mode 100644 src/arrow/cpp/src/arrow/util/algorithm.h create mode 100644 src/arrow/cpp/src/arrow/util/align_util.h create mode 100644 src/arrow/cpp/src/arrow/util/align_util_test.cc create mode 100644 src/arrow/cpp/src/arrow/util/aligned_storage.h create mode 100644 src/arrow/cpp/src/arrow/util/async_generator.h create mode 100644 src/arrow/cpp/src/arrow/util/async_generator_test.cc create mode 100644 src/arrow/cpp/src/arrow/util/async_util.cc create mode 100644 src/arrow/cpp/src/arrow/util/async_util.h create mode 100644 src/arrow/cpp/src/arrow/util/async_util_test.cc create mode 100644 src/arrow/cpp/src/arrow/util/atomic_shared_ptr.h create mode 100644 src/arrow/cpp/src/arrow/util/base64.h create mode 100644 src/arrow/cpp/src/arrow/util/basic_decimal.cc create mode 100644 src/arrow/cpp/src/arrow/util/basic_decimal.h create mode 100644 src/arrow/cpp/src/arrow/util/benchmark_main.cc create mode 100644 src/arrow/cpp/src/arrow/util/benchmark_util.h create mode 100644 src/arrow/cpp/src/arrow/util/bit_block_counter.cc create mode 100644 src/arrow/cpp/src/arrow/util/bit_block_counter.h create mode 100644 src/arrow/cpp/src/arrow/util/bit_block_counter_benchmark.cc create mode 100644 src/arrow/cpp/src/arrow/util/bit_block_counter_test.cc create mode 100644 src/arrow/cpp/src/arrow/util/bit_run_reader.cc create mode 100644 src/arrow/cpp/src/arrow/util/bit_run_reader.h create mode 100644 src/arrow/cpp/src/arrow/util/bit_stream_utils.h create mode 100644 src/arrow/cpp/src/arrow/util/bit_util.cc create mode 100644 src/arrow/cpp/src/arrow/util/bit_util.h create mode 100644 src/arrow/cpp/src/arrow/util/bit_util_benchmark.cc create mode 100644 src/arrow/cpp/src/arrow/util/bit_util_test.cc create mode 100644 src/arrow/cpp/src/arrow/util/bitmap.cc create mode 100644 src/arrow/cpp/src/arrow/util/bitmap.h create mode 100644 src/arrow/cpp/src/arrow/util/bitmap_builders.cc create mode 100644 src/arrow/cpp/src/arrow/util/bitmap_builders.h create mode 100644 src/arrow/cpp/src/arrow/util/bitmap_generate.h create mode 100644 src/arrow/cpp/src/arrow/util/bitmap_ops.cc create mode 100644 src/arrow/cpp/src/arrow/util/bitmap_ops.h create mode 100644 src/arrow/cpp/src/arrow/util/bitmap_reader.h create mode 100644 src/arrow/cpp/src/arrow/util/bitmap_reader_benchmark.cc create mode 100644 src/arrow/cpp/src/arrow/util/bitmap_visit.h create mode 100644 src/arrow/cpp/src/arrow/util/bitmap_writer.h create mode 100644 src/arrow/cpp/src/arrow/util/bitset_stack.h create mode 100644 src/arrow/cpp/src/arrow/util/bpacking.cc create mode 100644 src/arrow/cpp/src/arrow/util/bpacking.h create mode 100644 src/arrow/cpp/src/arrow/util/bpacking64_codegen.py create mode 100644 src/arrow/cpp/src/arrow/util/bpacking64_default.h create mode 100644 src/arrow/cpp/src/arrow/util/bpacking_avx2.cc create mode 100644 src/arrow/cpp/src/arrow/util/bpacking_avx2.h create mode 100644 src/arrow/cpp/src/arrow/util/bpacking_avx512.cc create mode 100644 src/arrow/cpp/src/arrow/util/bpacking_avx512.h create mode 100644 src/arrow/cpp/src/arrow/util/bpacking_default.h create mode 100644 src/arrow/cpp/src/arrow/util/bpacking_neon.cc create mode 100644 src/arrow/cpp/src/arrow/util/bpacking_neon.h create mode 100644 src/arrow/cpp/src/arrow/util/bpacking_simd128_generated.h create mode 100644 src/arrow/cpp/src/arrow/util/bpacking_simd256_generated.h create mode 100644 src/arrow/cpp/src/arrow/util/bpacking_simd512_generated.h create mode 100644 src/arrow/cpp/src/arrow/util/bpacking_simd_codegen.py create mode 100644 src/arrow/cpp/src/arrow/util/bpacking_simd_internal.h create mode 100644 src/arrow/cpp/src/arrow/util/byte_stream_split.h create mode 100644 src/arrow/cpp/src/arrow/util/cache_benchmark.cc create mode 100644 src/arrow/cpp/src/arrow/util/cache_internal.h create mode 100644 src/arrow/cpp/src/arrow/util/cache_test.cc create mode 100644 src/arrow/cpp/src/arrow/util/cancel.cc create mode 100644 src/arrow/cpp/src/arrow/util/cancel.h create mode 100644 src/arrow/cpp/src/arrow/util/cancel_test.cc create mode 100644 src/arrow/cpp/src/arrow/util/checked_cast.h create mode 100644 src/arrow/cpp/src/arrow/util/checked_cast_test.cc create mode 100644 src/arrow/cpp/src/arrow/util/compare.h create mode 100644 src/arrow/cpp/src/arrow/util/compression.cc create mode 100644 src/arrow/cpp/src/arrow/util/compression.h create mode 100644 src/arrow/cpp/src/arrow/util/compression_benchmark.cc create mode 100644 src/arrow/cpp/src/arrow/util/compression_brotli.cc create mode 100644 src/arrow/cpp/src/arrow/util/compression_bz2.cc create mode 100644 src/arrow/cpp/src/arrow/util/compression_internal.h create mode 100644 src/arrow/cpp/src/arrow/util/compression_lz4.cc create mode 100644 src/arrow/cpp/src/arrow/util/compression_snappy.cc create mode 100644 src/arrow/cpp/src/arrow/util/compression_test.cc create mode 100644 src/arrow/cpp/src/arrow/util/compression_zlib.cc create mode 100644 src/arrow/cpp/src/arrow/util/compression_zstd.cc create mode 100644 src/arrow/cpp/src/arrow/util/concurrent_map.h create mode 100644 src/arrow/cpp/src/arrow/util/config.h.cmake create mode 100644 src/arrow/cpp/src/arrow/util/converter.h create mode 100644 src/arrow/cpp/src/arrow/util/counting_semaphore.cc create mode 100644 src/arrow/cpp/src/arrow/util/counting_semaphore.h create mode 100644 src/arrow/cpp/src/arrow/util/counting_semaphore_test.cc create mode 100644 src/arrow/cpp/src/arrow/util/cpu_info.cc create mode 100644 src/arrow/cpp/src/arrow/util/cpu_info.h create mode 100644 src/arrow/cpp/src/arrow/util/decimal.cc create mode 100644 src/arrow/cpp/src/arrow/util/decimal.h create mode 100644 src/arrow/cpp/src/arrow/util/decimal_benchmark.cc create mode 100644 src/arrow/cpp/src/arrow/util/decimal_test.cc create mode 100644 src/arrow/cpp/src/arrow/util/delimiting.cc create mode 100644 src/arrow/cpp/src/arrow/util/delimiting.h create mode 100644 src/arrow/cpp/src/arrow/util/dispatch.h create mode 100644 src/arrow/cpp/src/arrow/util/double_conversion.h create mode 100644 src/arrow/cpp/src/arrow/util/endian.h create mode 100644 src/arrow/cpp/src/arrow/util/formatting.cc create mode 100644 src/arrow/cpp/src/arrow/util/formatting.h create mode 100644 src/arrow/cpp/src/arrow/util/formatting_util_test.cc create mode 100644 src/arrow/cpp/src/arrow/util/functional.h create mode 100644 src/arrow/cpp/src/arrow/util/future.cc create mode 100644 src/arrow/cpp/src/arrow/util/future.h create mode 100644 src/arrow/cpp/src/arrow/util/future_iterator.h create mode 100644 src/arrow/cpp/src/arrow/util/future_test.cc create mode 100644 src/arrow/cpp/src/arrow/util/hash_util.h create mode 100644 src/arrow/cpp/src/arrow/util/hashing.h create mode 100644 src/arrow/cpp/src/arrow/util/hashing_benchmark.cc create mode 100644 src/arrow/cpp/src/arrow/util/hashing_test.cc create mode 100644 src/arrow/cpp/src/arrow/util/int128_internal.h create mode 100644 src/arrow/cpp/src/arrow/util/int_util.cc create mode 100644 src/arrow/cpp/src/arrow/util/int_util.h create mode 100644 src/arrow/cpp/src/arrow/util/int_util_benchmark.cc create mode 100644 src/arrow/cpp/src/arrow/util/int_util_internal.h create mode 100644 src/arrow/cpp/src/arrow/util/int_util_test.cc create mode 100644 src/arrow/cpp/src/arrow/util/io_util.cc create mode 100644 src/arrow/cpp/src/arrow/util/io_util.h create mode 100644 src/arrow/cpp/src/arrow/util/io_util_test.cc create mode 100644 src/arrow/cpp/src/arrow/util/io_util_test.manifest create mode 100644 src/arrow/cpp/src/arrow/util/io_util_test.rc create mode 100644 src/arrow/cpp/src/arrow/util/iterator.h create mode 100644 src/arrow/cpp/src/arrow/util/iterator_test.cc create mode 100644 src/arrow/cpp/src/arrow/util/key_value_metadata.cc create mode 100644 src/arrow/cpp/src/arrow/util/key_value_metadata.h create mode 100644 src/arrow/cpp/src/arrow/util/key_value_metadata_test.cc create mode 100644 src/arrow/cpp/src/arrow/util/launder.h create mode 100644 src/arrow/cpp/src/arrow/util/logging.cc create mode 100644 src/arrow/cpp/src/arrow/util/logging.h create mode 100644 src/arrow/cpp/src/arrow/util/logging_test.cc create mode 100644 src/arrow/cpp/src/arrow/util/machine_benchmark.cc create mode 100644 src/arrow/cpp/src/arrow/util/macros.h create mode 100644 src/arrow/cpp/src/arrow/util/make_unique.h create mode 100644 src/arrow/cpp/src/arrow/util/map.h create mode 100644 src/arrow/cpp/src/arrow/util/math_constants.h create mode 100644 src/arrow/cpp/src/arrow/util/memory.cc create mode 100644 src/arrow/cpp/src/arrow/util/memory.h create mode 100644 src/arrow/cpp/src/arrow/util/mutex.cc create mode 100644 src/arrow/cpp/src/arrow/util/mutex.h create mode 100644 src/arrow/cpp/src/arrow/util/optional.h create mode 100644 src/arrow/cpp/src/arrow/util/parallel.h create mode 100644 src/arrow/cpp/src/arrow/util/pcg_random.h create mode 100644 src/arrow/cpp/src/arrow/util/print.h create mode 100644 src/arrow/cpp/src/arrow/util/queue.h create mode 100644 src/arrow/cpp/src/arrow/util/queue_benchmark.cc create mode 100644 src/arrow/cpp/src/arrow/util/queue_test.cc create mode 100644 src/arrow/cpp/src/arrow/util/range.h create mode 100644 src/arrow/cpp/src/arrow/util/range_benchmark.cc create mode 100644 src/arrow/cpp/src/arrow/util/range_test.cc create mode 100644 src/arrow/cpp/src/arrow/util/reflection_internal.h create mode 100644 src/arrow/cpp/src/arrow/util/reflection_test.cc create mode 100644 src/arrow/cpp/src/arrow/util/rle_encoding.h create mode 100644 src/arrow/cpp/src/arrow/util/rle_encoding_test.cc create mode 100644 src/arrow/cpp/src/arrow/util/simd.h create mode 100644 src/arrow/cpp/src/arrow/util/small_vector.h create mode 100644 src/arrow/cpp/src/arrow/util/small_vector_benchmark.cc create mode 100644 src/arrow/cpp/src/arrow/util/small_vector_test.cc create mode 100644 src/arrow/cpp/src/arrow/util/sort.h create mode 100644 src/arrow/cpp/src/arrow/util/spaced.h create mode 100644 src/arrow/cpp/src/arrow/util/stl_util_test.cc create mode 100644 src/arrow/cpp/src/arrow/util/stopwatch.h create mode 100644 src/arrow/cpp/src/arrow/util/string.cc create mode 100644 src/arrow/cpp/src/arrow/util/string.h create mode 100644 src/arrow/cpp/src/arrow/util/string_builder.cc create mode 100644 src/arrow/cpp/src/arrow/util/string_builder.h create mode 100644 src/arrow/cpp/src/arrow/util/string_test.cc create mode 100644 src/arrow/cpp/src/arrow/util/string_view.h create mode 100644 src/arrow/cpp/src/arrow/util/task_group.cc create mode 100644 src/arrow/cpp/src/arrow/util/task_group.h create mode 100644 src/arrow/cpp/src/arrow/util/task_group_test.cc create mode 100644 src/arrow/cpp/src/arrow/util/tdigest.cc create mode 100644 src/arrow/cpp/src/arrow/util/tdigest.h create mode 100644 src/arrow/cpp/src/arrow/util/tdigest_benchmark.cc create mode 100644 src/arrow/cpp/src/arrow/util/tdigest_test.cc create mode 100644 src/arrow/cpp/src/arrow/util/test_common.cc create mode 100644 src/arrow/cpp/src/arrow/util/test_common.h create mode 100644 src/arrow/cpp/src/arrow/util/thread_pool.cc create mode 100644 src/arrow/cpp/src/arrow/util/thread_pool.h create mode 100644 src/arrow/cpp/src/arrow/util/thread_pool_benchmark.cc create mode 100644 src/arrow/cpp/src/arrow/util/thread_pool_test.cc create mode 100644 src/arrow/cpp/src/arrow/util/time.cc create mode 100644 src/arrow/cpp/src/arrow/util/time.h create mode 100644 src/arrow/cpp/src/arrow/util/time_test.cc create mode 100644 src/arrow/cpp/src/arrow/util/trie.cc create mode 100644 src/arrow/cpp/src/arrow/util/trie.h create mode 100644 src/arrow/cpp/src/arrow/util/trie_benchmark.cc create mode 100644 src/arrow/cpp/src/arrow/util/trie_test.cc create mode 100644 src/arrow/cpp/src/arrow/util/type_fwd.h create mode 100644 src/arrow/cpp/src/arrow/util/type_traits.h create mode 100644 src/arrow/cpp/src/arrow/util/ubsan.h create mode 100644 src/arrow/cpp/src/arrow/util/unreachable.cc create mode 100644 src/arrow/cpp/src/arrow/util/unreachable.h create mode 100644 src/arrow/cpp/src/arrow/util/uri.cc create mode 100644 src/arrow/cpp/src/arrow/util/uri.h create mode 100644 src/arrow/cpp/src/arrow/util/uri_test.cc create mode 100644 src/arrow/cpp/src/arrow/util/utf8.cc create mode 100644 src/arrow/cpp/src/arrow/util/utf8.h create mode 100644 src/arrow/cpp/src/arrow/util/utf8_util_benchmark.cc create mode 100644 src/arrow/cpp/src/arrow/util/utf8_util_test.cc create mode 100644 src/arrow/cpp/src/arrow/util/value_parsing.cc create mode 100644 src/arrow/cpp/src/arrow/util/value_parsing.h create mode 100644 src/arrow/cpp/src/arrow/util/value_parsing_benchmark.cc create mode 100644 src/arrow/cpp/src/arrow/util/value_parsing_test.cc create mode 100644 src/arrow/cpp/src/arrow/util/variant.h create mode 100644 src/arrow/cpp/src/arrow/util/variant_benchmark.cc create mode 100644 src/arrow/cpp/src/arrow/util/variant_test.cc create mode 100644 src/arrow/cpp/src/arrow/util/vector.h create mode 100644 src/arrow/cpp/src/arrow/util/visibility.h create mode 100644 src/arrow/cpp/src/arrow/util/windows_compatibility.h create mode 100644 src/arrow/cpp/src/arrow/util/windows_fixup.h create mode 100644 src/arrow/cpp/src/arrow/vendored/CMakeLists.txt create mode 100644 src/arrow/cpp/src/arrow/vendored/ProducerConsumerQueue.h create mode 100644 src/arrow/cpp/src/arrow/vendored/base64.cpp create mode 100644 src/arrow/cpp/src/arrow/vendored/datetime.h create mode 100644 src/arrow/cpp/src/arrow/vendored/datetime/CMakeLists.txt create mode 100644 src/arrow/cpp/src/arrow/vendored/datetime/README.md create mode 100644 src/arrow/cpp/src/arrow/vendored/datetime/date.h create mode 100644 src/arrow/cpp/src/arrow/vendored/datetime/ios.h create mode 100644 src/arrow/cpp/src/arrow/vendored/datetime/ios.mm create mode 100644 src/arrow/cpp/src/arrow/vendored/datetime/tz.cpp create mode 100644 src/arrow/cpp/src/arrow/vendored/datetime/tz.h create mode 100644 src/arrow/cpp/src/arrow/vendored/datetime/tz_private.h create mode 100644 src/arrow/cpp/src/arrow/vendored/datetime/visibility.h create mode 100644 src/arrow/cpp/src/arrow/vendored/double-conversion/.gitignore create mode 100644 src/arrow/cpp/src/arrow/vendored/double-conversion/CMakeLists.txt create mode 100644 src/arrow/cpp/src/arrow/vendored/double-conversion/README.md create mode 100644 src/arrow/cpp/src/arrow/vendored/double-conversion/bignum-dtoa.cc create mode 100644 src/arrow/cpp/src/arrow/vendored/double-conversion/bignum-dtoa.h create mode 100644 src/arrow/cpp/src/arrow/vendored/double-conversion/bignum.cc create mode 100644 src/arrow/cpp/src/arrow/vendored/double-conversion/bignum.h create mode 100644 src/arrow/cpp/src/arrow/vendored/double-conversion/cached-powers.cc create mode 100644 src/arrow/cpp/src/arrow/vendored/double-conversion/cached-powers.h create mode 100644 src/arrow/cpp/src/arrow/vendored/double-conversion/diy-fp.cc create mode 100644 src/arrow/cpp/src/arrow/vendored/double-conversion/diy-fp.h create mode 100644 src/arrow/cpp/src/arrow/vendored/double-conversion/double-conversion.cc create mode 100644 src/arrow/cpp/src/arrow/vendored/double-conversion/double-conversion.h create mode 100644 src/arrow/cpp/src/arrow/vendored/double-conversion/fast-dtoa.cc create mode 100644 src/arrow/cpp/src/arrow/vendored/double-conversion/fast-dtoa.h create mode 100644 src/arrow/cpp/src/arrow/vendored/double-conversion/fixed-dtoa.cc create mode 100644 src/arrow/cpp/src/arrow/vendored/double-conversion/fixed-dtoa.h create mode 100644 src/arrow/cpp/src/arrow/vendored/double-conversion/ieee.h create mode 100644 src/arrow/cpp/src/arrow/vendored/double-conversion/strtod.cc create mode 100644 src/arrow/cpp/src/arrow/vendored/double-conversion/strtod.h create mode 100644 src/arrow/cpp/src/arrow/vendored/double-conversion/utils.h create mode 100644 src/arrow/cpp/src/arrow/vendored/fast_float/README.md create mode 100644 src/arrow/cpp/src/arrow/vendored/fast_float/ascii_number.h create mode 100644 src/arrow/cpp/src/arrow/vendored/fast_float/decimal_to_binary.h create mode 100644 src/arrow/cpp/src/arrow/vendored/fast_float/fast_float.h create mode 100644 src/arrow/cpp/src/arrow/vendored/fast_float/fast_table.h create mode 100644 src/arrow/cpp/src/arrow/vendored/fast_float/float_common.h create mode 100644 src/arrow/cpp/src/arrow/vendored/fast_float/parse_number.h create mode 100644 src/arrow/cpp/src/arrow/vendored/fast_float/simple_decimal_conversion.h create mode 100644 src/arrow/cpp/src/arrow/vendored/musl/README.md create mode 100644 src/arrow/cpp/src/arrow/vendored/musl/strptime.c create mode 100644 src/arrow/cpp/src/arrow/vendored/optional.hpp create mode 100644 src/arrow/cpp/src/arrow/vendored/pcg/README.md create mode 100644 src/arrow/cpp/src/arrow/vendored/pcg/pcg_extras.hpp create mode 100644 src/arrow/cpp/src/arrow/vendored/pcg/pcg_random.hpp create mode 100644 src/arrow/cpp/src/arrow/vendored/pcg/pcg_uint128.hpp create mode 100644 src/arrow/cpp/src/arrow/vendored/portable-snippets/README.md create mode 100644 src/arrow/cpp/src/arrow/vendored/portable-snippets/safe-math.h create mode 100644 src/arrow/cpp/src/arrow/vendored/string_view.hpp create mode 100644 src/arrow/cpp/src/arrow/vendored/strptime.h create mode 100644 src/arrow/cpp/src/arrow/vendored/uriparser/README.md create mode 100644 src/arrow/cpp/src/arrow/vendored/uriparser/Uri.h create mode 100644 src/arrow/cpp/src/arrow/vendored/uriparser/UriBase.h create mode 100644 src/arrow/cpp/src/arrow/vendored/uriparser/UriCommon.c create mode 100644 src/arrow/cpp/src/arrow/vendored/uriparser/UriCommon.h create mode 100644 src/arrow/cpp/src/arrow/vendored/uriparser/UriCompare.c create mode 100644 src/arrow/cpp/src/arrow/vendored/uriparser/UriDefsAnsi.h create mode 100644 src/arrow/cpp/src/arrow/vendored/uriparser/UriDefsConfig.h create mode 100644 src/arrow/cpp/src/arrow/vendored/uriparser/UriDefsUnicode.h create mode 100644 src/arrow/cpp/src/arrow/vendored/uriparser/UriEscape.c create mode 100644 src/arrow/cpp/src/arrow/vendored/uriparser/UriFile.c create mode 100644 src/arrow/cpp/src/arrow/vendored/uriparser/UriIp4.c create mode 100644 src/arrow/cpp/src/arrow/vendored/uriparser/UriIp4.h create mode 100644 src/arrow/cpp/src/arrow/vendored/uriparser/UriIp4Base.c create mode 100644 src/arrow/cpp/src/arrow/vendored/uriparser/UriIp4Base.h create mode 100644 src/arrow/cpp/src/arrow/vendored/uriparser/UriMemory.c create mode 100644 src/arrow/cpp/src/arrow/vendored/uriparser/UriMemory.h create mode 100644 src/arrow/cpp/src/arrow/vendored/uriparser/UriNormalize.c create mode 100644 src/arrow/cpp/src/arrow/vendored/uriparser/UriNormalizeBase.c create mode 100644 src/arrow/cpp/src/arrow/vendored/uriparser/UriNormalizeBase.h create mode 100644 src/arrow/cpp/src/arrow/vendored/uriparser/UriParse.c create mode 100644 src/arrow/cpp/src/arrow/vendored/uriparser/UriParseBase.c create mode 100644 src/arrow/cpp/src/arrow/vendored/uriparser/UriParseBase.h create mode 100644 src/arrow/cpp/src/arrow/vendored/uriparser/UriQuery.c create mode 100644 src/arrow/cpp/src/arrow/vendored/uriparser/UriRecompose.c create mode 100644 src/arrow/cpp/src/arrow/vendored/uriparser/UriResolve.c create mode 100644 src/arrow/cpp/src/arrow/vendored/uriparser/UriShorten.c create mode 100644 src/arrow/cpp/src/arrow/vendored/uriparser/config.h create mode 100644 src/arrow/cpp/src/arrow/vendored/utfcpp/README.md create mode 100644 src/arrow/cpp/src/arrow/vendored/utfcpp/checked.h create mode 100644 src/arrow/cpp/src/arrow/vendored/utfcpp/core.h create mode 100644 src/arrow/cpp/src/arrow/vendored/utfcpp/cpp11.h create mode 100644 src/arrow/cpp/src/arrow/vendored/xxhash.h create mode 100644 src/arrow/cpp/src/arrow/vendored/xxhash/README.md create mode 100644 src/arrow/cpp/src/arrow/vendored/xxhash/xxhash.c create mode 100644 src/arrow/cpp/src/arrow/vendored/xxhash/xxhash.h create mode 100644 src/arrow/cpp/src/arrow/visitor.cc create mode 100644 src/arrow/cpp/src/arrow/visitor.h create mode 100644 src/arrow/cpp/src/arrow/visitor_inline.h create mode 100644 src/arrow/cpp/src/gandiva/CMakeLists.txt create mode 100644 src/arrow/cpp/src/gandiva/GandivaConfig.cmake.in create mode 100644 src/arrow/cpp/src/gandiva/annotator.cc create mode 100644 src/arrow/cpp/src/gandiva/annotator.h create mode 100644 src/arrow/cpp/src/gandiva/annotator_test.cc create mode 100644 src/arrow/cpp/src/gandiva/arrow.h create mode 100644 src/arrow/cpp/src/gandiva/basic_decimal_scalar.h create mode 100644 src/arrow/cpp/src/gandiva/bitmap_accumulator.cc create mode 100644 src/arrow/cpp/src/gandiva/bitmap_accumulator.h create mode 100644 src/arrow/cpp/src/gandiva/bitmap_accumulator_test.cc create mode 100644 src/arrow/cpp/src/gandiva/cache.cc create mode 100644 src/arrow/cpp/src/gandiva/cache.h create mode 100644 src/arrow/cpp/src/gandiva/cast_time.cc create mode 100644 src/arrow/cpp/src/gandiva/compiled_expr.h create mode 100644 src/arrow/cpp/src/gandiva/condition.h create mode 100644 src/arrow/cpp/src/gandiva/configuration.cc create mode 100644 src/arrow/cpp/src/gandiva/configuration.h create mode 100644 src/arrow/cpp/src/gandiva/context_helper.cc create mode 100644 src/arrow/cpp/src/gandiva/date_utils.cc create mode 100644 src/arrow/cpp/src/gandiva/date_utils.h create mode 100644 src/arrow/cpp/src/gandiva/decimal_ir.cc create mode 100644 src/arrow/cpp/src/gandiva/decimal_ir.h create mode 100644 src/arrow/cpp/src/gandiva/decimal_scalar.h create mode 100644 src/arrow/cpp/src/gandiva/decimal_type_util.cc create mode 100644 src/arrow/cpp/src/gandiva/decimal_type_util.h create mode 100644 src/arrow/cpp/src/gandiva/decimal_type_util_test.cc create mode 100644 src/arrow/cpp/src/gandiva/decimal_xlarge.cc create mode 100644 src/arrow/cpp/src/gandiva/decimal_xlarge.h create mode 100644 src/arrow/cpp/src/gandiva/dex.h create mode 100644 src/arrow/cpp/src/gandiva/dex_visitor.h create mode 100644 src/arrow/cpp/src/gandiva/engine.cc create mode 100644 src/arrow/cpp/src/gandiva/engine.h create mode 100644 src/arrow/cpp/src/gandiva/engine_llvm_test.cc create mode 100644 src/arrow/cpp/src/gandiva/eval_batch.h create mode 100644 src/arrow/cpp/src/gandiva/execution_context.h create mode 100644 src/arrow/cpp/src/gandiva/exported_funcs.h create mode 100644 src/arrow/cpp/src/gandiva/exported_funcs_registry.cc create mode 100644 src/arrow/cpp/src/gandiva/exported_funcs_registry.h create mode 100644 src/arrow/cpp/src/gandiva/expr_decomposer.cc create mode 100644 src/arrow/cpp/src/gandiva/expr_decomposer.h create mode 100644 src/arrow/cpp/src/gandiva/expr_decomposer_test.cc create mode 100644 src/arrow/cpp/src/gandiva/expr_validator.cc create mode 100644 src/arrow/cpp/src/gandiva/expr_validator.h create mode 100644 src/arrow/cpp/src/gandiva/expression.cc create mode 100644 src/arrow/cpp/src/gandiva/expression.h create mode 100644 src/arrow/cpp/src/gandiva/expression_registry.cc create mode 100644 src/arrow/cpp/src/gandiva/expression_registry.h create mode 100644 src/arrow/cpp/src/gandiva/expression_registry_test.cc create mode 100644 src/arrow/cpp/src/gandiva/field_descriptor.h create mode 100644 src/arrow/cpp/src/gandiva/filter.cc create mode 100644 src/arrow/cpp/src/gandiva/filter.h create mode 100644 src/arrow/cpp/src/gandiva/formatting_utils.h create mode 100644 src/arrow/cpp/src/gandiva/func_descriptor.h create mode 100644 src/arrow/cpp/src/gandiva/function_holder.h create mode 100644 src/arrow/cpp/src/gandiva/function_holder_registry.h create mode 100644 src/arrow/cpp/src/gandiva/function_ir_builder.cc create mode 100644 src/arrow/cpp/src/gandiva/function_ir_builder.h create mode 100644 src/arrow/cpp/src/gandiva/function_registry.cc create mode 100644 src/arrow/cpp/src/gandiva/function_registry.h create mode 100644 src/arrow/cpp/src/gandiva/function_registry_arithmetic.cc create mode 100644 src/arrow/cpp/src/gandiva/function_registry_arithmetic.h create mode 100644 src/arrow/cpp/src/gandiva/function_registry_common.h create mode 100644 src/arrow/cpp/src/gandiva/function_registry_datetime.cc create mode 100644 src/arrow/cpp/src/gandiva/function_registry_datetime.h create mode 100644 src/arrow/cpp/src/gandiva/function_registry_hash.cc create mode 100644 src/arrow/cpp/src/gandiva/function_registry_hash.h create mode 100644 src/arrow/cpp/src/gandiva/function_registry_math_ops.cc create mode 100644 src/arrow/cpp/src/gandiva/function_registry_math_ops.h create mode 100644 src/arrow/cpp/src/gandiva/function_registry_string.cc create mode 100644 src/arrow/cpp/src/gandiva/function_registry_string.h create mode 100644 src/arrow/cpp/src/gandiva/function_registry_test.cc create mode 100644 src/arrow/cpp/src/gandiva/function_registry_timestamp_arithmetic.cc create mode 100644 src/arrow/cpp/src/gandiva/function_registry_timestamp_arithmetic.h create mode 100644 src/arrow/cpp/src/gandiva/function_signature.cc create mode 100644 src/arrow/cpp/src/gandiva/function_signature.h create mode 100644 src/arrow/cpp/src/gandiva/function_signature_test.cc create mode 100644 src/arrow/cpp/src/gandiva/gandiva.pc.in create mode 100644 src/arrow/cpp/src/gandiva/gandiva_aliases.h create mode 100644 src/arrow/cpp/src/gandiva/gdv_function_stubs.cc create mode 100644 src/arrow/cpp/src/gandiva/gdv_function_stubs.h create mode 100644 src/arrow/cpp/src/gandiva/gdv_function_stubs_test.cc create mode 100644 src/arrow/cpp/src/gandiva/greedy_dual_size_cache.h create mode 100644 src/arrow/cpp/src/gandiva/greedy_dual_size_cache_test.cc create mode 100644 src/arrow/cpp/src/gandiva/hash_utils.cc create mode 100644 src/arrow/cpp/src/gandiva/hash_utils.h create mode 100644 src/arrow/cpp/src/gandiva/hash_utils_test.cc create mode 100644 src/arrow/cpp/src/gandiva/in_holder.h create mode 100644 src/arrow/cpp/src/gandiva/jni/CMakeLists.txt create mode 100644 src/arrow/cpp/src/gandiva/jni/config_builder.cc create mode 100644 src/arrow/cpp/src/gandiva/jni/config_holder.cc create mode 100644 src/arrow/cpp/src/gandiva/jni/config_holder.h create mode 100644 src/arrow/cpp/src/gandiva/jni/env_helper.h create mode 100644 src/arrow/cpp/src/gandiva/jni/expression_registry_helper.cc create mode 100644 src/arrow/cpp/src/gandiva/jni/id_to_module_map.h create mode 100644 src/arrow/cpp/src/gandiva/jni/jni_common.cc create mode 100644 src/arrow/cpp/src/gandiva/jni/module_holder.h create mode 100644 src/arrow/cpp/src/gandiva/jni/symbols.map create mode 100644 src/arrow/cpp/src/gandiva/like_holder.cc create mode 100644 src/arrow/cpp/src/gandiva/like_holder.h create mode 100644 src/arrow/cpp/src/gandiva/like_holder_test.cc create mode 100644 src/arrow/cpp/src/gandiva/literal_holder.cc create mode 100644 src/arrow/cpp/src/gandiva/literal_holder.h create mode 100644 src/arrow/cpp/src/gandiva/llvm_generator.cc create mode 100644 src/arrow/cpp/src/gandiva/llvm_generator.h create mode 100644 src/arrow/cpp/src/gandiva/llvm_generator_test.cc create mode 100644 src/arrow/cpp/src/gandiva/llvm_includes.h create mode 100644 src/arrow/cpp/src/gandiva/llvm_types.cc create mode 100644 src/arrow/cpp/src/gandiva/llvm_types.h create mode 100644 src/arrow/cpp/src/gandiva/llvm_types_test.cc create mode 100644 src/arrow/cpp/src/gandiva/local_bitmaps_holder.h create mode 100644 src/arrow/cpp/src/gandiva/lvalue.h create mode 100644 src/arrow/cpp/src/gandiva/make_precompiled_bitcode.py create mode 100644 src/arrow/cpp/src/gandiva/native_function.h create mode 100644 src/arrow/cpp/src/gandiva/node.h create mode 100644 src/arrow/cpp/src/gandiva/node_visitor.h create mode 100644 src/arrow/cpp/src/gandiva/pch.h create mode 100644 src/arrow/cpp/src/gandiva/precompiled/CMakeLists.txt create mode 100644 src/arrow/cpp/src/gandiva/precompiled/arithmetic_ops.cc create mode 100644 src/arrow/cpp/src/gandiva/precompiled/arithmetic_ops_test.cc create mode 100644 src/arrow/cpp/src/gandiva/precompiled/bitmap.cc create mode 100644 src/arrow/cpp/src/gandiva/precompiled/bitmap_test.cc create mode 100644 src/arrow/cpp/src/gandiva/precompiled/decimal_ops.cc create mode 100644 src/arrow/cpp/src/gandiva/precompiled/decimal_ops.h create mode 100644 src/arrow/cpp/src/gandiva/precompiled/decimal_ops_test.cc create mode 100644 src/arrow/cpp/src/gandiva/precompiled/decimal_wrapper.cc create mode 100644 src/arrow/cpp/src/gandiva/precompiled/epoch_time_point.h create mode 100644 src/arrow/cpp/src/gandiva/precompiled/epoch_time_point_test.cc create mode 100644 src/arrow/cpp/src/gandiva/precompiled/extended_math_ops.cc create mode 100644 src/arrow/cpp/src/gandiva/precompiled/extended_math_ops_test.cc create mode 100644 src/arrow/cpp/src/gandiva/precompiled/hash.cc create mode 100644 src/arrow/cpp/src/gandiva/precompiled/hash_test.cc create mode 100644 src/arrow/cpp/src/gandiva/precompiled/print.cc create mode 100644 src/arrow/cpp/src/gandiva/precompiled/string_ops.cc create mode 100644 src/arrow/cpp/src/gandiva/precompiled/string_ops_test.cc create mode 100644 src/arrow/cpp/src/gandiva/precompiled/testing.h create mode 100644 src/arrow/cpp/src/gandiva/precompiled/time.cc create mode 100644 src/arrow/cpp/src/gandiva/precompiled/time_constants.h create mode 100644 src/arrow/cpp/src/gandiva/precompiled/time_fields.h create mode 100644 src/arrow/cpp/src/gandiva/precompiled/time_test.cc create mode 100644 src/arrow/cpp/src/gandiva/precompiled/timestamp_arithmetic.cc create mode 100644 src/arrow/cpp/src/gandiva/precompiled/types.h create mode 100644 src/arrow/cpp/src/gandiva/precompiled_bitcode.cc.in create mode 100644 src/arrow/cpp/src/gandiva/projector.cc create mode 100644 src/arrow/cpp/src/gandiva/projector.h create mode 100644 src/arrow/cpp/src/gandiva/proto/Types.proto create mode 100644 src/arrow/cpp/src/gandiva/random_generator_holder.cc create mode 100644 src/arrow/cpp/src/gandiva/random_generator_holder.h create mode 100644 src/arrow/cpp/src/gandiva/random_generator_holder_test.cc create mode 100644 src/arrow/cpp/src/gandiva/regex_util.cc create mode 100644 src/arrow/cpp/src/gandiva/regex_util.h create mode 100644 src/arrow/cpp/src/gandiva/replace_holder.cc create mode 100644 src/arrow/cpp/src/gandiva/replace_holder.h create mode 100644 src/arrow/cpp/src/gandiva/replace_holder_test.cc create mode 100644 src/arrow/cpp/src/gandiva/selection_vector.cc create mode 100644 src/arrow/cpp/src/gandiva/selection_vector.h create mode 100644 src/arrow/cpp/src/gandiva/selection_vector_impl.h create mode 100644 src/arrow/cpp/src/gandiva/selection_vector_test.cc create mode 100644 src/arrow/cpp/src/gandiva/simple_arena.h create mode 100644 src/arrow/cpp/src/gandiva/simple_arena_test.cc create mode 100644 src/arrow/cpp/src/gandiva/symbols.map create mode 100644 src/arrow/cpp/src/gandiva/tests/CMakeLists.txt create mode 100644 src/arrow/cpp/src/gandiva/tests/binary_test.cc create mode 100644 src/arrow/cpp/src/gandiva/tests/boolean_expr_test.cc create mode 100644 src/arrow/cpp/src/gandiva/tests/date_time_test.cc create mode 100644 src/arrow/cpp/src/gandiva/tests/decimal_single_test.cc create mode 100644 src/arrow/cpp/src/gandiva/tests/decimal_test.cc create mode 100644 src/arrow/cpp/src/gandiva/tests/filter_project_test.cc create mode 100644 src/arrow/cpp/src/gandiva/tests/filter_test.cc create mode 100644 src/arrow/cpp/src/gandiva/tests/generate_data.h create mode 100644 src/arrow/cpp/src/gandiva/tests/hash_test.cc create mode 100644 src/arrow/cpp/src/gandiva/tests/huge_table_test.cc create mode 100644 src/arrow/cpp/src/gandiva/tests/if_expr_test.cc create mode 100644 src/arrow/cpp/src/gandiva/tests/in_expr_test.cc create mode 100644 src/arrow/cpp/src/gandiva/tests/literal_test.cc create mode 100644 src/arrow/cpp/src/gandiva/tests/micro_benchmarks.cc create mode 100644 src/arrow/cpp/src/gandiva/tests/null_validity_test.cc create mode 100644 src/arrow/cpp/src/gandiva/tests/projector_build_validation_test.cc create mode 100644 src/arrow/cpp/src/gandiva/tests/projector_test.cc create mode 100644 src/arrow/cpp/src/gandiva/tests/test_util.h create mode 100644 src/arrow/cpp/src/gandiva/tests/timed_evaluate.h create mode 100644 src/arrow/cpp/src/gandiva/tests/to_string_test.cc create mode 100644 src/arrow/cpp/src/gandiva/tests/utf8_test.cc create mode 100644 src/arrow/cpp/src/gandiva/to_date_holder.cc create mode 100644 src/arrow/cpp/src/gandiva/to_date_holder.h create mode 100644 src/arrow/cpp/src/gandiva/to_date_holder_test.cc create mode 100644 src/arrow/cpp/src/gandiva/tree_expr_builder.cc create mode 100644 src/arrow/cpp/src/gandiva/tree_expr_builder.h create mode 100644 src/arrow/cpp/src/gandiva/tree_expr_test.cc create mode 100644 src/arrow/cpp/src/gandiva/value_validity_pair.h create mode 100644 src/arrow/cpp/src/gandiva/visibility.h create mode 100644 src/arrow/cpp/src/generated/Expression_generated.h create mode 100644 src/arrow/cpp/src/generated/File_generated.h create mode 100644 src/arrow/cpp/src/generated/Literal_generated.h create mode 100644 src/arrow/cpp/src/generated/Message_generated.h create mode 100644 src/arrow/cpp/src/generated/Plan_generated.h create mode 100644 src/arrow/cpp/src/generated/Relation_generated.h create mode 100644 src/arrow/cpp/src/generated/Schema_generated.h create mode 100644 src/arrow/cpp/src/generated/SparseTensor_generated.h create mode 100644 src/arrow/cpp/src/generated/Tensor_generated.h create mode 100644 src/arrow/cpp/src/generated/feather_generated.h create mode 100644 src/arrow/cpp/src/generated/parquet_constants.cpp create mode 100644 src/arrow/cpp/src/generated/parquet_constants.h create mode 100644 src/arrow/cpp/src/generated/parquet_types.cpp create mode 100644 src/arrow/cpp/src/generated/parquet_types.h create mode 100644 src/arrow/cpp/src/jni/CMakeLists.txt create mode 100644 src/arrow/cpp/src/jni/dataset/CMakeLists.txt create mode 100644 src/arrow/cpp/src/jni/dataset/jni_util.cc create mode 100644 src/arrow/cpp/src/jni/dataset/jni_util.h create mode 100644 src/arrow/cpp/src/jni/dataset/jni_util_test.cc create mode 100644 src/arrow/cpp/src/jni/dataset/jni_wrapper.cc create mode 100644 src/arrow/cpp/src/jni/orc/CMakeLists.txt create mode 100644 src/arrow/cpp/src/jni/orc/concurrent_map.h create mode 100644 src/arrow/cpp/src/jni/orc/jni_wrapper.cpp create mode 100644 src/arrow/cpp/src/parquet/CMakeLists.txt create mode 100644 src/arrow/cpp/src/parquet/ParquetConfig.cmake.in create mode 100644 src/arrow/cpp/src/parquet/README create mode 100644 src/arrow/cpp/src/parquet/api/CMakeLists.txt create mode 100644 src/arrow/cpp/src/parquet/api/io.h create mode 100644 src/arrow/cpp/src/parquet/api/reader.h create mode 100644 src/arrow/cpp/src/parquet/api/schema.h create mode 100644 src/arrow/cpp/src/parquet/api/writer.h create mode 100644 src/arrow/cpp/src/parquet/arrow/CMakeLists.txt create mode 100644 src/arrow/cpp/src/parquet/arrow/arrow_reader_writer_test.cc create mode 100644 src/arrow/cpp/src/parquet/arrow/arrow_schema_test.cc create mode 100644 src/arrow/cpp/src/parquet/arrow/arrow_statistics_test.cc create mode 100644 src/arrow/cpp/src/parquet/arrow/fuzz.cc create mode 100644 src/arrow/cpp/src/parquet/arrow/generate_fuzz_corpus.cc create mode 100644 src/arrow/cpp/src/parquet/arrow/path_internal.cc create mode 100644 src/arrow/cpp/src/parquet/arrow/path_internal.h create mode 100644 src/arrow/cpp/src/parquet/arrow/path_internal_test.cc create mode 100644 src/arrow/cpp/src/parquet/arrow/reader.cc create mode 100644 src/arrow/cpp/src/parquet/arrow/reader.h create mode 100644 src/arrow/cpp/src/parquet/arrow/reader_internal.cc create mode 100644 src/arrow/cpp/src/parquet/arrow/reader_internal.h create mode 100644 src/arrow/cpp/src/parquet/arrow/reader_writer_benchmark.cc create mode 100644 src/arrow/cpp/src/parquet/arrow/reconstruct_internal_test.cc create mode 100644 src/arrow/cpp/src/parquet/arrow/schema.cc create mode 100644 src/arrow/cpp/src/parquet/arrow/schema.h create mode 100644 src/arrow/cpp/src/parquet/arrow/schema_internal.cc create mode 100644 src/arrow/cpp/src/parquet/arrow/schema_internal.h create mode 100644 src/arrow/cpp/src/parquet/arrow/test_util.h create mode 100644 src/arrow/cpp/src/parquet/arrow/writer.cc create mode 100644 src/arrow/cpp/src/parquet/arrow/writer.h create mode 100644 src/arrow/cpp/src/parquet/bloom_filter.cc create mode 100644 src/arrow/cpp/src/parquet/bloom_filter.h create mode 100644 src/arrow/cpp/src/parquet/bloom_filter_test.cc create mode 100644 src/arrow/cpp/src/parquet/column_io_benchmark.cc create mode 100644 src/arrow/cpp/src/parquet/column_page.h create mode 100644 src/arrow/cpp/src/parquet/column_reader.cc create mode 100644 src/arrow/cpp/src/parquet/column_reader.h create mode 100644 src/arrow/cpp/src/parquet/column_reader_test.cc create mode 100644 src/arrow/cpp/src/parquet/column_scanner.cc create mode 100644 src/arrow/cpp/src/parquet/column_scanner.h create mode 100644 src/arrow/cpp/src/parquet/column_scanner_test.cc create mode 100644 src/arrow/cpp/src/parquet/column_writer.cc create mode 100644 src/arrow/cpp/src/parquet/column_writer.h create mode 100644 src/arrow/cpp/src/parquet/column_writer_test.cc create mode 100644 src/arrow/cpp/src/parquet/encoding.cc create mode 100644 src/arrow/cpp/src/parquet/encoding.h create mode 100644 src/arrow/cpp/src/parquet/encoding_benchmark.cc create mode 100644 src/arrow/cpp/src/parquet/encoding_test.cc create mode 100644 src/arrow/cpp/src/parquet/encryption/CMakeLists.txt create mode 100644 src/arrow/cpp/src/parquet/encryption/crypto_factory.cc create mode 100644 src/arrow/cpp/src/parquet/encryption/crypto_factory.h create mode 100644 src/arrow/cpp/src/parquet/encryption/encryption.cc create mode 100644 src/arrow/cpp/src/parquet/encryption/encryption.h create mode 100644 src/arrow/cpp/src/parquet/encryption/encryption_internal.cc create mode 100644 src/arrow/cpp/src/parquet/encryption/encryption_internal.h create mode 100644 src/arrow/cpp/src/parquet/encryption/encryption_internal_nossl.cc create mode 100644 src/arrow/cpp/src/parquet/encryption/file_key_material_store.h create mode 100644 src/arrow/cpp/src/parquet/encryption/file_key_unwrapper.cc create mode 100644 src/arrow/cpp/src/parquet/encryption/file_key_unwrapper.h create mode 100644 src/arrow/cpp/src/parquet/encryption/file_key_wrapper.cc create mode 100644 src/arrow/cpp/src/parquet/encryption/file_key_wrapper.h create mode 100644 src/arrow/cpp/src/parquet/encryption/internal_file_decryptor.cc create mode 100644 src/arrow/cpp/src/parquet/encryption/internal_file_decryptor.h create mode 100644 src/arrow/cpp/src/parquet/encryption/internal_file_encryptor.cc create mode 100644 src/arrow/cpp/src/parquet/encryption/internal_file_encryptor.h create mode 100644 src/arrow/cpp/src/parquet/encryption/key_encryption_key.h create mode 100644 src/arrow/cpp/src/parquet/encryption/key_management_test.cc create mode 100644 src/arrow/cpp/src/parquet/encryption/key_material.cc create mode 100644 src/arrow/cpp/src/parquet/encryption/key_material.h create mode 100644 src/arrow/cpp/src/parquet/encryption/key_metadata.cc create mode 100644 src/arrow/cpp/src/parquet/encryption/key_metadata.h create mode 100644 src/arrow/cpp/src/parquet/encryption/key_metadata_test.cc create mode 100644 src/arrow/cpp/src/parquet/encryption/key_toolkit.cc create mode 100644 src/arrow/cpp/src/parquet/encryption/key_toolkit.h create mode 100644 src/arrow/cpp/src/parquet/encryption/key_toolkit_internal.cc create mode 100644 src/arrow/cpp/src/parquet/encryption/key_toolkit_internal.h create mode 100644 src/arrow/cpp/src/parquet/encryption/key_wrapping_test.cc create mode 100644 src/arrow/cpp/src/parquet/encryption/kms_client.cc create mode 100644 src/arrow/cpp/src/parquet/encryption/kms_client.h create mode 100644 src/arrow/cpp/src/parquet/encryption/kms_client_factory.h create mode 100644 src/arrow/cpp/src/parquet/encryption/local_wrap_kms_client.cc create mode 100644 src/arrow/cpp/src/parquet/encryption/local_wrap_kms_client.h create mode 100644 src/arrow/cpp/src/parquet/encryption/properties_test.cc create mode 100644 src/arrow/cpp/src/parquet/encryption/read_configurations_test.cc create mode 100644 src/arrow/cpp/src/parquet/encryption/test_encryption_util.cc create mode 100644 src/arrow/cpp/src/parquet/encryption/test_encryption_util.h create mode 100644 src/arrow/cpp/src/parquet/encryption/test_in_memory_kms.cc create mode 100644 src/arrow/cpp/src/parquet/encryption/test_in_memory_kms.h create mode 100644 src/arrow/cpp/src/parquet/encryption/two_level_cache_with_expiration.h create mode 100644 src/arrow/cpp/src/parquet/encryption/two_level_cache_with_expiration_test.cc create mode 100644 src/arrow/cpp/src/parquet/encryption/write_configurations_test.cc create mode 100644 src/arrow/cpp/src/parquet/exception.cc create mode 100644 src/arrow/cpp/src/parquet/exception.h create mode 100644 src/arrow/cpp/src/parquet/file_deserialize_test.cc create mode 100644 src/arrow/cpp/src/parquet/file_reader.cc create mode 100644 src/arrow/cpp/src/parquet/file_reader.h create mode 100644 src/arrow/cpp/src/parquet/file_serialize_test.cc create mode 100644 src/arrow/cpp/src/parquet/file_writer.cc create mode 100644 src/arrow/cpp/src/parquet/file_writer.h create mode 100644 src/arrow/cpp/src/parquet/hasher.h create mode 100644 src/arrow/cpp/src/parquet/level_comparison.cc create mode 100644 src/arrow/cpp/src/parquet/level_comparison.h create mode 100644 src/arrow/cpp/src/parquet/level_comparison_avx2.cc create mode 100644 src/arrow/cpp/src/parquet/level_comparison_inc.h create mode 100644 src/arrow/cpp/src/parquet/level_conversion.cc create mode 100644 src/arrow/cpp/src/parquet/level_conversion.h create mode 100644 src/arrow/cpp/src/parquet/level_conversion_benchmark.cc create mode 100644 src/arrow/cpp/src/parquet/level_conversion_bmi2.cc create mode 100644 src/arrow/cpp/src/parquet/level_conversion_inc.h create mode 100644 src/arrow/cpp/src/parquet/level_conversion_test.cc create mode 100644 src/arrow/cpp/src/parquet/metadata.cc create mode 100644 src/arrow/cpp/src/parquet/metadata.h create mode 100644 src/arrow/cpp/src/parquet/metadata_test.cc create mode 100644 src/arrow/cpp/src/parquet/murmur3.cc create mode 100644 src/arrow/cpp/src/parquet/murmur3.h create mode 100644 src/arrow/cpp/src/parquet/parquet.pc.in create mode 100644 src/arrow/cpp/src/parquet/parquet.thrift create mode 100644 src/arrow/cpp/src/parquet/parquet_version.h.in create mode 100644 src/arrow/cpp/src/parquet/pch.h create mode 100644 src/arrow/cpp/src/parquet/platform.cc create mode 100644 src/arrow/cpp/src/parquet/platform.h create mode 100644 src/arrow/cpp/src/parquet/printer.cc create mode 100644 src/arrow/cpp/src/parquet/printer.h create mode 100644 src/arrow/cpp/src/parquet/properties.cc create mode 100644 src/arrow/cpp/src/parquet/properties.h create mode 100644 src/arrow/cpp/src/parquet/properties_test.cc create mode 100644 src/arrow/cpp/src/parquet/public_api_test.cc create mode 100644 src/arrow/cpp/src/parquet/reader_test.cc create mode 100644 src/arrow/cpp/src/parquet/schema.cc create mode 100644 src/arrow/cpp/src/parquet/schema.h create mode 100644 src/arrow/cpp/src/parquet/schema_internal.h create mode 100644 src/arrow/cpp/src/parquet/schema_test.cc create mode 100644 src/arrow/cpp/src/parquet/statistics.cc create mode 100644 src/arrow/cpp/src/parquet/statistics.h create mode 100644 src/arrow/cpp/src/parquet/statistics_test.cc create mode 100644 src/arrow/cpp/src/parquet/stream_reader.cc create mode 100644 src/arrow/cpp/src/parquet/stream_reader.h create mode 100644 src/arrow/cpp/src/parquet/stream_reader_test.cc create mode 100644 src/arrow/cpp/src/parquet/stream_writer.cc create mode 100644 src/arrow/cpp/src/parquet/stream_writer.h create mode 100644 src/arrow/cpp/src/parquet/stream_writer_test.cc create mode 100644 src/arrow/cpp/src/parquet/symbols.map create mode 100644 src/arrow/cpp/src/parquet/test_util.cc create mode 100644 src/arrow/cpp/src/parquet/test_util.h create mode 100644 src/arrow/cpp/src/parquet/thrift_internal.h create mode 100644 src/arrow/cpp/src/parquet/type_fwd.h create mode 100644 src/arrow/cpp/src/parquet/types.cc create mode 100644 src/arrow/cpp/src/parquet/types.h create mode 100644 src/arrow/cpp/src/parquet/types_test.cc create mode 100644 src/arrow/cpp/src/parquet/windows_compatibility.h create mode 100644 src/arrow/cpp/src/plasma/.gitignore create mode 100644 src/arrow/cpp/src/plasma/CMakeLists.txt create mode 100644 src/arrow/cpp/src/plasma/PlasmaConfig.cmake.in create mode 100644 src/arrow/cpp/src/plasma/client.cc create mode 100644 src/arrow/cpp/src/plasma/client.h create mode 100644 src/arrow/cpp/src/plasma/common.cc create mode 100644 src/arrow/cpp/src/plasma/common.fbs create mode 100644 src/arrow/cpp/src/plasma/common.h create mode 100644 src/arrow/cpp/src/plasma/common_generated.h create mode 100644 src/arrow/cpp/src/plasma/compat.h create mode 100644 src/arrow/cpp/src/plasma/dlmalloc.cc create mode 100644 src/arrow/cpp/src/plasma/events.cc create mode 100644 src/arrow/cpp/src/plasma/events.h create mode 100644 src/arrow/cpp/src/plasma/eviction_policy.cc create mode 100644 src/arrow/cpp/src/plasma/eviction_policy.h create mode 100644 src/arrow/cpp/src/plasma/external_store.cc create mode 100644 src/arrow/cpp/src/plasma/external_store.h create mode 100644 src/arrow/cpp/src/plasma/fling.cc create mode 100644 src/arrow/cpp/src/plasma/fling.h create mode 100644 src/arrow/cpp/src/plasma/hash_table_store.cc create mode 100644 src/arrow/cpp/src/plasma/hash_table_store.h create mode 100644 src/arrow/cpp/src/plasma/io.cc create mode 100644 src/arrow/cpp/src/plasma/io.h create mode 100644 src/arrow/cpp/src/plasma/lib/java/org_apache_arrow_plasma_PlasmaClientJNI.cc create mode 100644 src/arrow/cpp/src/plasma/lib/java/org_apache_arrow_plasma_PlasmaClientJNI.h create mode 100644 src/arrow/cpp/src/plasma/malloc.cc create mode 100644 src/arrow/cpp/src/plasma/malloc.h create mode 100644 src/arrow/cpp/src/plasma/plasma.cc create mode 100644 src/arrow/cpp/src/plasma/plasma.fbs create mode 100644 src/arrow/cpp/src/plasma/plasma.h create mode 100644 src/arrow/cpp/src/plasma/plasma.pc.in create mode 100644 src/arrow/cpp/src/plasma/plasma_allocator.cc create mode 100644 src/arrow/cpp/src/plasma/plasma_allocator.h create mode 100644 src/arrow/cpp/src/plasma/plasma_generated.h create mode 100644 src/arrow/cpp/src/plasma/protocol.cc create mode 100644 src/arrow/cpp/src/plasma/protocol.h create mode 100644 src/arrow/cpp/src/plasma/quota_aware_policy.cc create mode 100644 src/arrow/cpp/src/plasma/quota_aware_policy.h create mode 100644 src/arrow/cpp/src/plasma/store.cc create mode 100644 src/arrow/cpp/src/plasma/store.h create mode 100644 src/arrow/cpp/src/plasma/symbols.map create mode 100644 src/arrow/cpp/src/plasma/test/client_tests.cc create mode 100644 src/arrow/cpp/src/plasma/test/external_store_tests.cc create mode 100644 src/arrow/cpp/src/plasma/test/serialization_tests.cc create mode 100644 src/arrow/cpp/src/plasma/test_util.h create mode 100644 src/arrow/cpp/src/plasma/thirdparty/ae/ae.c create mode 100644 src/arrow/cpp/src/plasma/thirdparty/ae/ae.h create mode 100644 src/arrow/cpp/src/plasma/thirdparty/ae/ae_epoll.c create mode 100644 src/arrow/cpp/src/plasma/thirdparty/ae/ae_evport.c create mode 100644 src/arrow/cpp/src/plasma/thirdparty/ae/ae_kqueue.c create mode 100644 src/arrow/cpp/src/plasma/thirdparty/ae/ae_select.c create mode 100644 src/arrow/cpp/src/plasma/thirdparty/ae/config.h create mode 100644 src/arrow/cpp/src/plasma/thirdparty/ae/zmalloc.h create mode 100644 src/arrow/cpp/src/plasma/thirdparty/dlmalloc.c create mode 100644 src/arrow/cpp/submodules/parquet-testing/LICENSE.txt create mode 100644 src/arrow/cpp/submodules/parquet-testing/README.md create mode 100644 src/arrow/cpp/submodules/parquet-testing/bad_data/PARQUET-1481.parquet create mode 100644 src/arrow/cpp/submodules/parquet-testing/bad_data/README.md create mode 100644 src/arrow/cpp/submodules/parquet-testing/data/README.md create mode 100755 src/arrow/cpp/submodules/parquet-testing/data/alltypes_dictionary.parquet create mode 100755 src/arrow/cpp/submodules/parquet-testing/data/alltypes_plain.parquet create mode 100755 src/arrow/cpp/submodules/parquet-testing/data/alltypes_plain.snappy.parquet create mode 100644 src/arrow/cpp/submodules/parquet-testing/data/binary.parquet create mode 100644 src/arrow/cpp/submodules/parquet-testing/data/bloom_filter.bin create mode 100644 src/arrow/cpp/submodules/parquet-testing/data/byte_array_decimal.parquet create mode 100644 src/arrow/cpp/submodules/parquet-testing/data/datapage_v2.snappy.parquet create mode 100644 src/arrow/cpp/submodules/parquet-testing/data/delta_binary_packed.md create mode 100644 src/arrow/cpp/submodules/parquet-testing/data/delta_binary_packed.parquet create mode 100644 src/arrow/cpp/submodules/parquet-testing/data/delta_binary_packed_expect.csv create mode 100644 src/arrow/cpp/submodules/parquet-testing/data/dict-page-offset-zero.parquet create mode 100644 src/arrow/cpp/submodules/parquet-testing/data/encrypt_columns_and_footer.parquet.encrypted create mode 100644 src/arrow/cpp/submodules/parquet-testing/data/encrypt_columns_and_footer_aad.parquet.encrypted create mode 100644 src/arrow/cpp/submodules/parquet-testing/data/encrypt_columns_and_footer_ctr.parquet.encrypted create mode 100644 src/arrow/cpp/submodules/parquet-testing/data/encrypt_columns_and_footer_disable_aad_storage.parquet.encrypted create mode 100644 src/arrow/cpp/submodules/parquet-testing/data/encrypt_columns_plaintext_footer.parquet.encrypted create mode 100644 src/arrow/cpp/submodules/parquet-testing/data/fixed_length_decimal.parquet create mode 100644 src/arrow/cpp/submodules/parquet-testing/data/fixed_length_decimal_legacy.parquet create mode 100644 src/arrow/cpp/submodules/parquet-testing/data/hadoop_lz4_compressed.parquet create mode 100644 src/arrow/cpp/submodules/parquet-testing/data/hadoop_lz4_compressed_larger.parquet create mode 100644 src/arrow/cpp/submodules/parquet-testing/data/int32_decimal.parquet create mode 100644 src/arrow/cpp/submodules/parquet-testing/data/int64_decimal.parquet create mode 100644 src/arrow/cpp/submodules/parquet-testing/data/list_columns.parquet create mode 100644 src/arrow/cpp/submodules/parquet-testing/data/lz4_raw_compressed.parquet create mode 100644 src/arrow/cpp/submodules/parquet-testing/data/lz4_raw_compressed_larger.parquet create mode 100644 src/arrow/cpp/submodules/parquet-testing/data/nation.dict-malformed.parquet create mode 100644 src/arrow/cpp/submodules/parquet-testing/data/nested_lists.snappy.parquet create mode 100644 src/arrow/cpp/submodules/parquet-testing/data/nested_maps.snappy.parquet create mode 100644 src/arrow/cpp/submodules/parquet-testing/data/nested_structs.rust.parquet create mode 100644 src/arrow/cpp/submodules/parquet-testing/data/non_hadoop_lz4_compressed.parquet create mode 100644 src/arrow/cpp/submodules/parquet-testing/data/nonnullable.impala.parquet create mode 100644 src/arrow/cpp/submodules/parquet-testing/data/nullable.impala.parquet create mode 100644 src/arrow/cpp/submodules/parquet-testing/data/nulls.snappy.parquet create mode 100644 src/arrow/cpp/submodules/parquet-testing/data/repeated_no_annotation.parquet create mode 100644 src/arrow/cpp/submodules/parquet-testing/data/single_nan.parquet create mode 100644 src/arrow/cpp/submodules/parquet-testing/data/uniform_encryption.parquet.encrypted create mode 100644 src/arrow/cpp/thirdparty/README.md create mode 100755 src/arrow/cpp/thirdparty/download_dependencies.sh create mode 100644 src/arrow/cpp/thirdparty/flatbuffers/include/flatbuffers/base.h create mode 100644 src/arrow/cpp/thirdparty/flatbuffers/include/flatbuffers/flatbuffers.h create mode 100644 src/arrow/cpp/thirdparty/flatbuffers/include/flatbuffers/stl_emulation.h create mode 100644 src/arrow/cpp/thirdparty/hadoop/include/hdfs.h create mode 100644 src/arrow/cpp/thirdparty/versions.txt create mode 100644 src/arrow/cpp/tools/parquet/CMakeLists.txt create mode 100644 src/arrow/cpp/tools/parquet/parquet_dump_schema.cc create mode 100644 src/arrow/cpp/tools/parquet/parquet_reader.cc create mode 100644 src/arrow/cpp/tools/parquet/parquet_scan.cc create mode 100644 src/arrow/cpp/valgrind.supp create mode 100644 src/arrow/cpp/vcpkg.json (limited to 'src/arrow/cpp') diff --git a/src/arrow/cpp/.gitignore b/src/arrow/cpp/.gitignore new file mode 100644 index 000000000..03c03a401 --- /dev/null +++ b/src/arrow/cpp/.gitignore @@ -0,0 +1,43 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + +thirdparty/*.tar* +CMakeFiles/ +CMakeCache.txt +CTestTestfile.cmake +Makefile +cmake_install.cmake +build/ +*-build/ +Testing/ +build-support/boost_* + +# Build directories created by Clion +cmake-build-*/ + +######################################### +# Editor temporary/working/backup files # +.#* +*\#*\# +[#]*# +*~ +*$ +*.bak +*flymake* +*.kdev4 +*.log +*.swp diff --git a/src/arrow/cpp/Brewfile b/src/arrow/cpp/Brewfile new file mode 100644 index 000000000..78ee5e64c --- /dev/null +++ b/src/arrow/cpp/Brewfile @@ -0,0 +1,41 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + +brew "automake" +brew "boost" +brew "brotli" +brew "c-ares" +brew "ccache" +brew "cmake" +brew "flatbuffers" +brew "git" +brew "glog" +brew "grpc" +brew "llvm" +brew "llvm@8" +brew "lz4" +brew "minio" +brew "ninja" +brew "numpy" +brew "openssl@1.1" +brew "protobuf" +brew "python" +brew "rapidjson" +brew "snappy" +brew "thrift" +brew "wget" +brew "zstd" diff --git a/src/arrow/cpp/CHANGELOG_PARQUET.md b/src/arrow/cpp/CHANGELOG_PARQUET.md new file mode 100644 index 000000000..06a09c20f --- /dev/null +++ b/src/arrow/cpp/CHANGELOG_PARQUET.md @@ -0,0 +1,501 @@ +Parquet C++ 1.5.0 +-------------------------------------------------------------------------------- +## Bug + * [PARQUET-979] - [C++] Limit size of min, max or disable stats for long binary types + * [PARQUET-1071] - [C++] parquet::arrow::FileWriter::Close is not idempotent + * [PARQUET-1349] - [C++] PARQUET_RPATH_ORIGIN is not picked by the build + * [PARQUET-1334] - [C++] memory_map parameter seems missleading in parquet file opener + * [PARQUET-1333] - [C++] Reading of files with dictionary size 0 fails on Windows with bad_alloc + * [PARQUET-1283] - [C++] FormatStatValue appends trailing space to string and int96 + * [PARQUET-1270] - [C++] Executable tools do not get installed + * [PARQUET-1272] - [C++] ScanFileContents reports wrong row count for nested columns + * [PARQUET-1268] - [C++] Conversion of Arrow null list columns fails + * [PARQUET-1255] - [C++] Exceptions thrown in some tests + * [PARQUET-1358] - [C++] index_page_offset should be unset as it is not supported. + * [PARQUET-1357] - [C++] FormatStatValue truncates binary statistics on zero character + * [PARQUET-1319] - [C++] Pass BISON_EXECUTABLE to Thrift EP for MacOS + * [PARQUET-1313] - [C++] Compilation failure with VS2017 + * [PARQUET-1315] - [C++] ColumnChunkMetaData.has_dictionary_page() should return bool, not int64_t + * [PARQUET-1307] - [C++] memory-test fails with latest Arrow + * [PARQUET-1274] - [Python] SegFault in pyarrow.parquet.write_table with specific options + * [PARQUET-1209] - locally defined symbol ... imported in function .. + * [PARQUET-1245] - [C++] Segfault when writing Arrow table with duplicate columns + * [PARQUET-1273] - [Python] Error writing to partitioned Parquet dataset + * [PARQUET-1384] - [C++] Clang compiler warnings in bloom_filter-test.cc + +## Improvement + * [PARQUET-1348] - [C++] Allow Arrow FileWriter To Write FileMetaData + * [PARQUET-1346] - [C++] Protect against null values data in empty Arrow array + * [PARQUET-1340] - [C++] Fix Travis Ci valgrind errors related to std::random_device + * [PARQUET-1323] - [C++] Fix compiler warnings with clang-6.0 + * [PARQUET-1279] - Use ASSERT_NO_FATAIL_FAILURE in C++ unit tests + * [PARQUET-1262] - [C++] Use the same BOOST_ROOT and Boost_NAMESPACE for Thrift + * [PARQUET-1267] - replace "unsafe" std::equal by std::memcmp + * [PARQUET-1360] - [C++] Minor API + style changes follow up to PARQUET-1348 + * [PARQUET-1166] - [API Proposal] Add GetRecordBatchReader in parquet/arrow/reader.h + * [PARQUET-1378] - [c++] Allow RowGroups with zero rows to be written + * [PARQUET-1256] - [C++] Add --print-key-value-metadata option to parquet_reader tool + * [PARQUET-1276] - [C++] Reduce the amount of memory used for writing null decimal values + +## New Feature + * [PARQUET-1392] - [C++] Supply row group indices to parquet::arrow::FileReader::ReadTable + +## Sub-task + * [PARQUET-1227] - Thrift crypto metadata structures + * [PARQUET-1332] - [C++] Add bloom filter utility class + +## Task + * [PARQUET-1350] - [C++] Use abstract ResizableBuffer instead of concrete PoolBuffer + * [PARQUET-1366] - [C++] Streamline use of Arrow bit-util.h + * [PARQUET-1308] - [C++] parquet::arrow should use thread pool, not ParallelFor + * [PARQUET-1382] - [C++] Prepare for arrow::test namespace removal + * [PARQUET-1372] - [C++] Add an API to allow writing RowGroups based on their size rather than num_rows + + +Parquet C++ 1.4.0 +-------------------------------------------------------------------------------- +## Bug + * [PARQUET-1193] - [CPP] Implement ColumnOrder to support min_value and max_value + * [PARQUET-1180] - C++: Fix behaviour of num_children element of primitive nodes + * [PARQUET-1146] - C++: Add macOS-compatible sha512sum call to release verify script + * [PARQUET-1167] - [C++] FieldToNode function should return a status when throwing an exception + * [PARQUET-1175] - [C++] Fix usage of deprecated Arrow API + * [PARQUET-1113] - [C++] Incorporate fix from ARROW-1601 on bitmap read path + * [PARQUET-1111] - dev/release/verify-release-candidate has stale help + * [PARQUET-1109] - C++: Update release verification script to SHA512 + * [PARQUET-1179] - [C++] Support Apache Thrift 0.11 + * [PARQUET-1226] - [C++] Fix new build warnings with clang 5.0 + * [PARQUET-1233] - [CPP ]Enable option to switch between stl classes and boost classes for thrift header + * [PARQUET-1205] - Fix msvc static build + * [PARQUET-1210] - [C++] Boost 1.66 compilation fails on Windows on linkage stage + +## Improvement + * [PARQUET-1092] - [C++] Write Arrow tables with chunked columns + * [PARQUET-1086] - [C++] Remove usage of arrow/util/compiler-util.h after 1.3.0 release + * [PARQUET-1097] - [C++] Account for Arrow API deprecation in ARROW-1511 + * [PARQUET-1150] - C++: Hide statically linked boost symbols + * [PARQUET-1151] - [C++] Add build options / configuration to use static runtime libraries with MSVC + * [PARQUET-1147] - [C++] Account for API deprecation / change in ARROW-1671 + * [PARQUET-1162] - C++: Update dev/README after migration to Gitbox + * [PARQUET-1165] - [C++] Pin clang-format version to 4.0 + * [PARQUET-1164] - [C++] Follow API changes in ARROW-1808 + * [PARQUET-1177] - [C++] Add more extensive compiler warnings when using Clang + * [PARQUET-1110] - [C++] Release verification script for Windows + * [PARQUET-859] - [C++] Flatten parquet/file directory + * [PARQUET-1220] - [C++] Don't build Thrift examples and tutorials in the ExternalProject + * [PARQUET-1219] - [C++] Update release-candidate script links to gitbox + * [PARQUET-1196] - [C++] Provide a parquet_arrow example project incl. CMake setup + * [PARQUET-1200] - [C++] Support reading a single Arrow column from a Parquet file + +## New Feature + * [PARQUET-1095] - [C++] Read and write Arrow decimal values + * [PARQUET-970] - Add Add Lz4 and Zstd compression codecs + +## Task + * [PARQUET-1221] - [C++] Extend release README + * [PARQUET-1225] - NaN values may lead to incorrect filtering under certain circumstances + + +Parquet C++ 1.3.1 +-------------------------------------------------------------------------------- +## Bug + * [PARQUET-1105] - [CPP] Remove libboost_system dependency + * [PARQUET-1138] - [C++] Fix compilation with Arrow 0.7.1 + * [PARQUET-1123] - [C++] Update parquet-cpp to use Arrow's AssertArraysEqual + * [PARQUET-1121] - C++: DictionaryArrays of NullType cannot be written + * [PARQUET-1139] - Add license to cmake_modules/parquet-cppConfig.cmake.in + +## Improvement + * [PARQUET-1140] - [C++] Fail on RAT errors in CI + * [PARQUET-1070] - Add CPack support to the build + + +Parquet C++ 1.3.0 +-------------------------------------------------------------------------------- +## Bug + * [PARQUET-1098] - [C++] Install new header in parquet/util + * [PARQUET-1085] - [C++] Backwards compatibility from macro cleanup in transitive dependencies in ARROW-1452 + * [PARQUET-1074] - [C++] Switch to long key ids in KEYs file + * [PARQUET-1075] - C++: Coverage upload is broken + * [PARQUET-1088] - [CPP] remove parquet_version.h from version control since it gets auto generated + * [PARQUET-1002] - [C++] Compute statistics based on Logical Types + * [PARQUET-1100] - [C++] Reading repeated types should decode number of records rather than number of values + * [PARQUET-1090] - [C++] Fix int32 overflow in Arrow table writer, add max row group size property + * [PARQUET-1108] - [C++] Fix Int96 comparators + +## Improvement + * [PARQUET-1104] - [C++] Upgrade to Apache Arrow 0.7.0 RC0 + * [PARQUET-1072] - [C++] Add ARROW_NO_DEPRECATED_API to CI to check for deprecated API use + * [PARQUET-1096] - C++: Update sha{1, 256, 512} checksums per latest ASF release policy + * [PARQUET-1079] - [C++] Account for Arrow API change in ARROW-1335 + * [PARQUET-1087] - [C++] Add wrapper for ScanFileContents in parquet::arrow that catches exceptions + * [PARQUET-1093] - C++: Improve Arrow level generation error message + * [PARQUET-1094] - C++: Add benchmark for boolean Arrow column I/O + * [PARQUET-1083] - [C++] Refactor core logic in parquet-scan.cc so that it can be used as a library function for benchmarking + * [PARQUET-1037] - Allow final RowGroup to be unfilled + +## New Feature + * [PARQUET-1078] - [C++] Add Arrow writer option to coerce timestamps to milliseconds or microseconds + * [PARQUET-929] - [C++] Handle arrow::DictionaryArray when writing Arrow data + + +Parquet C++ 1.2.0 +-------------------------------------------------------------------------------- +## Bug + * [PARQUET-1029] - [C++] TypedColumnReader/TypeColumnWriter symbols are no longer being exported + * [PARQUET-997] - Fix override compiler warnings + * [PARQUET-1033] - Mismatched Read and Write + * [PARQUET-1007] - [C++ ] Update parquet.thrift from https://github.com/apache/parquet-format + * [PARQUET-1039] - PARQUET-911 Breaks Arrow + * [PARQUET-1038] - Key value metadata should be nullptr if not set + * [PARQUET-1018] - [C++] parquet.dll has runtime dependencies on one or more libraries in the build toolchain + * [PARQUET-1003] - [C++] Modify DEFAULT_CREATED_BY value for every new release version + * [PARQUET-1004] - CPP Building fails on windows + * [PARQUET-1040] - Missing writer method implementations + * [PARQUET-1054] - [C++] Account for Arrow API changes in ARROW-1199 + * [PARQUET-1042] - C++: Compilation breaks on GCC 4.8 + * [PARQUET-1048] - [C++] Static linking of libarrow is no longer supported + * [PARQUET-1013] - Fix ZLIB_INCLUDE_DIR + * [PARQUET-998] - C++: Release script is not usable + * [PARQUET-1023] - [C++] Brotli libraries are not being statically linked on Windows + * [PARQUET-1000] - [C++] Do not build thirdparty Arrow with /WX on MSVC + * [PARQUET-1052] - [C++] add_compiler_export_flags() throws warning with CMake >= 3.3 + * [PARQUET-1069] - C++: ./dev/release/verify-release-candidate is broken due to missing Arrow dependencies + +## Improvement + * [PARQUET-996] - Improve MSVC build - ThirdpartyToolchain - Arrow + * [PARQUET-911] - C++: Support nested structs in parquet_arrow + * [PARQUET-986] - Improve MSVC build - ThirdpartyToolchain - Thrift + * [PARQUET-864] - [C++] Consolidate non-Parquet-specific bit utility code into Apache Arrow + * [PARQUET-1043] - [C++] Raise minimum supported CMake version to 3.2 + * [PARQUET-1016] - Upgrade thirdparty Arrow to 0.4.0 + * [PARQUET-858] - [C++] Flatten parquet/column directory, consolidate related code + * [PARQUET-978] - [C++] Minimizing footer reads for small(ish) metadata + * [PARQUET-991] - [C++] Fix compiler warnings on MSVC and build with /WX in Appveyor + * [PARQUET-863] - [C++] Move SIMD, CPU info, hashing, and other generic utilities into Apache Arrow + * [PARQUET-1053] - Fix unused result warnings due to unchecked Statuses + * [PARQUET-1067] - C++: Update arrow hash to 0.5.0 + * [PARQUET-1041] - C++: Support Arrow's NullArray + * [PARQUET-1008] - Update TypedColumnReader::ReadBatch method to accept batch_size as int64_t + * [PARQUET-1044] - [C++] Use compression libraries from Apache Arrow + * [PARQUET-999] - Improve MSVC build - Enable PARQUET_BUILD_BENCHMARKS + * [PARQUET-967] - [C++] Combine libparquet/libparquet_arrow libraries + * [PARQUET-1045] - [C++] Refactor to account for computational utility code migration in ARROW-1154 + +## New Feature + * [PARQUET-1035] - Write Int96 from Arrow Timestamp(ns) + +## Task + * [PARQUET-994] - C++: release-candidate script should not push to master + * [PARQUET-902] - [C++] Move compressor interfaces into Apache Arrow + +## Test + * [PARQUET-706] - [C++] Create test case that uses libparquet as a 3rd party library + + +Parquet C++ 1.1.0 +-------------------------------------------------------------------------------- +## Bug + * [PARQUET-898] - [C++] Change Travis CI OS X image to Xcode 6.4 and fix our thirdparty build + * [PARQUET-976] - [C++] Pass unit test suite with MSVC, build in Appveyor + * [PARQUET-963] - [C++] Disallow reading struct types in Arrow reader for now + * [PARQUET-959] - [C++] Arrow thirdparty build fails on multiarch systems + * [PARQUET-962] - [C++] GTEST_MAIN_STATIC_LIB is not defined in FindGTest.cmake + * [PARQUET-958] - [C++] Print Parquet metadata in JSON format + * [PARQUET-956] - C++: BUILD_BYPRODUCTS not specified anymore for gtest + * [PARQUET-948] - [C++] Account for API changes in ARROW-782 + * [PARQUET-947] - [C++] Refactor to account for ARROW-795 Arrow core library consolidation + * [PARQUET-965] - [C++] FIXED_LEN_BYTE_ARRAY types are unhandled in the Arrow reader + * [PARQUET-949] - [C++] Arrow version pinning seems to not be working properly + * [PARQUET-955] - [C++] pkg_check_modules will override $ARROW_HOME if it is set in the environment + * [PARQUET-945] - [C++] Thrift static libraries are not used with recent patch + * [PARQUET-943] - [C++] Overflow build error on x86 + * [PARQUET-938] - [C++] There is a typo in cmake_modules/FindSnappy.cmake comment + * [PARQUET-936] - [C++] parquet::arrow::WriteTable can enter infinite loop if chunk_size is 0 + * [PARQUET-981] - Repair usage of *_HOME 3rd party dependencies environment variables during Windows build + * [PARQUET-992] - [C++] parquet/compression.h leaks zlib.h + * [PARQUET-987] - [C++] Fix regressions caused by PARQUET-981 + * [PARQUET-933] - [C++] Account for Arrow Table API changes coming in ARROW-728 + * [PARQUET-915] - Support Arrow Time Types in Schema + * [PARQUET-914] - [C++] Throw more informative exception when user writes too many values to a column in a row group + * [PARQUET-923] - [C++] Account for Time metadata changes in ARROW-686 + * [PARQUET-918] - FromParquetSchema API crashes on nested schemas + * [PARQUET-925] - [C++] FindArrow.cmake sets the wrong library path after ARROW-648 + * [PARQUET-932] - [c++] Add option to build parquet library with minimal dependency + * [PARQUET-919] - [C++] Account for API changes in ARROW-683 + * [PARQUET-995] - [C++] Int96 reader in parquet_arrow uses size of Int96Type instead of Int96 + +## Improvement + * [PARQUET-508] - Add ParquetFilePrinter + * [PARQUET-595] - Add API for key-value metadata + * [PARQUET-897] - [C++] Only use designated public headers from libarrow + * [PARQUET-679] - [C++] Build and unit tests support for MSVC on Windows + * [PARQUET-977] - Improve MSVC build + * [PARQUET-957] - [C++] Add optional $PARQUET_BUILD_TOOLCHAIN environment variable option for configuring build environment + * [PARQUET-961] - [C++] Strip debug symbols from libparquet libraries in release builds by default + * [PARQUET-954] - C++: Use Brolti 0.6 release + * [PARQUET-953] - [C++] Change arrow::FileWriter API to be initialized from a Schema, and provide for writing multiple tables + * [PARQUET-941] - [C++] Stop needless Boost static library detection for CentOS 7 support + * [PARQUET-942] - [C++] Fix wrong variabe use in FindSnappy + * [PARQUET-939] - [C++] Support Thrift_HOME CMake variable like FindSnappy does as Snappy_HOME + * [PARQUET-940] - [C++] Fix Arrow library path detection + * [PARQUET-937] - [C++] Support CMake < 3.4 again for Arrow detection + * [PARQUET-935] - [C++] Set shared library version for .deb packages + * [PARQUET-934] - [C++] Support multiarch on Debian + * [PARQUET-984] - C++: Add abi and so version to pkg-config + * [PARQUET-983] - C++: Update Thirdparty hash to Arrow 0.3.0 + * [PARQUET-989] - [C++] Link dynamically to libarrow in toolchain build, set LD_LIBRARY_PATH + * [PARQUET-988] - [C++] Add Linux toolchain-based build to Travis CI + * [PARQUET-928] - [C++] Support pkg-config + * [PARQUET-927] - [C++] Specify shared library version of Apache Arrow + * [PARQUET-931] - [C++] Add option to pin thirdparty Arrow version used in ExternalProject + * [PARQUET-926] - [C++] Use pkg-config to find Apache Arrow + * [PARQUET-917] - C++: Build parquet_arrow by default + * [PARQUET-910] - C++: Support TIME logical type in parquet_arrow + * [PARQUET-909] - [CPP]: Reduce buffer allocations (mallocs) on critical path + +## New Feature + * [PARQUET-853] - [C++] Add option to link with shared boost libraries when building Arrow in the thirdparty toolchain + * [PARQUET-946] - [C++] Refactoring in parquet::arrow::FileReader to be able to read a single row group + * [PARQUET-930] - [C++] Account for all Arrow date/time types + + +Parquet C++ 1.0.0 +-------------------------------------------------------------------------------- +## Bug + * [PARQUET-455] - Fix compiler warnings on OS X / Clang + * [PARQUET-558] - Support ZSH in build scripts + * [PARQUET-720] - Parquet-cpp fails to link when included in multiple TUs + * [PARQUET-718] - Reading boolean pages written by parquet-cpp fails + * [PARQUET-640] - [C++] Force the use of gcc 4.9 in conda builds + * [PARQUET-643] - Add const modifier to schema pointer reference in ParquetFileWriter + * [PARQUET-672] - [C++] Build testing conda artifacts in debug mode + * [PARQUET-661] - [C++] Do not assume that perl is found in /usr/bin + * [PARQUET-659] - [C++] Instantiated template visibility is broken on clang / OS X + * [PARQUET-657] - [C++] Don't define DISALLOW_COPY_AND_ASSIGN if already defined + * [PARQUET-656] - [C++] Revert PARQUET-653 + * [PARQUET-676] - MAX_VALUES_PER_LITERAL_RUN causes RLE encoding failure + * [PARQUET-614] - C++: Remove unneeded LZ4-related code + * [PARQUET-604] - Install writer.h headers + * [PARQUET-621] - C++: Uninitialised DecimalMetadata is read + * [PARQUET-620] - C++: Duplicate calls to ParquetFileWriter::Close cause duplicate metdata writes + * [PARQUET-599] - ColumnWriter::RleEncodeLevels' size estimation might be wrong + * [PARQUET-617] - C++: Enable conda build to work on systems with non-default C++ toolchains + * [PARQUET-627] - Ensure that thrift headers are generated before source compilation + * [PARQUET-745] - TypedRowGroupStatistics fails to PlainDecode min and max in ByteArrayType + * [PARQUET-738] - Update arrow version that also supports newer Xcode + * [PARQUET-747] - [C++] TypedRowGroupStatistics are not being exported in libparquet.so + * [PARQUET-711] - Use metadata builders in parquet writer + * [PARQUET-732] - Building a subset of dependencies does not work + * [PARQUET-760] - On switching from dictionary to the fallback encoding, an incorrect encoding is set + * [PARQUET-691] - [C++] Write ColumnChunk metadata after each column chunk in the file + * [PARQUET-797] - [C++] Update for API changes in ARROW-418 + * [PARQUET-837] - [C++] SerializedFile::ParseMetaData uses Seek, followed by Read, and could have race conditions + * [PARQUET-827] - [C++] Incorporate addition of arrow::MemoryPool::Reallocate + * [PARQUET-502] - Scanner segfaults when its batch size is smaller than the number of rows + * [PARQUET-469] - Roll back Thrift bindings to 0.9.0 + * [PARQUET-889] - Fix compilation when PARQUET_USE_SSE is on + * [PARQUET-888] - C++ Memory leak in RowGroupSerializer + * [PARQUET-819] - C++: Trying to install non-existing parquet/arrow/utils.h + * [PARQUET-736] - XCode 8.0 breaks builds + * [PARQUET-505] - Column reader: automatically handle large data pages + * [PARQUET-615] - C++: Building static or shared libparquet should not be mutually exclusive + * [PARQUET-658] - ColumnReader has no virtual destructor + * [PARQUET-799] - concurrent usage of the file reader API + * [PARQUET-513] - Valgrind errors are not failing the Travis CI build + * [PARQUET-841] - [C++] Writing wrong format version when using ParquetVersion::PARQUET_1_0 + * [PARQUET-742] - Add missing license headers + * [PARQUET-741] - compression_buffer_ is reused although it shouldn't + * [PARQUET-700] - C++: Disable dictionary encoding for boolean columns + * [PARQUET-662] - [C++] ParquetException must be explicitly exported in dynamic libraries + * [PARQUET-704] - [C++] scan-all.h is not being installed + * [PARQUET-865] - C++: Pass all CXXFLAGS to Thrift ExternalProject + * [PARQUET-875] - [C++] Fix coveralls build given changes to thirdparty build procedure + * [PARQUET-709] - [C++] Fix conda dev binary builds + * [PARQUET-638] - [C++] Revert static linking of libstdc++ in conda builds until symbol visibility addressed + * [PARQUET-606] - Travis coverage is broken + * [PARQUET-880] - [CPP] Prevent destructors from throwing + * [PARQUET-886] - [C++] Revise build documentation and requirements in README.md + * [PARQUET-900] - C++: Fix NOTICE / LICENSE issues + * [PARQUET-885] - [C++] Do not search for Thrift in default system paths + * [PARQUET-879] - C++: ExternalProject compilation for Thrift fails on older CMake versions + * [PARQUET-635] - [C++] Statically link libstdc++ on Linux in conda recipe + * [PARQUET-710] - Remove unneeded private member variables from RowGroupReader ABI + * [PARQUET-766] - C++: Expose ParquetFileReader through Arrow reader as const + * [PARQUET-876] - C++: Correct snapshot version + * [PARQUET-821] - [C++] zlib download link is broken + * [PARQUET-818] - [C++] Refactor library to share IO, Buffer, and memory management abstractions with Apache Arrow + * [PARQUET-537] - LocalFileSource leaks resources + * [PARQUET-764] - [CPP] Parquet Writer does not write Boolean values correctly + * [PARQUET-812] - [C++] Failure reading BYTE_ARRAY data from file in parquet-compatibility project + * [PARQUET-759] - Cannot store columns consisting of empty strings + * [PARQUET-846] - [CPP] CpuInfo::Init() is not thread safe + * [PARQUET-694] - C++: Revert default data page size back to 1M + * [PARQUET-842] - [C++] Impala rejects DOUBLE columns if decimal metadata is set + * [PARQUET-708] - [C++] RleEncoder does not account for "worst case scenario" in MaxBufferSize for bit_width > 1 + * [PARQUET-639] - Do not export DCHECK in public headers + * [PARQUET-828] - [C++] "version" field set improperly in file metadata + * [PARQUET-891] - [C++] Do not search for Snappy in default system paths + * [PARQUET-626] - Fix builds due to unavailable llvm.org apt mirror + * [PARQUET-629] - RowGroupSerializer should only close itself once + * [PARQUET-472] - Clean up InputStream ownership semantics in ColumnReader + * [PARQUET-739] - Rle-decoding uses static buffer that is shared accross threads + * [PARQUET-561] - ParquetFileReader::Contents PIMPL missing a virtual destructor + * [PARQUET-892] - [C++] Clean up link library targets in CMake files + * [PARQUET-454] - Address inconsistencies in boolean decoding + * [PARQUET-816] - [C++] Failure decoding sample dict-encoded file from parquet-compatibility project + * [PARQUET-565] - Use PATH instead of DIRECTORY in get_filename_component to support CMake<2.8.12 + * [PARQUET-446] - Hide thrift dependency in parquet-cpp + * [PARQUET-843] - [C++] Impala unable to read files created by parquet-cpp + * [PARQUET-555] - Dictionary page metadata handling inconsistencies + * [PARQUET-908] - Fix for PARQUET-890 introduces undefined symbol in libparquet_arrow.so + * [PARQUET-793] - [CPP] Do not return incorrect statistics + * [PARQUET-887] - C++: Fix issues in release scripts arise in RC1 + +## Improvement + * [PARQUET-277] - Remove boost dependency + * [PARQUET-500] - Enable coveralls.io for apache/parquet-cpp + * [PARQUET-497] - Decouple Parquet physical file structure from FileReader class + * [PARQUET-597] - Add data rates to benchmark output + * [PARQUET-522] - #include cleanup with include-what-you-use + * [PARQUET-515] - Add "Reset" to LevelEncoder and LevelDecoder + * [PARQUET-514] - Automate coveralls.io updates in Travis CI + * [PARQUET-551] - Handle compiler warnings due to disabled DCHECKs in release builds + * [PARQUET-559] - Enable InputStream as a source to the ParquetFileReader + * [PARQUET-562] - Simplified ZSH support in build scripts + * [PARQUET-538] - Improve ColumnReader Tests + * [PARQUET-541] - Portable build scripts + * [PARQUET-724] - Test more advanced properties setting + * [PARQUET-641] - Instantiate stringstream only if needed in SerializedPageReader::NextPage + * [PARQUET-636] - Expose selection for different encodings + * [PARQUET-603] - Implement missing information in schema descriptor + * [PARQUET-610] - Print ColumnMetaData for each RowGroup + * [PARQUET-600] - Add benchmarks for RLE-Level encoding + * [PARQUET-592] - Support compressed writes + * [PARQUET-593] - Add API for writing Page statistics + * [PARQUET-589] - Implement Chunked InMemoryInputStream for better memory usage + * [PARQUET-587] - Implement BufferReader::Read(int64_t,uint8_t*) + * [PARQUET-616] - C++: WriteBatch should accept const arrays + * [PARQUET-630] - C++: Support link flags for older CMake versions + * [PARQUET-634] - Consistent private linking of dependencies + * [PARQUET-633] - Add version to WriterProperties + * [PARQUET-625] - Improve RLE read performance + * [PARQUET-737] - Use absolute namespace in macros + * [PARQUET-762] - C++: Use optimistic allocation instead of Arrow Builders + * [PARQUET-773] - C++: Check licenses with RAT in CI + * [PARQUET-687] - C++: Switch to PLAIN encoding if dictionary grows too large + * [PARQUET-784] - C++: Reference Spark, Kudu and FrameOfReference in LICENSE + * [PARQUET-809] - [C++] Add API to determine if two files' schemas are compatible + * [PARQUET-778] - Standardize the schema output to match the parquet-mr format + * [PARQUET-463] - Add DCHECK* macros for assertions in debug builds + * [PARQUET-471] - Use the same environment setup script for Travis CI as local sandbox development + * [PARQUET-449] - Update to latest parquet.thrift + * [PARQUET-496] - Fix cpplint configuration to be more restrictive + * [PARQUET-468] - Add a cmake option to generate the Parquet thrift headers with the thriftc in the environment + * [PARQUET-482] - Organize src code file structure to have a very clear folder with public headers. + * [PARQUET-591] - Page size estimation during writes + * [PARQUET-518] - Review usages of size_t and unsigned integers generally per Google style guide + * [PARQUET-533] - Simplify RandomAccessSource API to combine Seek/Read + * [PARQUET-767] - Add release scripts for parquet-cpp + * [PARQUET-699] - Update parquet.thrift from https://github.com/apache/parquet-format + * [PARQUET-653] - [C++] Re-enable -static-libstdc++ in dev artifact builds + * [PARQUET-763] - C++: Expose ParquetFileReader through Arrow reader + * [PARQUET-857] - [C++] Flatten parquet/encodings directory + * [PARQUET-862] - Provide defaut cache size values if CPU info probing is not available + * [PARQUET-689] - C++: Compress DataPages eagerly + * [PARQUET-874] - [C++] Use default memory allocator from Arrow + * [PARQUET-267] - Detach thirdparty code from build configuration. + * [PARQUET-418] - Add a utility to print contents of a Parquet file to stdout + * [PARQUET-519] - Disable compiler warning supressions and fix all DEBUG build warnings + * [PARQUET-447] - Add Debug and Release build types and associated compiler flags + * [PARQUET-868] - C++: Build snappy with optimizations + * [PARQUET-894] - Fix compilation warning + * [PARQUET-883] - C++: Support non-standard gcc version strings + * [PARQUET-607] - Public Writer header + * [PARQUET-731] - [CPP] Add API to return metadata size and Skip reading values + * [PARQUET-628] - Link thrift privately + * [PARQUET-877] - C++: Update Arrow Hash, update Version in metadata. + * [PARQUET-547] - Refactor most templates to use DataType structs rather than the Type::type enum + * [PARQUET-882] - [CPP] Improve Application Version parsing + * [PARQUET-448] - Add cmake option to skip building the unit tests + * [PARQUET-721] - Performance benchmarks for reading into Arrow structures + * [PARQUET-820] - C++: Decoders should directly emit arrays with spacing for null entries + * [PARQUET-813] - C++: Build dependencies using CMake External project + * [PARQUET-488] - Add SSE-related cmake options to manage compiler flags + * [PARQUET-564] - Add option to run unit tests with valgrind --tool=memcheck + * [PARQUET-572] - Rename parquet_cpp namespace to parquet + * [PARQUET-829] - C++: Make use of ARROW-469 + * [PARQUET-501] - Add an OutputStream abstraction (capable of memory allocation) for Encoder public API + * [PARQUET-744] - Clarifications on build instructions + * [PARQUET-520] - Add version of LocalFileSource that uses memory-mapping for zero-copy reads + * [PARQUET-556] - Extend RowGroupStatistics to include "min" "max" statistics + * [PARQUET-671] - Improve performance of RLE/bit-packed decoding in parquet-cpp + * [PARQUET-681] - Add tool to scan a parquet file + +## New Feature + * [PARQUET-499] - Complete PlainEncoder implementation for all primitive types and test end to end + * [PARQUET-439] - Conform all copyright headers to ASF requirements + * [PARQUET-436] - Implement ParquetFileWriter class entry point for generating new Parquet files + * [PARQUET-435] - Provide vectorized ColumnReader interface + * [PARQUET-438] - Update RLE encoder/decoder modules from Impala upstream changes and adapt unit tests + * [PARQUET-512] - Add optional google/benchmark 3rd-party dependency for performance testing + * [PARQUET-566] - Add method to retrieve the full column path + * [PARQUET-613] - C++: Add conda packaging recipe + * [PARQUET-605] - Expose schema node in ColumnDescriptor + * [PARQUET-619] - C++: Add OutputStream for local files + * [PARQUET-583] - Implement Parquet to Thrift schema conversion + * [PARQUET-582] - Conversion functions for Parquet enums to Thrift enums + * [PARQUET-728] - [C++] Bring parquet::arrow up to date with API changes in arrow::io + * [PARQUET-752] - [C++] Conform parquet_arrow to upstream API changes + * [PARQUET-788] - [C++] Reference Impala / Apache Impala (incubating) in LICENSE + * [PARQUET-808] - [C++] Add API to read file given externally-provided FileMetadata + * [PARQUET-807] - [C++] Add API to read file metadata only from a file handle + * [PARQUET-805] - C++: Read Int96 into Arrow Timestamp(ns) + * [PARQUET-836] - [C++] Add column selection to parquet::arrow::FileReader + * [PARQUET-835] - [C++] Add option to parquet::arrow to read columns in parallel using a thread pool + * [PARQUET-830] - [C++] Add additional configuration options to parquet::arrow::OpenFIle + * [PARQUET-769] - C++: Add support for Brotli Compression + * [PARQUET-489] - Add visibility macros to be used for public and internal APIs of libparquet + * [PARQUET-542] - Support memory allocation from external memory + * [PARQUET-844] - [C++] Consolidate encodings, schema, and compression subdirectories into fewer files + * [PARQUET-848] - [C++] Consolidate libparquet_thrift subcomponent + * [PARQUET-646] - [C++] Enable easier 3rd-party toolchain clang builds on Linux + * [PARQUET-598] - [C++] Test writing all primitive data types + * [PARQUET-442] - Convert flat SchemaElement vector to implied nested schema data structure + * [PARQUET-867] - [C++] Support writing sliced Arrow arrays + * [PARQUET-456] - Add zlib codec support + * [PARQUET-834] - C++: Support r/w of arrow::ListArray + * [PARQUET-485] - Decouple data page delimiting from column reader / scanner classes, create test fixtures + * [PARQUET-434] - Add a ParquetFileReader class to encapsulate some low-level details of interacting with Parquet files + * [PARQUET-666] - PLAIN_DICTIONARY write support + * [PARQUET-437] - Incorporate googletest thirdparty dependency and add cmake tools (ADD_PARQUET_TEST) to simplify adding new unit tests + * [PARQUET-866] - [C++] Account for API changes in ARROW-33 + * [PARQUET-545] - Improve API to support Decimal type + * [PARQUET-579] - Add API for writing Column statistics + * [PARQUET-494] - Implement PLAIN_DICTIONARY encoding and decoding + * [PARQUET-618] - C++: Automatically upload conda build artifacts on commits to master + * [PARQUET-833] - C++: Provide API to write spaced arrays (e.g. Arrow) + * [PARQUET-903] - C++: Add option to set RPATH to ORIGIN + * [PARQUET-451] - Add a RowGroup reader interface class + * [PARQUET-785] - C++: List conversion for Arrow Schemas + * [PARQUET-712] - C++: Read into Arrow memory + * [PARQUET-890] - C++: Support I/O of DATE columns in parquet_arrow + * [PARQUET-782] - C++: Support writing to Arrow sinks + * [PARQUET-849] - [C++] Upgrade default Thrift in thirdparty toolchain to 0.9.3 or 0.10 + * [PARQUET-573] - C++: Create a public API for reading and writing file metadata + +## Task + * [PARQUET-814] - C++: Remove Conda recipes + * [PARQUET-503] - Re-enable parquet 2.0 encodings + * [PARQUET-169] - Parquet-cpp: Implement support for bulk reading and writing repetition/definition levels. + * [PARQUET-878] - C++: Remove setup_build_env from rc-verification script + * [PARQUET-881] - C++: Update Arrow hash to 0.2.0-rc2 + * [PARQUET-771] - C++: Sync KEYS file + * [PARQUET-901] - C++: Publish RCs in apache-parquet-VERSION in SVN + +## Test + * [PARQUET-525] - Test coverage for malformed file failure modes on the read path + * [PARQUET-703] - [C++] Validate num_values metadata for columns with nulls + * [PARQUET-507] - Improve runtime of rle-test.cc + * [PARQUET-549] - Add scanner and column reader tests for dictionary data pages + * [PARQUET-457] - Add compressed data page unit tests diff --git a/src/arrow/cpp/CMakeLists.txt b/src/arrow/cpp/CMakeLists.txt new file mode 100644 index 000000000..65b9d96b2 --- /dev/null +++ b/src/arrow/cpp/CMakeLists.txt @@ -0,0 +1,958 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + +cmake_minimum_required(VERSION 3.5) +message(STATUS "Building using CMake version: ${CMAKE_VERSION}") + +# Compiler id for Apple Clang is now AppleClang. +# https://www.cmake.org/cmake/help/latest/policy/CMP0025.html +cmake_policy(SET CMP0025 NEW) + +# Only interpret if() arguments as variables or keywords when unquoted. +# https://www.cmake.org/cmake/help/latest/policy/CMP0054.html +cmake_policy(SET CMP0054 NEW) + +# Support new if() IN_LIST operator. +# https://www.cmake.org/cmake/help/latest/policy/CMP0057.html +cmake_policy(SET CMP0057 NEW) + +# Adapted from Apache Kudu: https://github.com/apache/kudu/commit/bd549e13743a51013585 +# Honor visibility properties for all target types. +# https://www.cmake.org/cmake/help/latest/policy/CMP0063.html +cmake_policy(SET CMP0063 NEW) + +# RPATH settings on macOS do not affect install_name. +# https://cmake.org/cmake/help/latest/policy/CMP0068.html +if(POLICY CMP0068) + cmake_policy(SET CMP0068 NEW) +endif() + +# find_package() uses _ROOT variables. +# https://cmake.org/cmake/help/latest/policy/CMP0074.html +if(POLICY CMP0074) + cmake_policy(SET CMP0074 NEW) +endif() + +set(ARROW_VERSION "6.0.1") + +string(REGEX MATCH "^[0-9]+\\.[0-9]+\\.[0-9]+" ARROW_BASE_VERSION "${ARROW_VERSION}") + +# if no build build type is specified, default to release builds +if(NOT DEFINED CMAKE_BUILD_TYPE) + set(CMAKE_BUILD_TYPE + Release + CACHE STRING "Choose the type of build.") +endif() +string(TOLOWER ${CMAKE_BUILD_TYPE} LOWERCASE_BUILD_TYPE) +string(TOUPPER ${CMAKE_BUILD_TYPE} UPPERCASE_BUILD_TYPE) + +list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake_modules") + +# this must be included before the project() command, because of the way +# vcpkg (ab)uses CMAKE_TOOLCHAIN_FILE to inject its logic into CMake +if(ARROW_DEPENDENCY_SOURCE STREQUAL "VCPKG") + include(Usevcpkg) +endif() + +project(arrow VERSION "${ARROW_BASE_VERSION}") + +set(ARROW_VERSION_MAJOR "${arrow_VERSION_MAJOR}") +set(ARROW_VERSION_MINOR "${arrow_VERSION_MINOR}") +set(ARROW_VERSION_PATCH "${arrow_VERSION_PATCH}") +if(ARROW_VERSION_MAJOR STREQUAL "" + OR ARROW_VERSION_MINOR STREQUAL "" + OR ARROW_VERSION_PATCH STREQUAL "") + message(FATAL_ERROR "Failed to determine Arrow version from '${ARROW_VERSION}'") +endif() + +# The SO version is also the ABI version +if(ARROW_VERSION_MAJOR STREQUAL "0") + # Arrow 0.x.y => SO version is "x", full SO version is "x.y.0" + set(ARROW_SO_VERSION "${ARROW_VERSION_MINOR}") + set(ARROW_FULL_SO_VERSION "${ARROW_SO_VERSION}.${ARROW_VERSION_PATCH}.0") +else() + # Arrow 1.x.y => SO version is "10x", full SO version is "10x.y.0" + math(EXPR ARROW_SO_VERSION "${ARROW_VERSION_MAJOR} * 100 + ${ARROW_VERSION_MINOR}") + set(ARROW_FULL_SO_VERSION "${ARROW_SO_VERSION}.${ARROW_VERSION_PATCH}.0") +endif() + +message(STATUS "Arrow version: " + "${ARROW_VERSION_MAJOR}.${ARROW_VERSION_MINOR}.${ARROW_VERSION_PATCH} " + "(full: '${ARROW_VERSION}')") +message(STATUS "Arrow SO version: ${ARROW_SO_VERSION} (full: ${ARROW_FULL_SO_VERSION})") + +set(ARROW_SOURCE_DIR ${PROJECT_SOURCE_DIR}) +set(ARROW_BINARY_DIR ${PROJECT_BINARY_DIR}) + +include(CMakePackageConfigHelpers) +include(CMakeParseArguments) +include(ExternalProject) +include(FindPackageHandleStandardArgs) + +include(GNUInstallDirs) + +set(BUILD_SUPPORT_DIR "${CMAKE_SOURCE_DIR}/build-support") + +set(ARROW_CMAKE_INSTALL_DIR "${CMAKE_INSTALL_LIBDIR}/cmake/${PROJECT_NAME}") +set(ARROW_DOC_DIR "share/doc/${PROJECT_NAME}") + +set(ARROW_LLVM_VERSIONS + "13.0" + "12.0" + "11.1" + "11.0" + "10" + "9" + "8" + "7") +list(GET ARROW_LLVM_VERSIONS 0 ARROW_LLVM_VERSION_PRIMARY) +string(REGEX REPLACE "^([0-9]+)(\\..+)?" "\\1" ARROW_LLVM_VERSION_PRIMARY_MAJOR + "${ARROW_LLVM_VERSION_PRIMARY}") + +file(READ ${CMAKE_CURRENT_SOURCE_DIR}/../.env ARROW_ENV) +string(REGEX MATCH "CLANG_TOOLS=[^\n]+" ARROW_ENV_CLANG_TOOLS_VERSION "${ARROW_ENV}") +string(REGEX REPLACE "^CLANG_TOOLS=" "" ARROW_CLANG_TOOLS_VERSION + "${ARROW_ENV_CLANG_TOOLS_VERSION}") +string(REGEX REPLACE "^([0-9]+)(\\..+)?" "\\1" ARROW_CLANG_TOOLS_VERSION_MAJOR + "${ARROW_CLANG_TOOLS_VERSION}") + +if(APPLE) + find_program(BREW_BIN brew) + if(BREW_BIN) + execute_process(COMMAND ${BREW_BIN} --prefix + "llvm@${ARROW_LLVM_VERSION_PRIMARY_MAJOR}" + OUTPUT_VARIABLE LLVM_BREW_PREFIX + OUTPUT_STRIP_TRAILING_WHITESPACE) + if(NOT LLVM_BREW_PREFIX) + execute_process(COMMAND ${BREW_BIN} --prefix llvm + OUTPUT_VARIABLE LLVM_BREW_PREFIX + OUTPUT_STRIP_TRAILING_WHITESPACE) + endif() + + execute_process(COMMAND ${BREW_BIN} --prefix "llvm@${ARROW_CLANG_TOOLS_VERSION_MAJOR}" + OUTPUT_VARIABLE CLANG_TOOLS_BREW_PREFIX + OUTPUT_STRIP_TRAILING_WHITESPACE) + if(NOT CLANG_TOOLS_BREW_PREFIX) + execute_process(COMMAND ${BREW_BIN} --prefix llvm + OUTPUT_VARIABLE CLANG_TOOLS_BREW_PREFIX + OUTPUT_STRIP_TRAILING_WHITESPACE) + endif() + endif() +endif() + +if(WIN32 AND NOT MINGW) + # This is used to handle builds using e.g. clang in an MSVC setting. + set(MSVC_TOOLCHAIN TRUE) +else() + set(MSVC_TOOLCHAIN FALSE) +endif() + +find_package(ClangTools) +find_package(InferTools) +if("$ENV{CMAKE_EXPORT_COMPILE_COMMANDS}" STREQUAL "1" + OR CLANG_TIDY_FOUND + OR INFER_FOUND) + # Generate a Clang compile_commands.json "compilation database" file for use + # with various development tools, such as Vim's YouCompleteMe plugin. + # See http://clang.llvm.org/docs/JSONCompilationDatabase.html + set(CMAKE_EXPORT_COMPILE_COMMANDS 1) +endif() + +# ---------------------------------------------------------------------- +# cmake options +include(DefineOptions) + +# Needed for linting targets, etc. +if(${CMAKE_VERSION} VERSION_LESS "3.12.0") + find_package(PythonInterp) +else() + # Use the first Python installation on PATH, not the newest one + set(Python3_FIND_STRATEGY "LOCATION") + # On Windows, use registry last, not first + set(Python3_FIND_REGISTRY "LAST") + # On macOS, use framework last, not first + set(Python3_FIND_FRAMEWORK "LAST") + + find_package(Python3) + set(PYTHON_EXECUTABLE ${Python3_EXECUTABLE}) +endif() + +if(ARROW_USE_CCACHE) + find_program(CCACHE_FOUND ccache) + if(CCACHE_FOUND) + message(STATUS "Using ccache: ${CCACHE_FOUND}") + set_property(GLOBAL PROPERTY RULE_LAUNCH_COMPILE ${CCACHE_FOUND}) + set_property(GLOBAL PROPERTY RULE_LAUNCH_LINK ${CCACHE_FOUND}) + # ARROW-3985: let ccache preserve C++ comments, because some of them may be + # meaningful to the compiler + set(ENV{CCACHE_COMMENTS} "1") + endif(CCACHE_FOUND) +endif() + +if(ARROW_USE_PRECOMPILED_HEADERS AND ${CMAKE_VERSION} VERSION_LESS "3.16.0") + message(WARNING "Precompiled headers need CMake 3.16.0 or later, disabling") + set(ARROW_USE_PRECOMPILED_HEADERS OFF) +endif() + +if(ARROW_OPTIONAL_INSTALL) + # Don't make the "install" target depend on the "all" target + set(CMAKE_SKIP_INSTALL_ALL_DEPENDENCY true) + + set(INSTALL_IS_OPTIONAL OPTIONAL) +endif() + +# +# "make lint" target +# +if(NOT ARROW_VERBOSE_LINT) + set(ARROW_LINT_QUIET "--quiet") +endif() + +if(NOT LINT_EXCLUSIONS_FILE) + # source files matching a glob from a line in this file + # will be excluded from linting (cpplint, clang-tidy, clang-format) + set(LINT_EXCLUSIONS_FILE ${BUILD_SUPPORT_DIR}/lint_exclusions.txt) +endif() + +find_program(CPPLINT_BIN + NAMES cpplint cpplint.py + HINTS ${BUILD_SUPPORT_DIR}) +message(STATUS "Found cpplint executable at ${CPPLINT_BIN}") + +add_custom_target(lint + ${PYTHON_EXECUTABLE} + ${BUILD_SUPPORT_DIR}/run_cpplint.py + --cpplint_binary + ${CPPLINT_BIN} + --exclude_globs + ${LINT_EXCLUSIONS_FILE} + --source_dir + ${CMAKE_CURRENT_SOURCE_DIR} + ${ARROW_LINT_QUIET}) + +# +# "make format" and "make check-format" targets +# +if(${CLANG_FORMAT_FOUND}) + # runs clang format and updates files in place. + add_custom_target(format + ${PYTHON_EXECUTABLE} + ${BUILD_SUPPORT_DIR}/run_clang_format.py + --clang_format_binary + ${CLANG_FORMAT_BIN} + --exclude_globs + ${LINT_EXCLUSIONS_FILE} + --source_dir + ${CMAKE_CURRENT_SOURCE_DIR} + --fix + ${ARROW_LINT_QUIET}) + + # runs clang format and exits with a non-zero exit code if any files need to be reformatted + add_custom_target(check-format + ${PYTHON_EXECUTABLE} + ${BUILD_SUPPORT_DIR}/run_clang_format.py + --clang_format_binary + ${CLANG_FORMAT_BIN} + --exclude_globs + ${LINT_EXCLUSIONS_FILE} + --source_dir + ${CMAKE_CURRENT_SOURCE_DIR} + ${ARROW_LINT_QUIET}) +endif() + +add_custom_target(lint_cpp_cli ${PYTHON_EXECUTABLE} ${BUILD_SUPPORT_DIR}/lint_cpp_cli.py + ${CMAKE_CURRENT_SOURCE_DIR}/src) + +if(ARROW_LINT_ONLY) + message("ARROW_LINT_ONLY was specified, this is only a partial build directory") + return() +endif() + +# +# "make clang-tidy" and "make check-clang-tidy" targets +# +if(${CLANG_TIDY_FOUND}) + # TODO check to make sure .clang-tidy is being respected + + # runs clang-tidy and attempts to fix any warning automatically + add_custom_target(clang-tidy + ${PYTHON_EXECUTABLE} + ${BUILD_SUPPORT_DIR}/run_clang_tidy.py + --clang_tidy_binary + ${CLANG_TIDY_BIN} + --exclude_globs + ${LINT_EXCLUSIONS_FILE} + --compile_commands + ${CMAKE_BINARY_DIR}/compile_commands.json + --source_dir + ${CMAKE_CURRENT_SOURCE_DIR} + --fix + ${ARROW_LINT_QUIET}) + + # runs clang-tidy and exits with a non-zero exit code if any errors are found. + add_custom_target(check-clang-tidy + ${PYTHON_EXECUTABLE} + ${BUILD_SUPPORT_DIR}/run_clang_tidy.py + --clang_tidy_binary + ${CLANG_TIDY_BIN} + --exclude_globs + ${LINT_EXCLUSIONS_FILE} + --compile_commands + ${CMAKE_BINARY_DIR}/compile_commands.json + --source_dir + ${CMAKE_CURRENT_SOURCE_DIR} + ${ARROW_LINT_QUIET}) +endif() + +if(UNIX) + add_custom_target(iwyu ${BUILD_SUPPORT_DIR}/iwyu/iwyu.sh) + add_custom_target(iwyu-all ${BUILD_SUPPORT_DIR}/iwyu/iwyu.sh all) +endif(UNIX) + +# +# Set up various options +# + +if(ARROW_BUILD_BENCHMARKS + OR ARROW_BUILD_TESTS + OR ARROW_BUILD_INTEGRATION + OR ARROW_FUZZING) + set(ARROW_JSON ON) + set(ARROW_TESTING ON) +endif() + +if(ARROW_GANDIVA) + set(ARROW_WITH_RE2 ON) +endif() + +if(ARROW_CUDA + OR ARROW_FLIGHT + OR ARROW_PARQUET + OR ARROW_BUILD_TESTS + OR ARROW_BUILD_BENCHMARKS) + set(ARROW_IPC ON) +endif() + +if(ARROW_ENGINE) + set(ARROW_COMPUTE ON) +endif() + +if(ARROW_DATASET) + set(ARROW_COMPUTE ON) + set(ARROW_FILESYSTEM ON) +endif() + +if(ARROW_PARQUET) + set(ARROW_COMPUTE ON) +endif() + +if(ARROW_PYTHON) + set(ARROW_COMPUTE ON) + set(ARROW_CSV ON) + set(ARROW_DATASET ON) + set(ARROW_FILESYSTEM ON) + set(ARROW_HDFS ON) + set(ARROW_JSON ON) +endif() + +if(MSVC_TOOLCHAIN) + # ORC doesn't build on windows + set(ARROW_ORC OFF) + # Plasma using glog is not fully tested on windows. + set(ARROW_USE_GLOG OFF) +endif() + +if(ARROW_JNI) + set(ARROW_BUILD_STATIC ON) +endif() + +if(ARROW_ORC) + set(ARROW_WITH_LZ4 ON) + set(ARROW_WITH_SNAPPY ON) + set(ARROW_WITH_ZLIB ON) + set(ARROW_WITH_ZSTD ON) +endif() + +# datetime code used by iOS requires zlib support +if(IOS) + set(ARROW_WITH_ZLIB ON) +endif() + +if(NOT ARROW_BUILD_TESTS) + set(NO_TESTS 1) +else() + add_custom_target(all-tests) + add_custom_target(unittest + ctest + -j4 + -L + unittest + --output-on-failure) + add_dependencies(unittest all-tests) +endif() + +if(ARROW_ENABLE_TIMING_TESTS) + add_definitions(-DARROW_WITH_TIMING_TESTS) +endif() + +if(NOT ARROW_BUILD_BENCHMARKS) + set(NO_BENCHMARKS 1) +else() + add_custom_target(all-benchmarks) + add_custom_target(benchmark ctest -L benchmark) + add_dependencies(benchmark all-benchmarks) + if(ARROW_BUILD_BENCHMARKS_REFERENCE) + add_definitions(-DARROW_WITH_BENCHMARKS_REFERENCE) + endif() +endif() + +if(NOT ARROW_BUILD_EXAMPLES) + set(NO_EXAMPLES 1) +endif() + +if(NOT ARROW_FUZZING) + set(NO_FUZZING 1) +endif() + +if(ARROW_LARGE_MEMORY_TESTS) + add_definitions(-DARROW_LARGE_MEMORY_TESTS) +endif() + +if(ARROW_TEST_MEMCHECK) + add_definitions(-DARROW_VALGRIND) +endif() + +if(ARROW_USE_UBSAN) + add_definitions(-DARROW_UBSAN) +endif() + +# +# Compiler flags +# + +if(ARROW_NO_DEPRECATED_API) + add_definitions(-DARROW_NO_DEPRECATED_API) +endif() + +if(ARROW_EXTRA_ERROR_CONTEXT) + add_definitions(-DARROW_EXTRA_ERROR_CONTEXT) +endif() + +include(SetupCxxFlags) + +# +# Linker flags +# + +# Localize thirdparty symbols using a linker version script. This hides them +# from the client application. The OS X linker does not support the +# version-script option. +if(CMAKE_VERSION VERSION_LESS 3.18) + if(APPLE OR WIN32) + set(CXX_LINKER_SUPPORTS_VERSION_SCRIPT FALSE) + else() + set(CXX_LINKER_SUPPORTS_VERSION_SCRIPT TRUE) + endif() +else() + include(CheckLinkerFlag) + check_linker_flag(CXX + "-Wl,--version-script=${CMAKE_CURRENT_SOURCE_DIR}/src/arrow/symbols.map" + CXX_LINKER_SUPPORTS_VERSION_SCRIPT) +endif() + +# +# Build output directory +# + +# set compile output directory +string(TOLOWER ${CMAKE_BUILD_TYPE} BUILD_SUBDIR_NAME) + +# If build in-source, create the latest symlink. If build out-of-source, which is +# preferred, simply output the binaries in the build folder +if(${CMAKE_SOURCE_DIR} STREQUAL ${CMAKE_CURRENT_BINARY_DIR}) + set(BUILD_OUTPUT_ROOT_DIRECTORY + "${CMAKE_CURRENT_BINARY_DIR}/build/${BUILD_SUBDIR_NAME}/") + # Link build/latest to the current build directory, to avoid developers + # accidentally running the latest debug build when in fact they're building + # release builds. + file(MAKE_DIRECTORY ${BUILD_OUTPUT_ROOT_DIRECTORY}) + if(NOT APPLE) + set(MORE_ARGS "-T") + endif() + execute_process(COMMAND ln ${MORE_ARGS} -sf ${BUILD_OUTPUT_ROOT_DIRECTORY} + ${CMAKE_CURRENT_BINARY_DIR}/build/latest) +else() + set(BUILD_OUTPUT_ROOT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/${BUILD_SUBDIR_NAME}/") +endif() + +# where to put generated archives (.a files) +set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY "${BUILD_OUTPUT_ROOT_DIRECTORY}") +set(ARCHIVE_OUTPUT_DIRECTORY "${BUILD_OUTPUT_ROOT_DIRECTORY}") + +# where to put generated libraries (.so files) +set(CMAKE_LIBRARY_OUTPUT_DIRECTORY "${BUILD_OUTPUT_ROOT_DIRECTORY}") +set(LIBRARY_OUTPUT_DIRECTORY "${BUILD_OUTPUT_ROOT_DIRECTORY}") + +# where to put generated binaries +set(EXECUTABLE_OUTPUT_PATH "${BUILD_OUTPUT_ROOT_DIRECTORY}") + +if(CMAKE_GENERATOR STREQUAL Xcode) + # Xcode projects support multi-configuration builds. This forces a single output directory + # when building with Xcode that is consistent with single-configuration Makefile driven build. + set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY_${UPPERCASE_BUILD_TYPE} + "${BUILD_OUTPUT_ROOT_DIRECTORY}") + set(CMAKE_LIBRARY_OUTPUT_DIRECTORY_${UPPERCASE_BUILD_TYPE} + "${BUILD_OUTPUT_ROOT_DIRECTORY}") + set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_${UPPERCASE_BUILD_TYPE} + "${BUILD_OUTPUT_ROOT_DIRECTORY}") +endif() + +# +# Dependencies +# + +include(BuildUtils) +enable_testing() + +# For arrow.pc. Requires.private and Libs.private are used when +# "pkg-config --libs --static arrow" is used. +set(ARROW_PC_REQUIRES_PRIVATE) +set(ARROW_PC_LIBS_PRIVATE) + +include(ThirdpartyToolchain) + +# Add common flags +set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${CXX_COMMON_FLAGS}") +set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${ARROW_CXXFLAGS}") + +# For any C code, use the same flags. These flags don't contain +# C++ specific flags. +set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${CXX_COMMON_FLAGS} ${ARROW_CXXFLAGS}") + +# Remove --std=c++11 to avoid errors from C compilers +string(REPLACE "-std=c++11" "" CMAKE_C_FLAGS ${CMAKE_C_FLAGS}) + +# Add C++-only flags, like -std=c++11 +set(CMAKE_CXX_FLAGS "${CXX_ONLY_FLAGS} ${CMAKE_CXX_FLAGS}") + +# ASAN / TSAN / UBSAN +if(ARROW_FUZZING) + set(ARROW_USE_COVERAGE ON) +endif() +include(san-config) + +# Code coverage +if("${ARROW_GENERATE_COVERAGE}") + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} --coverage -DCOVERAGE_BUILD") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} --coverage -DCOVERAGE_BUILD") +endif() + +# CMAKE_CXX_FLAGS now fully assembled +message(STATUS "CMAKE_C_FLAGS: ${CMAKE_C_FLAGS}") +message(STATUS "CMAKE_CXX_FLAGS: ${CMAKE_CXX_FLAGS}") + +include_directories(${CMAKE_CURRENT_BINARY_DIR}/src) +include_directories(src) + +# Compiled flatbuffers files +include_directories(src/generated) + +# +# Visibility +# +if(PARQUET_BUILD_SHARED) + set_target_properties(arrow_shared + PROPERTIES C_VISIBILITY_PRESET hidden + CXX_VISIBILITY_PRESET hidden + VISIBILITY_INLINES_HIDDEN 1) +endif() + +# +# "make ctags" target +# +if(UNIX) + add_custom_target(ctags ctags -R --languages=c++,c) +endif(UNIX) + +# +# "make etags" target +# +if(UNIX) + add_custom_target(tags + etags + --members + --declarations + `find + ${CMAKE_CURRENT_SOURCE_DIR}/src + -name + \\*.cc + -or + -name + \\*.hh + -or + -name + \\*.cpp + -or + -name + \\*.h + -or + -name + \\*.c + -or + -name + \\*.f`) + add_custom_target(etags DEPENDS tags) +endif(UNIX) + +# +# "make cscope" target +# +if(UNIX) + add_custom_target(cscope + find + ${CMAKE_CURRENT_SOURCE_DIR} + (-name + \\*.cc + -or + -name + \\*.hh + -or + -name + \\*.cpp + -or + -name + \\*.h + -or + -name + \\*.c + -or + -name + \\*.f) + -exec + echo + \"{}\" + \; + > + cscope.files + && + cscope + -q + -b + VERBATIM) +endif(UNIX) + +# +# "make infer" target +# + +if(${INFER_FOUND}) + # runs infer capture + add_custom_target(infer ${BUILD_SUPPORT_DIR}/run-infer.sh ${INFER_BIN} + ${CMAKE_BINARY_DIR}/compile_commands.json 1) + # runs infer analyze + add_custom_target(infer-analyze ${BUILD_SUPPORT_DIR}/run-infer.sh ${INFER_BIN} + ${CMAKE_BINARY_DIR}/compile_commands.json 2) + # runs infer report + add_custom_target(infer-report ${BUILD_SUPPORT_DIR}/run-infer.sh ${INFER_BIN} + ${CMAKE_BINARY_DIR}/compile_commands.json 3) +endif() + +# +# Linker and Dependencies +# + +# Libraries to link statically with libarrow.so +set(ARROW_LINK_LIBS) +set(ARROW_STATIC_LINK_LIBS) +set(ARROW_STATIC_INSTALL_INTERFACE_LIBS) + +if(ARROW_USE_OPENSSL) + set(ARROW_OPENSSL_LIBS OpenSSL::Crypto OpenSSL::SSL) + list(APPEND ARROW_LINK_LIBS ${ARROW_OPENSSL_LIBS}) + list(APPEND ARROW_STATIC_LINK_LIBS ${ARROW_OPENSSL_LIBS}) + list(APPEND ARROW_STATIC_INSTALL_INTERFACE_LIBS ${ARROW_OPENSSL_LIBS}) +endif() + +if(ARROW_WITH_BROTLI) + # Order is important for static linking + set(ARROW_BROTLI_LIBS Brotli::brotlienc Brotli::brotlidec Brotli::brotlicommon) + list(APPEND ARROW_LINK_LIBS ${ARROW_BROTLI_LIBS}) + list(APPEND ARROW_STATIC_LINK_LIBS ${ARROW_BROTLI_LIBS}) + if(Brotli_SOURCE STREQUAL "SYSTEM") + list(APPEND ARROW_STATIC_INSTALL_INTERFACE_LIBS ${ARROW_BROTLI_LIBS}) + endif() +endif() + +if(ARROW_WITH_BZ2) + list(APPEND ARROW_STATIC_LINK_LIBS BZip2::BZip2) + if(BZip2_SOURCE STREQUAL "SYSTEM") + list(APPEND ARROW_STATIC_INSTALL_INTERFACE_LIBS BZip2::BZip2) + endif() +endif() + +if(ARROW_WITH_LZ4) + list(APPEND ARROW_STATIC_LINK_LIBS LZ4::lz4) + if(Lz4_SOURCE STREQUAL "SYSTEM") + list(APPEND ARROW_STATIC_INSTALL_INTERFACE_LIBS LZ4::lz4) + endif() +endif() + +if(ARROW_WITH_SNAPPY) + list(APPEND ARROW_STATIC_LINK_LIBS Snappy::snappy) + if(Snappy_SOURCE STREQUAL "SYSTEM") + list(APPEND ARROW_STATIC_INSTALL_INTERFACE_LIBS Snappy::snappy) + endif() +endif() + +if(ARROW_WITH_ZLIB) + list(APPEND ARROW_STATIC_LINK_LIBS ZLIB::ZLIB) + if(ZLIB_SOURCE STREQUAL "SYSTEM") + list(APPEND ARROW_STATIC_INSTALL_INTERFACE_LIBS ZLIB::ZLIB) + endif() +endif() + +if(ARROW_WITH_ZSTD) + list(APPEND ARROW_STATIC_LINK_LIBS ${ARROW_ZSTD_LIBZSTD}) + if(zstd_SOURCE STREQUAL "SYSTEM") + list(APPEND ARROW_STATIC_INSTALL_INTERFACE_LIBS ${ARROW_ZSTD_LIBZSTD}) + endif() +endif() + +if(ARROW_ORC) + list(APPEND ARROW_LINK_LIBS orc::liborc ${ARROW_PROTOBUF_LIBPROTOBUF}) + list(APPEND ARROW_STATIC_LINK_LIBS orc::liborc ${ARROW_PROTOBUF_LIBPROTOBUF}) + if(ORC_SOURCE STREQUAL "SYSTEM") + list(APPEND ARROW_STATIC_INSTALL_INTERFACE_LIBS orc::liborc + ${ARROW_PROTOBUF_LIBPROTOBUF}) + endif() +endif() + +if(ARROW_GCS) + list(APPEND ARROW_LINK_LIBS google-cloud-cpp::storage) + list(APPEND ARROW_STATIC_LINK_LIBS google-cloud-cpp::storage) + if(google_cloud_cpp_storage_SOURCE STREQUAL "SYSTEM") + list(APPEND ARROW_STATIC_INSTALL_INTERFACE_LIBS google-cloud-cpp::storage) + endif() +endif() + +if(ARROW_USE_GLOG) + list(APPEND ARROW_LINK_LIBS glog::glog) + list(APPEND ARROW_STATIC_LINK_LIBS glog::glog) + if(GLOG_SOURCE STREQUAL "SYSTEM") + list(APPEND ARROW_STATIC_INSTALL_INTERFACE_LIBS glog::glog) + endif() + add_definitions("-DARROW_USE_GLOG") +endif() + +if(ARROW_S3) + list(APPEND ARROW_LINK_LIBS ${AWSSDK_LINK_LIBRARIES}) + list(APPEND ARROW_STATIC_LINK_LIBS ${AWSSDK_LINK_LIBRARIES}) +endif() + +if(ARROW_WITH_UTF8PROC) + list(APPEND ARROW_LINK_LIBS utf8proc::utf8proc) + list(APPEND ARROW_STATIC_LINK_LIBS utf8proc::utf8proc) + if(utf8proc_SOURCE STREQUAL "SYSTEM") + list(APPEND ARROW_STATIC_INSTALL_INTERFACE_LIBS utf8proc::utf8proc) + endif() +endif() + +if(ARROW_WITH_RE2) + list(APPEND ARROW_LINK_LIBS re2::re2) + list(APPEND ARROW_STATIC_LINK_LIBS re2::re2) + if(re2_SOURCE STREQUAL "SYSTEM") + list(APPEND ARROW_STATIC_INSTALL_INTERFACE_LIBS re2::re2) + endif() +endif() + +add_custom_target(arrow_dependencies) +add_custom_target(arrow_benchmark_dependencies) +add_custom_target(arrow_test_dependencies) + +# ARROW-4581: CMake can be finicky about invoking the ExternalProject builds +# for some of the library dependencies, so we "nuke it from orbit" by making +# the toolchain dependency explicit using these "dependencies" targets +add_dependencies(arrow_dependencies toolchain) +add_dependencies(arrow_test_dependencies toolchain-tests) + +if(ARROW_STATIC_LINK_LIBS) + add_dependencies(arrow_dependencies ${ARROW_STATIC_LINK_LIBS}) + if(ARROW_ORC) + if(NOT MSVC_TOOLCHAIN) + list(APPEND ARROW_STATIC_LINK_LIBS ${CMAKE_DL_LIBS}) + list(APPEND ARROW_STATIC_INSTALL_INTERFACE_LIBS ${CMAKE_DL_LIBS}) + endif() + endif() +endif() + +set(ARROW_SHARED_PRIVATE_LINK_LIBS ${ARROW_STATIC_LINK_LIBS}) + +# boost::filesystem is needed for S3 and Flight tests as a boost::process dependency. +if(((ARROW_FLIGHT + OR ARROW_S3 + OR ARROW_GCS) + AND (ARROW_BUILD_TESTS OR ARROW_BUILD_INTEGRATION) + )) + list(APPEND ARROW_TEST_LINK_LIBS ${BOOST_FILESYSTEM_LIBRARY} ${BOOST_SYSTEM_LIBRARY}) +endif() + +if(NOT MSVC_TOOLCHAIN) + list(APPEND ARROW_LINK_LIBS ${CMAKE_DL_LIBS}) + list(APPEND ARROW_SHARED_INSTALL_INTERFACE_LIBS ${CMAKE_DL_LIBS}) +endif() + +set(ARROW_TEST_LINK_TOOLCHAIN + GTest::gtest_main + GTest::gtest + GTest::gmock + ${BOOST_FILESYSTEM_LIBRARY} + ${BOOST_SYSTEM_LIBRARY}) + +if(ARROW_BUILD_TESTS) + add_dependencies(arrow_test_dependencies ${ARROW_TEST_LINK_TOOLCHAIN}) +endif() + +if(ARROW_BUILD_BENCHMARKS) + # Some benchmarks use gtest + add_dependencies(arrow_benchmark_dependencies arrow_test_dependencies + toolchain-benchmarks) +endif() + +set(ARROW_TEST_STATIC_LINK_LIBS arrow_testing_static arrow_static ${ARROW_LINK_LIBS} + ${ARROW_TEST_LINK_TOOLCHAIN}) + +set(ARROW_TEST_SHARED_LINK_LIBS arrow_testing_shared arrow_shared ${ARROW_LINK_LIBS} + ${ARROW_TEST_LINK_TOOLCHAIN}) + +if(NOT MSVC) + set(ARROW_TEST_SHARED_LINK_LIBS ${ARROW_TEST_SHARED_LINK_LIBS} ${CMAKE_DL_LIBS}) +endif() + +if("${ARROW_TEST_LINKAGE}" STREQUAL "shared") + if(ARROW_BUILD_TESTS AND NOT ARROW_BUILD_SHARED) + message(FATAL_ERROR "If using shared linkage for unit tests, must also \ +pass ARROW_BUILD_SHARED=on") + endif() + # Use shared linking for unit tests if it's available + set(ARROW_TEST_LINK_LIBS ${ARROW_TEST_SHARED_LINK_LIBS}) + set(ARROW_EXAMPLE_LINK_LIBS arrow_shared) +else() + if(ARROW_BUILD_TESTS AND NOT ARROW_BUILD_STATIC) + message(FATAL_ERROR "If using static linkage for unit tests, must also \ +pass ARROW_BUILD_STATIC=on") + endif() + set(ARROW_TEST_LINK_LIBS ${ARROW_TEST_STATIC_LINK_LIBS}) + set(ARROW_EXAMPLE_LINK_LIBS arrow_static) +endif() + +if(ARROW_BUILD_BENCHMARKS) + # In the case that benchmark::benchmark_main is not available, + # we need to provide our own version. This only happens for older versions + # of benchmark. + if(NOT TARGET benchmark::benchmark_main) + add_library(arrow_benchmark_main STATIC src/arrow/util/benchmark_main.cc) + add_library(benchmark::benchmark_main ALIAS arrow_benchmark_main) + endif() + + set(ARROW_BENCHMARK_LINK_LIBS benchmark::benchmark_main benchmark::benchmark + ${ARROW_TEST_LINK_LIBS}) + if(WIN32) + set(ARROW_BENCHMARK_LINK_LIBS Shlwapi.dll ${ARROW_BENCHMARK_LINK_LIBS}) + endif() +endif() + +if(ARROW_JEMALLOC) + add_definitions(-DARROW_JEMALLOC) + add_definitions(-DARROW_JEMALLOC_INCLUDE_DIR=${JEMALLOC_INCLUDE_DIR}) + list(APPEND ARROW_LINK_LIBS jemalloc::jemalloc) + list(APPEND ARROW_STATIC_LINK_LIBS jemalloc::jemalloc) +endif() + +if(ARROW_MIMALLOC) + add_definitions(-DARROW_MIMALLOC) + list(APPEND ARROW_LINK_LIBS mimalloc::mimalloc) + list(APPEND ARROW_STATIC_LINK_LIBS mimalloc::mimalloc) +endif() + +# ---------------------------------------------------------------------- +# Handle platform-related libraries like -pthread + +set(ARROW_SYSTEM_LINK_LIBS) + +list(APPEND ARROW_SYSTEM_LINK_LIBS Threads::Threads) +if(CMAKE_THREAD_LIBS_INIT) + string(APPEND ARROW_PC_LIBS_PRIVATE " ${CMAKE_THREAD_LIBS_INIT}") +endif() + +if(WIN32) + # Winsock + list(APPEND ARROW_SYSTEM_LINK_LIBS "ws2_32.dll") +endif() + +if(NOT WIN32 AND NOT APPLE) + # Pass -lrt on Linux only + list(APPEND ARROW_SYSTEM_LINK_LIBS rt) +endif() + +list(APPEND ARROW_LINK_LIBS ${ARROW_SYSTEM_LINK_LIBS}) +list(APPEND ARROW_STATIC_LINK_LIBS ${ARROW_SYSTEM_LINK_LIBS}) +list(APPEND ARROW_STATIC_INSTALL_INTERFACE_LIBS ${ARROW_SYSTEM_LINK_LIBS}) + +# +# Subdirectories +# + +if(NOT WIN32 AND ARROW_PLASMA) + add_subdirectory(src/plasma) +endif() + +add_subdirectory(src/arrow) + +if(ARROW_PARQUET) + add_subdirectory(src/parquet) + add_subdirectory(tools/parquet) + if(PARQUET_BUILD_EXAMPLES) + add_subdirectory(examples/parquet) + endif() +endif() + +if(ARROW_JNI) + add_subdirectory(src/jni) +endif() + +if(ARROW_GANDIVA) + add_subdirectory(src/gandiva) +endif() + +if(ARROW_BUILD_EXAMPLES) + add_custom_target(runexample ctest -L example) + add_subdirectory(examples/arrow) +endif() + +install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/../LICENSE.txt + ${CMAKE_CURRENT_SOURCE_DIR}/../NOTICE.txt + ${CMAKE_CURRENT_SOURCE_DIR}/README.md DESTINATION "${ARROW_DOC_DIR}") + +# +# Validate and print out Arrow configuration options +# + +validate_config() +config_summary_message() +if(${ARROW_BUILD_CONFIG_SUMMARY_JSON}) + config_summary_json() +endif() diff --git a/src/arrow/cpp/CMakeSettings.json b/src/arrow/cpp/CMakeSettings.json new file mode 100644 index 000000000..90d3abbca --- /dev/null +++ b/src/arrow/cpp/CMakeSettings.json @@ -0,0 +1,21 @@ +{ + "configurations": [ + { + "name": "x64-Debug (default)", + "generator": "Ninja", + "configurationType": "Debug", + "inheritEnvironments": [ "msvc_x64_x64" ], + "buildRoot": "${projectDir}\\out\\build\\${name}", + "installRoot": "${projectDir}\\out\\install\\${name}", + "cmakeCommandArgs": "", + "buildCommandArgs": "", + "ctestCommandArgs": "", + "variables": [ + { + "name":"VCPKG_MANIFEST_MODE", + "value":"OFF" + } + ] + } + ] +} diff --git a/src/arrow/cpp/README.md b/src/arrow/cpp/README.md new file mode 100644 index 000000000..b083f3fe7 --- /dev/null +++ b/src/arrow/cpp/README.md @@ -0,0 +1,34 @@ + + +# Apache Arrow C++ + +This directory contains the code and build system for the Arrow C++ libraries, +as well as for the C++ libraries for Apache Parquet. + +## Installation + +See https://arrow.apache.org/install/ for the latest instructions how +to install pre-compiled binary versions of the library. + +## Source Builds and Development + +Please refer to our latest [C++ Development Documentation][1]. + +[1]: https://github.com/apache/arrow/blob/master/docs/source/developers/cpp diff --git a/src/arrow/cpp/apidoc/.gitignore b/src/arrow/cpp/apidoc/.gitignore new file mode 100644 index 000000000..5ccff1a6b --- /dev/null +++ b/src/arrow/cpp/apidoc/.gitignore @@ -0,0 +1 @@ +html/ diff --git a/src/arrow/cpp/apidoc/Doxyfile b/src/arrow/cpp/apidoc/Doxyfile new file mode 100644 index 000000000..8978dba53 --- /dev/null +++ b/src/arrow/cpp/apidoc/Doxyfile @@ -0,0 +1,2551 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + +# Doxyfile 1.8.18 + +# This file describes the settings to be used by the documentation system +# doxygen (www.doxygen.org) for a project. +# +# All text after a double hash (##) is considered a comment and is placed in +# front of the TAG it is preceding. +# +# All text after a single hash (#) is considered a comment and will be ignored. +# The format is: +# TAG = value [value, ...] +# For lists, items can also be appended using: +# TAG += value [value, ...] +# Values that contain spaces should be placed between quotes (\" \"). + +#--------------------------------------------------------------------------- +# Project related configuration options +#--------------------------------------------------------------------------- + +# This tag specifies the encoding used for all characters in the configuration +# file that follow. The default is UTF-8 which is also the encoding used for all +# text before the first occurrence of this tag. Doxygen uses libiconv (or the +# iconv built into libc) for the transcoding. See +# https://www.gnu.org/software/libiconv/ for the list of possible encodings. +# The default value is: UTF-8. + +DOXYFILE_ENCODING = UTF-8 + +# The PROJECT_NAME tag is a single word (or a sequence of words surrounded by +# double-quotes, unless you are using Doxywizard) that should identify the +# project for which the documentation is generated. This name is used in the +# title of most generated pages and in a few other places. +# The default value is: My Project. + +PROJECT_NAME = "Apache Arrow (C++)" + +# The PROJECT_NUMBER tag can be used to enter a project or revision number. This +# could be handy for archiving the generated documentation or if some version +# control system is used. + +PROJECT_NUMBER = + +# Using the PROJECT_BRIEF tag one can provide an optional one line description +# for a project that appears at the top of each page and should give viewer a +# quick idea about the purpose of the project. Keep the description short. + +PROJECT_BRIEF = "A columnar in-memory analytics layer designed to accelerate big data." + +# With the PROJECT_LOGO tag one can specify a logo or an icon that is included +# in the documentation. The maximum height of the logo should not exceed 55 +# pixels and the maximum width should not exceed 200 pixels. Doxygen will copy +# the logo to the output directory. + +PROJECT_LOGO = + +# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path +# into which the generated documentation will be written. If a relative path is +# entered, it will be relative to the location where doxygen was started. If +# left blank the current directory will be used. + +OUTPUT_DIRECTORY = $(OUTPUT_DIRECTORY) + +# If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub- +# directories (in 2 levels) under the output directory of each output format and +# will distribute the generated files over these directories. Enabling this +# option can be useful when feeding doxygen a huge amount of source files, where +# putting all generated files in the same directory would otherwise causes +# performance problems for the file system. +# The default value is: NO. + +CREATE_SUBDIRS = NO + +# If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII +# characters to appear in the names of generated files. If set to NO, non-ASCII +# characters will be escaped, for example _xE3_x81_x84 will be used for Unicode +# U+3044. +# The default value is: NO. + +ALLOW_UNICODE_NAMES = NO + +# The OUTPUT_LANGUAGE tag is used to specify the language in which all +# documentation generated by doxygen is written. Doxygen will use this +# information to generate all constant output in the proper language. +# Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese, +# Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States), +# Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian, +# Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages), +# Korean, Korean-en (Korean with English messages), Latvian, Lithuanian, +# Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian, +# Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish, +# Ukrainian and Vietnamese. +# The default value is: English. + +OUTPUT_LANGUAGE = English + +# The OUTPUT_TEXT_DIRECTION tag is used to specify the direction in which all +# documentation generated by doxygen is written. Doxygen will use this +# information to generate all generated output in the proper direction. +# Possible values are: None, LTR, RTL and Context. +# The default value is: None. + +OUTPUT_TEXT_DIRECTION = None + +# If the BRIEF_MEMBER_DESC tag is set to YES, doxygen will include brief member +# descriptions after the members that are listed in the file and class +# documentation (similar to Javadoc). Set to NO to disable this. +# The default value is: YES. + +BRIEF_MEMBER_DESC = YES + +# If the REPEAT_BRIEF tag is set to YES, doxygen will prepend the brief +# description of a member or function before the detailed description +# +# Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the +# brief descriptions will be completely suppressed. +# The default value is: YES. + +REPEAT_BRIEF = YES + +# This tag implements a quasi-intelligent brief description abbreviator that is +# used to form the text in various listings. Each string in this list, if found +# as the leading text of the brief description, will be stripped from the text +# and the result, after processing the whole list, is used as the annotated +# text. Otherwise, the brief description is used as-is. If left blank, the +# following values are used ($name is automatically replaced with the name of +# the entity):The $name class, The $name widget, The $name file, is, provides, +# specifies, contains, represents, a, an and the. + +ABBREVIATE_BRIEF = "The $name class" \ + "The $name widget" \ + "The $name file" \ + is \ + provides \ + specifies \ + contains \ + represents \ + a \ + an \ + the + +# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then +# doxygen will generate a detailed section even if there is only a brief +# description. +# The default value is: NO. + +ALWAYS_DETAILED_SEC = NO + +# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all +# inherited members of a class in the documentation of that class as if those +# members were ordinary class members. Constructors, destructors and assignment +# operators of the base classes will not be shown. +# The default value is: NO. + +INLINE_INHERITED_MEMB = NO + +# If the FULL_PATH_NAMES tag is set to YES, doxygen will prepend the full path +# before files name in the file list and in the header files. If set to NO the +# shortest path that makes the file name unique will be used +# The default value is: YES. + +FULL_PATH_NAMES = YES + +# The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path. +# Stripping is only done if one of the specified strings matches the left-hand +# part of the path. The tag can be used to show relative paths in the file list. +# If left blank the directory from which doxygen is run is used as the path to +# strip. +# +# Note that you can specify absolute paths here, but also relative paths, which +# will be relative from the directory where doxygen is started. +# This tag requires that the tag FULL_PATH_NAMES is set to YES. + +STRIP_FROM_PATH = + +# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the +# path mentioned in the documentation of a class, which tells the reader which +# header file to include in order to use a class. If left blank only the name of +# the header file containing the class definition is used. Otherwise one should +# specify the list of include paths that are normally passed to the compiler +# using the -I flag. + +STRIP_FROM_INC_PATH = ../src + +# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but +# less readable) file names. This can be useful is your file systems doesn't +# support long names like on DOS, Mac, or CD-ROM. +# The default value is: NO. + +SHORT_NAMES = NO + +# If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the +# first line (until the first dot) of a Javadoc-style comment as the brief +# description. If set to NO, the Javadoc-style will behave just like regular Qt- +# style comments (thus requiring an explicit @brief command for a brief +# description.) +# The default value is: NO. + +JAVADOC_AUTOBRIEF = YES + +# If the JAVADOC_BANNER tag is set to YES then doxygen will interpret a line +# such as +# /*************** +# as being the beginning of a Javadoc-style comment "banner". If set to NO, the +# Javadoc-style will behave just like regular comments and it will not be +# interpreted by doxygen. +# The default value is: NO. + +JAVADOC_BANNER = NO + +# If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first +# line (until the first dot) of a Qt-style comment as the brief description. If +# set to NO, the Qt-style will behave just like regular Qt-style comments (thus +# requiring an explicit \brief command for a brief description.) +# The default value is: NO. + +QT_AUTOBRIEF = NO + +# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a +# multi-line C++ special comment block (i.e. a block of //! or /// comments) as +# a brief description. This used to be the default behavior. The new default is +# to treat a multi-line C++ comment block as a detailed description. Set this +# tag to YES if you prefer the old behavior instead. +# +# Note that setting this tag to YES also means that rational rose comments are +# not recognized any more. +# The default value is: NO. + +MULTILINE_CPP_IS_BRIEF = NO + +# If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the +# documentation from any documented member that it re-implements. +# The default value is: YES. + +INHERIT_DOCS = YES + +# If the SEPARATE_MEMBER_PAGES tag is set to YES then doxygen will produce a new +# page for each member. If set to NO, the documentation of a member will be part +# of the file/class/namespace that contains it. +# The default value is: NO. + +SEPARATE_MEMBER_PAGES = NO + +# The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen +# uses this value to replace tabs by spaces in code fragments. +# Minimum value: 1, maximum value: 16, default value: 4. + +TAB_SIZE = 4 + +# This tag can be used to specify a number of aliases that act as commands in +# the documentation. An alias has the form: +# name=value +# For example adding +# "sideeffect=@par Side Effects:\n" +# will allow you to put the command \sideeffect (or @sideeffect) in the +# documentation, which will result in a user-defined paragraph with heading +# "Side Effects:". You can put \n's in the value part of an alias to insert +# newlines (in the resulting output). You can put ^^ in the value part of an +# alias to insert a newline as if a physical newline was in the original file. +# When you need a literal { or } or , in the value part of an alias you have to +# escape them by means of a backslash (\), this can lead to conflicts with the +# commands \{ and \} for these it is advised to use the version @{ and @} or use +# a double escape (\\{ and \\}) + +ALIASES = + +# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources +# only. Doxygen will then generate output that is more tailored for C. For +# instance, some of the names that are used will be different. The list of all +# members will be omitted, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_FOR_C = NO + +# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or +# Python sources only. Doxygen will then generate output that is more tailored +# for that language. For instance, namespaces will be presented as packages, +# qualified scopes will look different, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_JAVA = NO + +# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran +# sources. Doxygen will then generate output that is tailored for Fortran. +# The default value is: NO. + +OPTIMIZE_FOR_FORTRAN = NO + +# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL +# sources. Doxygen will then generate output that is tailored for VHDL. +# The default value is: NO. + +OPTIMIZE_OUTPUT_VHDL = NO + +# Set the OPTIMIZE_OUTPUT_SLICE tag to YES if your project consists of Slice +# sources only. Doxygen will then generate output that is more tailored for that +# language. For instance, namespaces will be presented as modules, types will be +# separated into more groups, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_SLICE = NO + +# Doxygen selects the parser to use depending on the extension of the files it +# parses. With this tag you can assign which parser to use for a given +# extension. Doxygen has a built-in mapping, but you can override or extend it +# using this tag. The format is ext=language, where ext is a file extension, and +# language is one of the parsers supported by doxygen: IDL, Java, JavaScript, +# Csharp (C#), C, C++, D, PHP, md (Markdown), Objective-C, Python, Slice, VHDL, +# Fortran (fixed format Fortran: FortranFixed, free formatted Fortran: +# FortranFree, unknown formatted Fortran: Fortran. In the later case the parser +# tries to guess whether the code is fixed or free formatted code, this is the +# default for Fortran type files). For instance to make doxygen treat .inc files +# as Fortran files (default is PHP), and .f files as C (default is Fortran), +# use: inc=Fortran f=C. +# +# Note: For files without extension you can use no_extension as a placeholder. +# +# Note that for custom extensions you also need to set FILE_PATTERNS otherwise +# the files are not read by doxygen. + +EXTENSION_MAPPING = + +# If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments +# according to the Markdown format, which allows for more readable +# documentation. See https://daringfireball.net/projects/markdown/ for details. +# The output of markdown processing is further processed by doxygen, so you can +# mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in +# case of backward compatibilities issues. +# The default value is: YES. + +MARKDOWN_SUPPORT = YES + +# When the TOC_INCLUDE_HEADINGS tag is set to a non-zero value, all headings up +# to that level are automatically included in the table of contents, even if +# they do not have an id attribute. +# Note: This feature currently applies only to Markdown headings. +# Minimum value: 0, maximum value: 99, default value: 5. +# This tag requires that the tag MARKDOWN_SUPPORT is set to YES. + +TOC_INCLUDE_HEADINGS = 0 + +# When enabled doxygen tries to link words that correspond to documented +# classes, or namespaces to their corresponding documentation. Such a link can +# be prevented in individual cases by putting a % sign in front of the word or +# globally by setting AUTOLINK_SUPPORT to NO. +# The default value is: YES. + +AUTOLINK_SUPPORT = YES + +# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want +# to include (a tag file for) the STL sources as input, then you should set this +# tag to YES in order to let doxygen match functions declarations and +# definitions whose arguments contain STL classes (e.g. func(std::string); +# versus func(std::string) {}). This also make the inheritance and collaboration +# diagrams that involve STL classes more complete and accurate. +# The default value is: NO. + +BUILTIN_STL_SUPPORT = NO + +# If you use Microsoft's C++/CLI language, you should set this option to YES to +# enable parsing support. +# The default value is: NO. + +CPP_CLI_SUPPORT = NO + +# Set the SIP_SUPPORT tag to YES if your project consists of sip (see: +# https://www.riverbankcomputing.com/software/sip/intro) sources only. Doxygen +# will parse them like normal C++ but will assume all classes use public instead +# of private inheritance when no explicit protection keyword is present. +# The default value is: NO. + +SIP_SUPPORT = NO + +# For Microsoft's IDL there are propget and propput attributes to indicate +# getter and setter methods for a property. Setting this option to YES will make +# doxygen to replace the get and set methods by a property in the documentation. +# This will only work if the methods are indeed getting or setting a simple +# type. If this is not the case, or you want to show the methods anyway, you +# should set this option to NO. +# The default value is: YES. + +IDL_PROPERTY_SUPPORT = YES + +# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC +# tag is set to YES then doxygen will reuse the documentation of the first +# member in the group (if any) for the other members of the group. By default +# all members of a group must be documented explicitly. +# The default value is: NO. + +DISTRIBUTE_GROUP_DOC = NO + +# If one adds a struct or class to a group and this option is enabled, then also +# any nested class or struct is added to the same group. By default this option +# is disabled and one has to add nested compounds explicitly via \ingroup. +# The default value is: NO. + +GROUP_NESTED_COMPOUNDS = NO + +# Set the SUBGROUPING tag to YES to allow class member groups of the same type +# (for instance a group of public functions) to be put as a subgroup of that +# type (e.g. under the Public Functions section). Set it to NO to prevent +# subgrouping. Alternatively, this can be done per class using the +# \nosubgrouping command. +# The default value is: YES. + +SUBGROUPING = YES + +# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions +# are shown inside the group in which they are included (e.g. using \ingroup) +# instead of on a separate page (for HTML and Man pages) or section (for LaTeX +# and RTF). +# +# Note that this feature does not work in combination with +# SEPARATE_MEMBER_PAGES. +# The default value is: NO. + +INLINE_GROUPED_CLASSES = NO + +# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions +# with only public data fields or simple typedef fields will be shown inline in +# the documentation of the scope in which they are defined (i.e. file, +# namespace, or group documentation), provided this scope is documented. If set +# to NO, structs, classes, and unions are shown on a separate page (for HTML and +# Man pages) or section (for LaTeX and RTF). +# The default value is: NO. + +INLINE_SIMPLE_STRUCTS = NO + +# When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or +# enum is documented as struct, union, or enum with the name of the typedef. So +# typedef struct TypeS {} TypeT, will appear in the documentation as a struct +# with name TypeT. When disabled the typedef will appear as a member of a file, +# namespace, or class. And the struct will be named TypeS. This can typically be +# useful for C code in case the coding convention dictates that all compound +# types are typedef'ed and only the typedef is referenced, never the tag name. +# The default value is: NO. + +TYPEDEF_HIDES_STRUCT = NO + +# The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This +# cache is used to resolve symbols given their name and scope. Since this can be +# an expensive process and often the same symbol appears multiple times in the +# code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small +# doxygen will become slower. If the cache is too large, memory is wasted. The +# cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range +# is 0..9, the default is 0, corresponding to a cache size of 2^16=65536 +# symbols. At the end of a run doxygen will report the cache usage and suggest +# the optimal cache size from a speed point of view. +# Minimum value: 0, maximum value: 9, default value: 0. + +LOOKUP_CACHE_SIZE = 0 + +#--------------------------------------------------------------------------- +# Build related configuration options +#--------------------------------------------------------------------------- + +# If the EXTRACT_ALL tag is set to YES, doxygen will assume all entities in +# documentation are documented, even if no documentation was available. Private +# class members and static file members will be hidden unless the +# EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES. +# Note: This will also disable the warnings about undocumented members that are +# normally produced when WARNINGS is set to YES. +# The default value is: NO. + +EXTRACT_ALL = YES + +# If the EXTRACT_PRIVATE tag is set to YES, all private members of a class will +# be included in the documentation. +# The default value is: NO. + +EXTRACT_PRIVATE = NO + +# If the EXTRACT_PRIV_VIRTUAL tag is set to YES, documented private virtual +# methods of a class will be included in the documentation. +# The default value is: NO. + +EXTRACT_PRIV_VIRTUAL = NO + +# If the EXTRACT_PACKAGE tag is set to YES, all members with package or internal +# scope will be included in the documentation. +# The default value is: NO. + +EXTRACT_PACKAGE = NO + +# If the EXTRACT_STATIC tag is set to YES, all static members of a file will be +# included in the documentation. +# The default value is: NO. + +EXTRACT_STATIC = NO + +# If the EXTRACT_LOCAL_CLASSES tag is set to YES, classes (and structs) defined +# locally in source files will be included in the documentation. If set to NO, +# only classes defined in header files are included. Does not have any effect +# for Java sources. +# The default value is: YES. + +EXTRACT_LOCAL_CLASSES = YES + +# This flag is only useful for Objective-C code. If set to YES, local methods, +# which are defined in the implementation section but not in the interface are +# included in the documentation. If set to NO, only methods in the interface are +# included. +# The default value is: NO. + +EXTRACT_LOCAL_METHODS = NO + +# If this flag is set to YES, the members of anonymous namespaces will be +# extracted and appear in the documentation as a namespace called +# 'anonymous_namespace{file}', where file will be replaced with the base name of +# the file that contains the anonymous namespace. By default anonymous namespace +# are hidden. +# The default value is: NO. + +EXTRACT_ANON_NSPACES = NO + +# If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all +# undocumented members inside documented classes or files. If set to NO these +# members will be included in the various overviews, but no documentation +# section is generated. This option has no effect if EXTRACT_ALL is enabled. +# The default value is: NO. + +HIDE_UNDOC_MEMBERS = NO + +# If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all +# undocumented classes that are normally visible in the class hierarchy. If set +# to NO, these classes will be included in the various overviews. This option +# has no effect if EXTRACT_ALL is enabled. +# The default value is: NO. + +HIDE_UNDOC_CLASSES = NO + +# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend +# declarations. If set to NO, these declarations will be included in the +# documentation. +# The default value is: NO. + +HIDE_FRIEND_COMPOUNDS = YES + +# If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any +# documentation blocks found inside the body of a function. If set to NO, these +# blocks will be appended to the function's detailed documentation block. +# The default value is: NO. + +HIDE_IN_BODY_DOCS = NO + +# The INTERNAL_DOCS tag determines if documentation that is typed after a +# \internal command is included. If the tag is set to NO then the documentation +# will be excluded. Set it to YES to include the internal documentation. +# The default value is: NO. + +INTERNAL_DOCS = NO + +# If the CASE_SENSE_NAMES tag is set to NO then doxygen will only generate file +# names in lower-case letters. If set to YES, upper-case letters are also +# allowed. This is useful if you have classes or files whose names only differ +# in case and if your file system supports case sensitive file names. Windows +# (including Cygwin) ands Mac users are advised to set this option to NO. +# The default value is: system dependent. + +CASE_SENSE_NAMES = NO + +# If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with +# their full class and namespace scopes in the documentation. If set to YES, the +# scope will be hidden. +# The default value is: NO. + +HIDE_SCOPE_NAMES = NO + +# If the HIDE_COMPOUND_REFERENCE tag is set to NO (default) then doxygen will +# append additional text to a page's title, such as Class Reference. If set to +# YES the compound reference will be hidden. +# The default value is: NO. + +HIDE_COMPOUND_REFERENCE= NO + +# If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of +# the files that are included by a file in the documentation of that file. +# The default value is: YES. + +SHOW_INCLUDE_FILES = YES + +# If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each +# grouped member an include statement to the documentation, telling the reader +# which file to include in order to use the member. +# The default value is: NO. + +SHOW_GROUPED_MEMB_INC = NO + +# If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include +# files with double quotes in the documentation rather than with sharp brackets. +# The default value is: NO. + +FORCE_LOCAL_INCLUDES = NO + +# If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the +# documentation for inline members. +# The default value is: YES. + +INLINE_INFO = YES + +# If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the +# (detailed) documentation of file and class members alphabetically by member +# name. If set to NO, the members will appear in declaration order. +# The default value is: YES. + +SORT_MEMBER_DOCS = YES + +# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief +# descriptions of file, namespace and class members alphabetically by member +# name. If set to NO, the members will appear in declaration order. Note that +# this will also influence the order of the classes in the class list. +# The default value is: NO. + +SORT_BRIEF_DOCS = NO + +# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the +# (brief and detailed) documentation of class members so that constructors and +# destructors are listed first. If set to NO the constructors will appear in the +# respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS. +# Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief +# member documentation. +# Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting +# detailed member documentation. +# The default value is: NO. + +SORT_MEMBERS_CTORS_1ST = NO + +# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy +# of group names into alphabetical order. If set to NO the group names will +# appear in their defined order. +# The default value is: NO. + +SORT_GROUP_NAMES = NO + +# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by +# fully-qualified names, including namespaces. If set to NO, the class list will +# be sorted only by class name, not including the namespace part. +# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. +# Note: This option applies only to the class list, not to the alphabetical +# list. +# The default value is: NO. + +SORT_BY_SCOPE_NAME = NO + +# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper +# type resolution of all parameters of a function it will reject a match between +# the prototype and the implementation of a member function even if there is +# only one candidate or it is obvious which candidate to choose by doing a +# simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still +# accept a match between prototype and implementation in such cases. +# The default value is: NO. + +STRICT_PROTO_MATCHING = NO + +# The GENERATE_TODOLIST tag can be used to enable (YES) or disable (NO) the todo +# list. This list is created by putting \todo commands in the documentation. +# The default value is: YES. + +GENERATE_TODOLIST = YES + +# The GENERATE_TESTLIST tag can be used to enable (YES) or disable (NO) the test +# list. This list is created by putting \test commands in the documentation. +# The default value is: YES. + +GENERATE_TESTLIST = YES + +# The GENERATE_BUGLIST tag can be used to enable (YES) or disable (NO) the bug +# list. This list is created by putting \bug commands in the documentation. +# The default value is: YES. + +GENERATE_BUGLIST = YES + +# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or disable (NO) +# the deprecated list. This list is created by putting \deprecated commands in +# the documentation. +# The default value is: YES. + +GENERATE_DEPRECATEDLIST= YES + +# The ENABLED_SECTIONS tag can be used to enable conditional documentation +# sections, marked by \if ... \endif and \cond +# ... \endcond blocks. + +ENABLED_SECTIONS = + +# The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the +# initial value of a variable or macro / define can have for it to appear in the +# documentation. If the initializer consists of more lines than specified here +# it will be hidden. Use a value of 0 to hide initializers completely. The +# appearance of the value of individual variables and macros / defines can be +# controlled using \showinitializer or \hideinitializer command in the +# documentation regardless of this setting. +# Minimum value: 0, maximum value: 10000, default value: 30. + +MAX_INITIALIZER_LINES = 30 + +# Set the SHOW_USED_FILES tag to NO to disable the list of files generated at +# the bottom of the documentation of classes and structs. If set to YES, the +# list will mention the files that were used to generate the documentation. +# The default value is: YES. + +SHOW_USED_FILES = YES + +# Set the SHOW_FILES tag to NO to disable the generation of the Files page. This +# will remove the Files entry from the Quick Index and from the Folder Tree View +# (if specified). +# The default value is: YES. + +SHOW_FILES = YES + +# Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces +# page. This will remove the Namespaces entry from the Quick Index and from the +# Folder Tree View (if specified). +# The default value is: YES. + +SHOW_NAMESPACES = YES + +# The FILE_VERSION_FILTER tag can be used to specify a program or script that +# doxygen should invoke to get the current version for each file (typically from +# the version control system). Doxygen will invoke the program by executing (via +# popen()) the command command input-file, where command is the value of the +# FILE_VERSION_FILTER tag, and input-file is the name of an input file provided +# by doxygen. Whatever the program writes to standard output is used as the file +# version. For an example see the documentation. + +FILE_VERSION_FILTER = + +# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed +# by doxygen. The layout file controls the global structure of the generated +# output files in an output format independent way. To create the layout file +# that represents doxygen's defaults, run doxygen with the -l option. You can +# optionally specify a file name after the option, if omitted DoxygenLayout.xml +# will be used as the name of the layout file. +# +# Note that if you run doxygen from a directory containing a file called +# DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE +# tag is left empty. + +LAYOUT_FILE = + +# The CITE_BIB_FILES tag can be used to specify one or more bib files containing +# the reference definitions. This must be a list of .bib files. The .bib +# extension is automatically appended if omitted. This requires the bibtex tool +# to be installed. See also https://en.wikipedia.org/wiki/BibTeX for more info. +# For LaTeX the style of the bibliography can be controlled using +# LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the +# search path. See also \cite for info how to create references. + +CITE_BIB_FILES = + +#--------------------------------------------------------------------------- +# Configuration options related to warning and progress messages +#--------------------------------------------------------------------------- + +# The QUIET tag can be used to turn on/off the messages that are generated to +# standard output by doxygen. If QUIET is set to YES this implies that the +# messages are off. +# The default value is: NO. + +QUIET = YES + +# The WARNINGS tag can be used to turn on/off the warning messages that are +# generated to standard error (stderr) by doxygen. If WARNINGS is set to YES +# this implies that the warnings are on. +# +# Tip: Turn warnings on while writing the documentation. +# The default value is: YES. + +WARNINGS = YES + +# If the WARN_IF_UNDOCUMENTED tag is set to YES then doxygen will generate +# warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag +# will automatically be disabled. +# The default value is: YES. + +WARN_IF_UNDOCUMENTED = YES + +# If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for +# potential errors in the documentation, such as not documenting some parameters +# in a documented function, or documenting parameters that don't exist or using +# markup commands wrongly. +# The default value is: YES. + +WARN_IF_DOC_ERROR = YES + +# This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that +# are documented, but have no documentation for their parameters or return +# value. If set to NO, doxygen will only warn about wrong or incomplete +# parameter documentation, but not about the absence of documentation. If +# EXTRACT_ALL is set to YES then this flag will automatically be disabled. +# The default value is: NO. + +WARN_NO_PARAMDOC = NO + +# If the WARN_AS_ERROR tag is set to YES then doxygen will immediately stop when +# a warning is encountered. +# The default value is: NO. + +WARN_AS_ERROR = YES + +# The WARN_FORMAT tag determines the format of the warning messages that doxygen +# can produce. The string should contain the $file, $line, and $text tags, which +# will be replaced by the file and line number from which the warning originated +# and the warning text. Optionally the format may contain $version, which will +# be replaced by the version of the file (if it could be obtained via +# FILE_VERSION_FILTER) +# The default value is: $file:$line: $text. + +WARN_FORMAT = "$file:$line: $text" + +# The WARN_LOGFILE tag can be used to specify a file to which warning and error +# messages should be written. If left blank the output is written to standard +# error (stderr). + +WARN_LOGFILE = + +#--------------------------------------------------------------------------- +# Configuration options related to the input files +#--------------------------------------------------------------------------- + +# The INPUT tag is used to specify the files and/or directories that contain +# documented source files. You may enter file names like myfile.cpp or +# directories like /usr/src/myproject. Separate the files or directories with +# spaces. See also FILE_PATTERNS and EXTENSION_MAPPING +# Note: If this tag is empty the current directory is searched. + +INPUT = ../src \ + . + +# This tag can be used to specify the character encoding of the source files +# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses +# libiconv (or the iconv built into libc) for the transcoding. See the libiconv +# documentation (see: https://www.gnu.org/software/libiconv/) for the list of +# possible encodings. +# The default value is: UTF-8. + +INPUT_ENCODING = UTF-8 + +# If the value of the INPUT tag contains directories, you can use the +# FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and +# *.h) to filter out the source-files in the directories. +# +# Note that for custom extensions or not directly supported extensions you also +# need to set EXTENSION_MAPPING for the extension otherwise the files are not +# read by doxygen. +# +# If left blank the following patterns are tested:*.c, *.cc, *.cxx, *.cpp, +# *.c++, *.java, *.ii, *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, +# *.hh, *.hxx, *.hpp, *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, +# *.m, *.markdown, *.md, *.mm, *.dox (to be provided as doxygen C comment), +# *.doc (to be provided as doxygen C comment), *.txt (to be provided as doxygen +# C comment), *.py, *.pyw, *.f90, *.f95, *.f03, *.f08, *.f18, *.f, *.for, *.vhd, +# *.vhdl, *.ucf, *.qsf and *.ice. + +FILE_PATTERNS = *.h \ + *.hh \ + *.hxx \ + *.hpp \ + *.inc \ + *.m \ + *.markdown \ + *.md \ + *.mm \ + *.dox \ + *.py + +# The RECURSIVE tag can be used to specify whether or not subdirectories should +# be searched for input files as well. +# The default value is: NO. + +RECURSIVE = YES + +# The EXCLUDE tag can be used to specify files and/or directories that should be +# excluded from the INPUT source files. This way you can easily exclude a +# subdirectory from a directory tree whose root is specified with the INPUT tag. +# +# Note that relative paths are relative to the directory from which doxygen is +# run. + +EXCLUDE = ../src/arrow/vendored \ + ../src/generated + +# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or +# directories that are symbolic links (a Unix file system feature) are excluded +# from the input. +# The default value is: NO. + +EXCLUDE_SYMLINKS = NO + +# If the value of the INPUT tag contains directories, you can use the +# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude +# certain files from those directories. +# +# Note that the wildcards are matched against the file with absolute path, so to +# exclude all test directories for example use the pattern */test/* + +EXCLUDE_PATTERNS = *-test.cc \ + *test* \ + *_generated.h \ + *-benchmark.cc \ + *internal* + +# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names +# (namespaces, classes, functions, etc.) that should be excluded from the +# output. The symbol name can be a fully qualified name, a word, or if the +# wildcard * is used, a substring. Examples: ANamespace, AClass, +# AClass::ANamespace, ANamespace::*Test +# +# Note that the wildcards are matched against the file with absolute path, so to +# exclude all test directories use the pattern */test/* + +EXCLUDE_SYMBOLS = *::detail \ + *::internal \ + _* \ + BitUtil \ + SSEUtil + +# The EXAMPLE_PATH tag can be used to specify one or more files or directories +# that contain example code fragments that are included (see the \include +# command). + +EXAMPLE_PATH = + +# If the value of the EXAMPLE_PATH tag contains directories, you can use the +# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and +# *.h) to filter out the source-files in the directories. If left blank all +# files are included. + +EXAMPLE_PATTERNS = * + +# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be +# searched for input files to be used with the \include or \dontinclude commands +# irrespective of the value of the RECURSIVE tag. +# The default value is: NO. + +EXAMPLE_RECURSIVE = NO + +# The IMAGE_PATH tag can be used to specify one or more files or directories +# that contain images that are to be included in the documentation (see the +# \image command). + +IMAGE_PATH = + +# The INPUT_FILTER tag can be used to specify a program that doxygen should +# invoke to filter for each input file. Doxygen will invoke the filter program +# by executing (via popen()) the command: +# +# +# +# where is the value of the INPUT_FILTER tag, and is the +# name of an input file. Doxygen will then use the output that the filter +# program writes to standard output. If FILTER_PATTERNS is specified, this tag +# will be ignored. +# +# Note that the filter must not add or remove lines; it is applied before the +# code is scanned, but not when the output code is generated. If lines are added +# or removed, the anchors will not be placed correctly. +# +# Note that for custom extensions or not directly supported extensions you also +# need to set EXTENSION_MAPPING for the extension otherwise the files are not +# properly processed by doxygen. + +INPUT_FILTER = + +# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern +# basis. Doxygen will compare the file name with each pattern and apply the +# filter if there is a match. The filters are a list of the form: pattern=filter +# (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how +# filters are used. If the FILTER_PATTERNS tag is empty or if none of the +# patterns match the file name, INPUT_FILTER is applied. +# +# Note that for custom extensions or not directly supported extensions you also +# need to set EXTENSION_MAPPING for the extension otherwise the files are not +# properly processed by doxygen. + +FILTER_PATTERNS = + +# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using +# INPUT_FILTER) will also be used to filter the input files that are used for +# producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES). +# The default value is: NO. + +FILTER_SOURCE_FILES = NO + +# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file +# pattern. A pattern will override the setting for FILTER_PATTERN (if any) and +# it is also possible to disable source filtering for a specific pattern using +# *.ext= (so without naming a filter). +# This tag requires that the tag FILTER_SOURCE_FILES is set to YES. + +FILTER_SOURCE_PATTERNS = + +# If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that +# is part of the input, its contents will be placed on the main page +# (index.html). This can be useful if you have a project on for instance GitHub +# and want to reuse the introduction page also for the doxygen output. + +USE_MDFILE_AS_MAINPAGE = + +#--------------------------------------------------------------------------- +# Configuration options related to source browsing +#--------------------------------------------------------------------------- + +# If the SOURCE_BROWSER tag is set to YES then a list of source files will be +# generated. Documented entities will be cross-referenced with these sources. +# +# Note: To get rid of all source code in the generated output, make sure that +# also VERBATIM_HEADERS is set to NO. +# The default value is: NO. + +SOURCE_BROWSER = NO + +# Setting the INLINE_SOURCES tag to YES will include the body of functions, +# classes and enums directly into the documentation. +# The default value is: NO. + +INLINE_SOURCES = NO + +# Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any +# special comment blocks from generated source code fragments. Normal C, C++ and +# Fortran comments will always remain visible. +# The default value is: YES. + +STRIP_CODE_COMMENTS = YES + +# If the REFERENCED_BY_RELATION tag is set to YES then for each documented +# entity all documented functions referencing it will be listed. +# The default value is: NO. + +REFERENCED_BY_RELATION = NO + +# If the REFERENCES_RELATION tag is set to YES then for each documented function +# all documented entities called/used by that function will be listed. +# The default value is: NO. + +REFERENCES_RELATION = NO + +# If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set +# to YES then the hyperlinks from functions in REFERENCES_RELATION and +# REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will +# link to the documentation. +# The default value is: YES. + +REFERENCES_LINK_SOURCE = YES + +# If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the +# source code will show a tooltip with additional information such as prototype, +# brief description and links to the definition and documentation. Since this +# will make the HTML file larger and loading of large files a bit slower, you +# can opt to disable this feature. +# The default value is: YES. +# This tag requires that the tag SOURCE_BROWSER is set to YES. + +SOURCE_TOOLTIPS = YES + +# If the USE_HTAGS tag is set to YES then the references to source code will +# point to the HTML generated by the htags(1) tool instead of doxygen built-in +# source browser. The htags tool is part of GNU's global source tagging system +# (see https://www.gnu.org/software/global/global.html). You will need version +# 4.8.6 or higher. +# +# To use it do the following: +# - Install the latest version of global +# - Enable SOURCE_BROWSER and USE_HTAGS in the configuration file +# - Make sure the INPUT points to the root of the source tree +# - Run doxygen as normal +# +# Doxygen will invoke htags (and that will in turn invoke gtags), so these +# tools must be available from the command line (i.e. in the search path). +# +# The result: instead of the source browser generated by doxygen, the links to +# source code will now point to the output of htags. +# The default value is: NO. +# This tag requires that the tag SOURCE_BROWSER is set to YES. + +USE_HTAGS = NO + +# If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a +# verbatim copy of the header file for each class for which an include is +# specified. Set to NO to disable this. +# See also: Section \class. +# The default value is: YES. + +VERBATIM_HEADERS = YES + +#--------------------------------------------------------------------------- +# Configuration options related to the alphabetical class index +#--------------------------------------------------------------------------- + +# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all +# compounds will be generated. Enable this if the project contains a lot of +# classes, structs, unions or interfaces. +# The default value is: YES. + +ALPHABETICAL_INDEX = YES + +# The COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns in +# which the alphabetical index list will be split. +# Minimum value: 1, maximum value: 20, default value: 5. +# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. + +COLS_IN_ALPHA_INDEX = 5 + +# In case all classes in a project start with a common prefix, all classes will +# be put under the same header in the alphabetical index. The IGNORE_PREFIX tag +# can be used to specify a prefix (or a list of prefixes) that should be ignored +# while generating the index headers. +# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. + +IGNORE_PREFIX = + +#--------------------------------------------------------------------------- +# Configuration options related to the HTML output +#--------------------------------------------------------------------------- + +# If the GENERATE_HTML tag is set to YES, doxygen will generate HTML output +# The default value is: YES. + +GENERATE_HTML = YES + +# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a +# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of +# it. +# The default directory is: html. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_OUTPUT = html + +# The HTML_FILE_EXTENSION tag can be used to specify the file extension for each +# generated HTML page (for example: .htm, .php, .asp). +# The default value is: .html. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FILE_EXTENSION = .html + +# The HTML_HEADER tag can be used to specify a user-defined HTML header file for +# each generated HTML page. If the tag is left blank doxygen will generate a +# standard header. +# +# To get valid HTML the header file that includes any scripts and style sheets +# that doxygen needs, which is dependent on the configuration options used (e.g. +# the setting GENERATE_TREEVIEW). It is highly recommended to start with a +# default header using +# doxygen -w html new_header.html new_footer.html new_stylesheet.css +# YourConfigFile +# and then modify the file new_header.html. See also section "Doxygen usage" +# for information on how to generate the default header that doxygen normally +# uses. +# Note: The header is subject to change so you typically have to regenerate the +# default header when upgrading to a newer version of doxygen. For a description +# of the possible markers and block names see the documentation. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_HEADER = + +# The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each +# generated HTML page. If the tag is left blank doxygen will generate a standard +# footer. See HTML_HEADER for more information on how to generate a default +# footer and what special commands can be used inside the footer. See also +# section "Doxygen usage" for information on how to generate the default footer +# that doxygen normally uses. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FOOTER = footer.html + +# The HTML_STYLESHEET tag can be used to specify a user-defined cascading style +# sheet that is used by each HTML page. It can be used to fine-tune the look of +# the HTML output. If left blank doxygen will generate a default style sheet. +# See also section "Doxygen usage" for information on how to generate the style +# sheet that doxygen normally uses. +# Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as +# it is more robust and this tag (HTML_STYLESHEET) will in the future become +# obsolete. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_STYLESHEET = + +# The HTML_EXTRA_STYLESHEET tag can be used to specify additional user-defined +# cascading style sheets that are included after the standard style sheets +# created by doxygen. Using this option one can overrule certain style aspects. +# This is preferred over using HTML_STYLESHEET since it does not replace the +# standard style sheet and is therefore more robust against future updates. +# Doxygen will copy the style sheet files to the output directory. +# Note: The order of the extra style sheet files is of importance (e.g. the last +# style sheet in the list overrules the setting of the previous ones in the +# list). For an example see the documentation. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_EXTRA_STYLESHEET = + +# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or +# other source files which should be copied to the HTML output directory. Note +# that these files will be copied to the base HTML output directory. Use the +# $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these +# files. In the HTML_STYLESHEET file, use the file name only. Also note that the +# files will be copied as-is; there are no commands or markers available. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_EXTRA_FILES = + +# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen +# will adjust the colors in the style sheet and background images according to +# this color. Hue is specified as an angle on a colorwheel, see +# https://en.wikipedia.org/wiki/Hue for more information. For instance the value +# 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300 +# purple, and 360 is red again. +# Minimum value: 0, maximum value: 359, default value: 220. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_HUE = 220 + +# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors +# in the HTML output. For a value of 0 the output will use grayscales only. A +# value of 255 will produce the most vivid colors. +# Minimum value: 0, maximum value: 255, default value: 100. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_SAT = 100 + +# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the +# luminance component of the colors in the HTML output. Values below 100 +# gradually make the output lighter, whereas values above 100 make the output +# darker. The value divided by 100 is the actual gamma applied, so 80 represents +# a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not +# change the gamma. +# Minimum value: 40, maximum value: 240, default value: 80. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_GAMMA = 80 + +# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML +# page will contain the date and time when the page was generated. Setting this +# to YES can help to show when doxygen was last run and thus if the +# documentation is up to date. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_TIMESTAMP = NO + +# If the HTML_DYNAMIC_MENUS tag is set to YES then the generated HTML +# documentation will contain a main index with vertical navigation menus that +# are dynamically created via JavaScript. If disabled, the navigation index will +# consists of multiple levels of tabs that are statically embedded in every HTML +# page. Disable this option to support browsers that do not have JavaScript, +# like the Qt help browser. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_DYNAMIC_MENUS = YES + +# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML +# documentation will contain sections that can be hidden and shown after the +# page has loaded. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_DYNAMIC_SECTIONS = NO + +# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries +# shown in the various tree structured indices initially; the user can expand +# and collapse entries dynamically later on. Doxygen will expand the tree to +# such a level that at most the specified number of entries are visible (unless +# a fully collapsed tree already exceeds this amount). So setting the number of +# entries 1 will produce a full collapsed tree by default. 0 is a special value +# representing an infinite number of entries and will result in a full expanded +# tree by default. +# Minimum value: 0, maximum value: 9999, default value: 100. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_INDEX_NUM_ENTRIES = 100 + +# If the GENERATE_DOCSET tag is set to YES, additional index files will be +# generated that can be used as input for Apple's Xcode 3 integrated development +# environment (see: https://developer.apple.com/xcode/), introduced with OSX +# 10.5 (Leopard). To create a documentation set, doxygen will generate a +# Makefile in the HTML output directory. Running make will produce the docset in +# that directory and running make install will install the docset in +# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at +# startup. See https://developer.apple.com/library/archive/featuredarticles/Doxy +# genXcode/_index.html for more information. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_DOCSET = NO + +# This tag determines the name of the docset feed. A documentation feed provides +# an umbrella under which multiple documentation sets from a single provider +# (such as a company or product suite) can be grouped. +# The default value is: Doxygen generated docs. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_FEEDNAME = "Doxygen generated docs" + +# This tag specifies a string that should uniquely identify the documentation +# set bundle. This should be a reverse domain-name style string, e.g. +# com.mycompany.MyDocSet. Doxygen will append .docset to the name. +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_BUNDLE_ID = org.doxygen.Project + +# The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify +# the documentation publisher. This should be a reverse domain-name style +# string, e.g. com.mycompany.MyDocSet.documentation. +# The default value is: org.doxygen.Publisher. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_PUBLISHER_ID = org.doxygen.Publisher + +# The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher. +# The default value is: Publisher. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_PUBLISHER_NAME = Publisher + +# If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three +# additional HTML index files: index.hhp, index.hhc, and index.hhk. The +# index.hhp is a project file that can be read by Microsoft's HTML Help Workshop +# (see: https://www.microsoft.com/en-us/download/details.aspx?id=21138) on +# Windows. +# +# The HTML Help Workshop contains a compiler that can convert all HTML output +# generated by doxygen into a single compiled HTML file (.chm). Compiled HTML +# files are now used as the Windows 98 help format, and will replace the old +# Windows help format (.hlp) on all Windows platforms in the future. Compressed +# HTML files also contain an index, a table of contents, and you can search for +# words in the documentation. The HTML workshop also contains a viewer for +# compressed HTML files. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_HTMLHELP = NO + +# The CHM_FILE tag can be used to specify the file name of the resulting .chm +# file. You can add a path in front of the file if the result should not be +# written to the html output directory. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +CHM_FILE = + +# The HHC_LOCATION tag can be used to specify the location (absolute path +# including file name) of the HTML help compiler (hhc.exe). If non-empty, +# doxygen will try to run the HTML help compiler on the generated index.hhp. +# The file has to be specified with full path. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +HHC_LOCATION = + +# The GENERATE_CHI flag controls if a separate .chi index file is generated +# (YES) or that it should be included in the master .chm file (NO). +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +GENERATE_CHI = NO + +# The CHM_INDEX_ENCODING is used to encode HtmlHelp index (hhk), content (hhc) +# and project file content. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +CHM_INDEX_ENCODING = + +# The BINARY_TOC flag controls whether a binary table of contents is generated +# (YES) or a normal table of contents (NO) in the .chm file. Furthermore it +# enables the Previous and Next buttons. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +BINARY_TOC = NO + +# The TOC_EXPAND flag can be set to YES to add extra items for group members to +# the table of contents of the HTML help documentation and to the tree view. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +TOC_EXPAND = NO + +# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and +# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that +# can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help +# (.qch) of the generated HTML documentation. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_QHP = NO + +# If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify +# the file name of the resulting .qch file. The path specified is relative to +# the HTML output folder. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QCH_FILE = + +# The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help +# Project output. For more information please see Qt Help Project / Namespace +# (see: https://doc.qt.io/archives/qt-4.8/qthelpproject.html#namespace). +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_NAMESPACE = org.doxygen.Project + +# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt +# Help Project output. For more information please see Qt Help Project / Virtual +# Folders (see: https://doc.qt.io/archives/qt-4.8/qthelpproject.html#virtual- +# folders). +# The default value is: doc. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_VIRTUAL_FOLDER = doc + +# If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom +# filter to add. For more information please see Qt Help Project / Custom +# Filters (see: https://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom- +# filters). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_CUST_FILTER_NAME = + +# The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the +# custom filter to add. For more information please see Qt Help Project / Custom +# Filters (see: https://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom- +# filters). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_CUST_FILTER_ATTRS = + +# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this +# project's filter section matches. Qt Help Project / Filter Attributes (see: +# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#filter-attributes). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_SECT_FILTER_ATTRS = + +# The QHG_LOCATION tag can be used to specify the location of Qt's +# qhelpgenerator. If non-empty doxygen will try to run qhelpgenerator on the +# generated .qhp file. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHG_LOCATION = + +# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be +# generated, together with the HTML files, they form an Eclipse help plugin. To +# install this plugin and make it available under the help contents menu in +# Eclipse, the contents of the directory containing the HTML and XML files needs +# to be copied into the plugins directory of eclipse. The name of the directory +# within the plugins directory should be the same as the ECLIPSE_DOC_ID value. +# After copying Eclipse needs to be restarted before the help appears. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_ECLIPSEHELP = NO + +# A unique identifier for the Eclipse help plugin. When installing the plugin +# the directory name containing the HTML and XML files should also have this +# name. Each documentation set should have its own identifier. +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES. + +ECLIPSE_DOC_ID = org.doxygen.Project + +# If you want full control over the layout of the generated HTML pages it might +# be necessary to disable the index and replace it with your own. The +# DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top +# of each HTML page. A value of NO enables the index and the value YES disables +# it. Since the tabs in the index contain the same information as the navigation +# tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +DISABLE_INDEX = NO + +# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index +# structure should be generated to display hierarchical information. If the tag +# value is set to YES, a side panel will be generated containing a tree-like +# index structure (just like the one that is generated for HTML Help). For this +# to work a browser that supports JavaScript, DHTML, CSS and frames is required +# (i.e. any modern browser). Windows users are probably better off using the +# HTML help feature. Via custom style sheets (see HTML_EXTRA_STYLESHEET) one can +# further fine-tune the look of the index. As an example, the default style +# sheet generated by doxygen has an example that shows how to put an image at +# the root of the tree instead of the PROJECT_NAME. Since the tree basically has +# the same information as the tab index, you could consider setting +# DISABLE_INDEX to YES when enabling this option. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_TREEVIEW = NO + +# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that +# doxygen will group on one line in the generated HTML documentation. +# +# Note that a value of 0 will completely suppress the enum values from appearing +# in the overview section. +# Minimum value: 0, maximum value: 20, default value: 4. +# This tag requires that the tag GENERATE_HTML is set to YES. + +ENUM_VALUES_PER_LINE = 4 + +# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used +# to set the initial width (in pixels) of the frame in which the tree is shown. +# Minimum value: 0, maximum value: 1500, default value: 250. +# This tag requires that the tag GENERATE_HTML is set to YES. + +TREEVIEW_WIDTH = 250 + +# If the EXT_LINKS_IN_WINDOW option is set to YES, doxygen will open links to +# external symbols imported via tag files in a separate window. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +EXT_LINKS_IN_WINDOW = NO + +# If the HTML_FORMULA_FORMAT option is set to svg, doxygen will use the pdf2svg +# tool (see https://github.com/dawbarton/pdf2svg) or inkscape (see +# https://inkscape.org) to generate formulas as SVG images instead of PNGs for +# the HTML output. These images will generally look nicer at scaled resolutions. +# Possible values are: png The default and svg Looks nicer but requires the +# pdf2svg tool. +# The default value is: png. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FORMULA_FORMAT = png + +# Use this tag to change the font size of LaTeX formulas included as images in +# the HTML documentation. When you change the font size after a successful +# doxygen run you need to manually remove any form_*.png images from the HTML +# output directory to force them to be regenerated. +# Minimum value: 8, maximum value: 50, default value: 10. +# This tag requires that the tag GENERATE_HTML is set to YES. + +FORMULA_FONTSIZE = 10 + +# Use the FORMULA_TRANSPARENT tag to determine whether or not the images +# generated for formulas are transparent PNGs. Transparent PNGs are not +# supported properly for IE 6.0, but are supported on all modern browsers. +# +# Note that when changing this option you need to delete any form_*.png files in +# the HTML output directory before the changes have effect. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +FORMULA_TRANSPARENT = YES + +# The FORMULA_MACROFILE can contain LaTeX \newcommand and \renewcommand commands +# to create new LaTeX commands to be used in formulas as building blocks. See +# the section "Including formulas" for details. + +FORMULA_MACROFILE = + +# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see +# https://www.mathjax.org) which uses client side JavaScript for the rendering +# instead of using pre-rendered bitmaps. Use this if you do not have LaTeX +# installed or if you want to formulas look prettier in the HTML output. When +# enabled you may also need to install MathJax separately and configure the path +# to it using the MATHJAX_RELPATH option. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +USE_MATHJAX = NO + +# When MathJax is enabled you can set the default output format to be used for +# the MathJax output. See the MathJax site (see: +# http://docs.mathjax.org/en/latest/output.html) for more details. +# Possible values are: HTML-CSS (which is slower, but has the best +# compatibility), NativeMML (i.e. MathML) and SVG. +# The default value is: HTML-CSS. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_FORMAT = HTML-CSS + +# When MathJax is enabled you need to specify the location relative to the HTML +# output directory using the MATHJAX_RELPATH option. The destination directory +# should contain the MathJax.js script. For instance, if the mathjax directory +# is located at the same level as the HTML output directory, then +# MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax +# Content Delivery Network so you can quickly see the result without installing +# MathJax. However, it is strongly recommended to install a local copy of +# MathJax from https://www.mathjax.org before deployment. +# The default value is: https://cdn.jsdelivr.net/npm/mathjax@2. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest + +# The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax +# extension names that should be enabled during MathJax rendering. For example +# MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_EXTENSIONS = + +# The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces +# of code that will be used on startup of the MathJax code. See the MathJax site +# (see: http://docs.mathjax.org/en/latest/output.html) for more details. For an +# example see the documentation. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_CODEFILE = + +# When the SEARCHENGINE tag is enabled doxygen will generate a search box for +# the HTML output. The underlying search engine uses javascript and DHTML and +# should work on any modern browser. Note that when using HTML help +# (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET) +# there is already a search function so this one should typically be disabled. +# For large projects the javascript based search engine can be slow, then +# enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to +# search using the keyboard; to jump to the search box use + S +# (what the is depends on the OS and browser, but it is typically +# , /