Skip to content
This repository was archived by the owner on Jan 20, 2023. It is now read-only.

Commit cb142fc

Browse files
MarcoGorellikou
andcommittedMar 30, 2021
ARROW-11180: [Developer] cmake-format pre-commit hook doesn't run
Previously, cmake format wasn't running (likely because there were two `entry` keys, so the command getting overridden) - furthermore, it was unnecessarily slow as it didn't take advantage of pre-commit's own machinery Closes apache#9045 from MarcoGorelli/cmakelint Lead-authored-by: Marco Gorelli <marcogorelli@protonmail.com> Co-authored-by: Sutou Kouhei <kou@clear-code.com> Signed-off-by: Sutou Kouhei <kou@clear-code.com>
1 parent 61cdd4a commit cb142fc

4 files changed

+40
-50
lines changed
 

‎.pre-commit-config.yaml

+4-3
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,10 @@ repos:
4040
- id: cmake-format
4141
name: CMake Format
4242
language: python
43-
entry: bash -c "pip install cmake-format && python run-cmake-format.py --check"
44-
entry: echo
45-
files: ^(.*/CMakeLists.txt|.*.cmake)$
43+
entry: python run-cmake-format.py
44+
types: [cmake]
45+
additional_dependencies:
46+
- cmake_format==0.5.2
4647
- id: hadolint
4748
name: Docker Format
4849
language: docker_image

‎ci/vcpkg/arm64-linux-static-debug.cmake

+3-1
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,7 @@ set(VCPKG_CMAKE_SYSTEM_NAME Linux)
2222
set(VCPKG_BUILD_TYPE debug)
2323

2424
if(NOT CMAKE_HOST_SYSTEM_PROCESSOR)
25-
execute_process(COMMAND "uname" "-m" OUTPUT_VARIABLE CMAKE_HOST_SYSTEM_PROCESSOR OUTPUT_STRIP_TRAILING_WHITESPACE)
25+
execute_process(COMMAND "uname" "-m"
26+
OUTPUT_VARIABLE CMAKE_HOST_SYSTEM_PROCESSOR
27+
OUTPUT_STRIP_TRAILING_WHITESPACE)
2628
endif()

‎ci/vcpkg/arm64-linux-static-release.cmake

+3-1
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,7 @@ set(VCPKG_CMAKE_SYSTEM_NAME Linux)
2222
set(VCPKG_BUILD_TYPE release)
2323

2424
if(NOT CMAKE_HOST_SYSTEM_PROCESSOR)
25-
execute_process(COMMAND "uname" "-m" OUTPUT_VARIABLE CMAKE_HOST_SYSTEM_PROCESSOR OUTPUT_STRIP_TRAILING_WHITESPACE)
25+
execute_process(COMMAND "uname" "-m"
26+
OUTPUT_VARIABLE CMAKE_HOST_SYSTEM_PROCESSOR
27+
OUTPUT_STRIP_TRAILING_WHITESPACE)
2628
endif()

‎run-cmake-format.py

+30-45
Original file line numberDiff line numberDiff line change
@@ -17,62 +17,36 @@
1717
# specific language governing permissions and limitations
1818
# under the License.
1919

20+
import argparse
21+
import fnmatch
2022
import hashlib
2123
import pathlib
2224
import subprocess
2325
import sys
2426

