|
17 | 17 | # specific language governing permissions and limitations
|
18 | 18 | # under the License.
|
19 | 19 |
|
| 20 | +import argparse |
| 21 | +import fnmatch |
20 | 22 | import hashlib
|
21 | 23 | import pathlib
|
22 | 24 | import subprocess
|
23 | 25 | import sys
|
24 | 26 |
|
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', |
27 | 31 | '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', |
65 | 32 | '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', |
69 | 43 | ]
|
70 | 44 |
|
71 | 45 | here = pathlib.Path(__file__).parent
|
72 | 46 |
|
73 | 47 |
|
74 | 48 | def find_cmake_files():
|
75 |
| - for pat in patterns: |
| 49 | + for pat in PATTERNS: |
76 | 50 | yield from here.glob(pat)
|
77 | 51 |
|
78 | 52 |
|
@@ -119,8 +93,19 @@ def check_cmake_format(paths):
|
119 | 93 |
|
120 | 94 |
|
121 | 95 | 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: |
124 | 109 | check_cmake_format(paths)
|
125 | 110 | else:
|
126 | 111 | run_cmake_format(paths)
|
0 commit comments