25-
26-
patterns = [
27+
# Keep an explicit list of files to format as we don't want to reformat
28+
# files we imported from other location.
29+
PATTERNS = [
30+
'ci/**/*.cmake',
2731
'cpp/CMakeLists.txt',
28-
# Keep an explicit list of files to format as we don't want to reformat
29-
# files we imported from other location.
30-
'cpp/cmake_modules/BuildUtils.cmake',
31-
'cpp/cmake_modules/DefineOptions.cmake',
32-
'cpp/cmake_modules/FindArrow.cmake',
33-
'cpp/cmake_modules/FindArrowCUDA.cmake',
34-
'cpp/cmake_modules/FindArrowDataset.cmake',
35-
'cpp/cmake_modules/FindArrowFlight.cmake',
36-
'cpp/cmake_modules/FindArrowFlightTesting.cmake',
37-
'cpp/cmake_modules/FindArrowPython.cmake',
38-
'cpp/cmake_modules/FindArrowPythonFlight.cmake',
39-
'cpp/cmake_modules/FindArrowTesting.cmake',
40-
'cpp/cmake_modules/FindBrotli.cmake',
41-
'cpp/cmake_modules/FindClangTools.cmake',
42-
'cpp/cmake_modules/FindFlatbuffersAlt.cmake',
43-
'cpp/cmake_modules/FindGLOG.cmake',
44-
'cpp/cmake_modules/FindGandiva.cmake',
45-
'cpp/cmake_modules/FindInferTools.cmake',
46-
'cpp/cmake_modules/FindLLVMAlt.cmake',
47-
'cpp/cmake_modules/FindLz4.cmake',
48-
'cpp/cmake_modules/FindParquet.cmake',
49-
'cpp/cmake_modules/FindPlasma.cmake',
50-
'cpp/cmake_modules/FindPython3Alt.cmake',
51-
'cpp/cmake_modules/FindRE2.cmake',
52-
'cpp/cmake_modules/FindRapidJSONAlt.cmake',
53-
'cpp/cmake_modules/FindSnappyAlt.cmake',
54-
'cpp/cmake_modules/FindThrift.cmake',
55-
'cpp/cmake_modules/FindZSTD.cmake',
56-
'cpp/cmake_modules/Findc-aresAlt.cmake',
57-
'cpp/cmake_modules/FindgRPCAlt.cmake',
58-
'cpp/cmake_modules/FindgflagsAlt.cmake',
59-
'cpp/cmake_modules/Findjemalloc.cmake',
60-
'cpp/cmake_modules/SetupCxxFlags.cmake',
61-
'cpp/cmake_modules/ThirdpartyToolchain.cmake',
62-
'cpp/cmake_modules/san-config.cmake',
63-
'cpp/cmake_modules/UseCython.cmake',
64-
'cpp/cmake_modules/Usevcpkg.cmake',
6532
'cpp/src/**/CMakeLists.txt',
66-
'cpp/tools/**/CMakeLists.txt',
67-
'java/gandiva/CMakeLists.txt',
68-
'python/CMakeLists.txt',
33+
'cpp/cmake_modules/*.cmake',
34+
'go/**/CMakeLists.txt',
35+
'java/**/CMakeLists.txt',
36+
'matlab/**/CMakeLists.txt',
37+
]
38+
EXCLUDE = [
39+
'cpp/cmake_modules/FindNumPy.cmake',
40+
'cpp/cmake_modules/FindPythonLibsNew.cmake',
41+
'cpp/cmake_modules/UseCython.cmake',
42+
'cpp/src/arrow/util/config.h.cmake',
6943
]
7044

7145
here = pathlib.Path(__file__).parent
7246

7347

7448
def find_cmake_files():
75-
for pat in patterns:
49+
for pat in PATTERNS:
7650
yield from here.glob(pat)
7751

7852

@@ -119,8 +93,19 @@ def check_cmake_format(paths):
11993

12094

12195
if __name__ == "__main__":
122-
paths = list(find_cmake_files())
123-
if "--check" in sys.argv:
96+
parser = argparse.ArgumentParser()
97+
parser.add_argument('--check', action='store_true')
98+
parser.add_argument('paths', nargs='*', type=pathlib.Path)
99+
args = parser.parse_args()
100+
101+
paths = find_cmake_files()
102+
if args.paths:
103+
paths = set(paths) & set([path.resolve() for path in args.paths])
104+
paths = [
105+
path for path in paths
106+
if path.relative_to(here).as_posix() not in EXCLUDE
107+
]
108+
if args.check:
124109
check_cmake_format(paths)
125110
else:
126111
run_cmake_format(paths)

0 commit comments

Comments
 (0)
This repository has been archived.