forked from duckdb/duckdb-r
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathformat.py
More file actions
309 lines (273 loc) · 10.3 KB
/
Copy pathformat.py
File metadata and controls
309 lines (273 loc) · 10.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
#!/usr/bin/python
# Format the source directory; driven by the Makefile's format-* targets.
import os
import time
import sys
import inspect
import subprocess
import difflib
import re
from python_helpers import open_utf8
# Include order is pinned by `.clang-format` (`SortIncludes: Never`) rather than
# by a flag here, so that this script and a bare `clang-format` -- editors, the
# `style` action -- agree on what the formatted tree looks like.
cpp_format_command = 'clang-format -style=file'
extensions = ['.cpp', '.c', '.hpp', '.h', '.cc', '.hh', '.test', '.test_slow', '.test_coverage', '.benchmark']
formatted_directories = ['src']
ignored_files = []
ignored_directories = [os.path.join('src', 'duckdb'),
os.path.join('inst', 'include', 'cpp11')]
format_all = False
check_only = True
confirm = True
silent = False
def print_usage():
print("Usage: python scripts/format.py [revision|--all] [--check|--fix]")
print(" [revision] is an optional revision number, all files that changed since that revision will be formatted (default=HEAD)")
print(
" if [revision] is set to --all, all files will be formatted")
print(" --check only prints differences, --fix also fixes the files (--check is default)")
exit(1)
if len(sys.argv) == 1:
revision = "HEAD"
elif len(sys.argv) >= 2:
revision = sys.argv[1]
else:
print_usage()
if len(sys.argv) > 2:
for arg in sys.argv[2:]:
if arg == '--check':
check_only = True
elif arg == '--fix':
check_only = False
elif arg == '--noconfirm':
confirm = False
elif arg == '--confirm':
confirm = True
elif arg == '--silent':
silent = True
else:
print_usage()
if revision == '--all':
format_all = True
def file_is_ignored(full_path):
if os.path.basename(full_path) in ignored_files:
return True
dirnames = os.path.sep.join(full_path.split(os.path.sep)[:-1])
for ignored_directory in ignored_directories:
if ignored_directory in dirnames:
return True
return False
def can_format_file(full_path):
global extensions, formatted_directories, ignored_files
if not os.path.isfile(full_path):
return False
fname = full_path.split(os.path.sep)[-1]
# check ignored files
if file_is_ignored(full_path):
return False
found = False
# check file extension
for ext in extensions:
if full_path.endswith(ext):
found = True
break
if not found:
return False
# now check file directory
for dname in formatted_directories:
if full_path.startswith(dname):
return True
return False
action = "Formatting"
if check_only:
action = "Checking"
def get_changed_files(revision):
proc = subprocess.Popen(
['git', 'diff', '--name-only', revision], stdout=subprocess.PIPE)
files = proc.stdout.read().decode('utf8').split('\n')
changed_files = []
for f in files:
if not can_format_file(f):
continue
if file_is_ignored(f):
continue
changed_files.append(f)
return changed_files
if os.path.isfile(revision):
print(action + " individual file: " + revision)
changed_files = [revision]
elif os.path.isdir(revision):
print(action + " files in directory: " + revision)
changed_files = [os.path.join(revision, x) for x in os.listdir(revision)]
print("Changeset:")
for fname in changed_files:
print(fname)
elif not format_all:
if revision == 'master':
# fetch new changes when comparing to the master
os.system("git fetch origin master:master")
print(action + " since branch or revision: " + revision)
changed_files = get_changed_files(revision)
if len(changed_files) == 0:
print("No changed files found!")
exit(0)
print("Changeset:")
for fname in changed_files:
print(fname)
else:
print(action + " all files")
if confirm and not check_only:
print("The files listed above will be reformatted.")
result = input("Continue with changes (y/n)?\n")
if result != 'y':
print("Aborting.")
exit(0)
format_commands = {
'.cpp': cpp_format_command,
'.c': cpp_format_command,
'.hpp': cpp_format_command,
'.h': cpp_format_command,
'.hh': cpp_format_command,
'.cc': cpp_format_command
}
difference_files = []
header_top = "//===----------------------------------------------------------------------===//\n"
header_top += "// DuckDB\n" + "//\n"
header_bottom = "//\n" + "//\n"
header_bottom += "//===----------------------------------------------------------------------===//\n\n"
base_dir = os.path.join(os.getcwd(), 'src/include')
def get_formatted_text(f, full_path, directory, ext):
if not can_format_file(full_path):
print("Eek, cannot format file " + full_path + " but attempted to format anyway")
exit(1)
if f == 'list.hpp':
# fill in list file
file_list = [os.path.join(dp, f) for dp, dn, filenames in os.walk(
directory) for f in filenames if os.path.splitext(f)[1] == '.hpp' and not f.endswith("list.hpp")]
file_list = [x.replace('src/include/', '') for x in file_list]
file_list.sort()
result = ""
for x in file_list:
result += '#include "%s"\n' % (x)
return result
if ext == ".hpp" and directory.startswith("src/include"):
with open_utf8(full_path, 'r') as f:
lines = f.readlines()
# format header in files
header_middle = "// " + os.path.relpath(full_path, base_dir) + "\n"
text = header_top + header_middle + header_bottom
is_old_header = True
for line in lines:
if not (line.startswith("//") or line.startswith("\n")) and is_old_header:
is_old_header = False
if not is_old_header:
text += line
if ext == '.test' or ext == '.test_slow' or ext == '.test_coverage' or ext == '.benchmark':
f = open_utf8(full_path, 'r')
lines = f.readlines()
f.close()
found_name = False
found_group = False
group_name = full_path.split('/')[-2]
new_path_line = '# name: ' + full_path + '\n'
new_group_line = '# group: [' + group_name + ']' + '\n'
found_diff = False
# Find description.
found_description = False
for line in lines:
if line.lower().startswith('# description:') or line.lower().startswith('#description:'):
if found_description:
print("Error formatting file " + full_path + ", multiple lines starting with # description found")
exit(1)
found_description = True
new_description_line = '# description: ' + line.split(':', 1)[1].strip() + '\n'
# Filter old meta.
meta = ['#name:', '# name:', '#description:', '# description:', '#group:', '# group:']
lines = [line for line in lines if not any(line.lower().startswith(m) for m in meta)]
# Clean up empty leading lines.
while lines and not lines[0].strip():
lines.pop(0)
# Ensure header is prepended.
header = [new_path_line]
if found_description: header.append(new_description_line)
header.append(new_group_line)
header.append('\n')
return ''.join(header + lines)
proc_command = format_commands[ext].split(' ') + [full_path]
proc = subprocess.Popen(proc_command, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
new_text = proc.stdout.read().decode('utf8')
stderr = proc.stderr.read().decode('utf8')
if len(stderr) > 0:
print(os.getcwd())
print("Failed to format file " + full_path)
print(' '.join(proc_command))
print(stderr)
exit(1)
new_text = new_text.replace('\r', '')
new_text = re.sub(r'\n*$', '', new_text)
return new_text + '\n'
def format_file(f, full_path, directory, ext):
global difference_files
with open_utf8(full_path, 'r') as f:
old_text = f.read()
old_lines = old_text.split('\n')
new_text = get_formatted_text(f, full_path, directory, ext)
if check_only:
new_lines = new_text.split('\n')
old_lines = [x for x in old_lines if '...' not in x]
new_lines = [x for x in new_lines if '...' not in x]
diff_result = difflib.unified_diff(old_lines, new_lines)
total_diff = ""
for diff_line in diff_result:
total_diff += diff_line + "\n"
total_diff = total_diff.strip()
if len(total_diff) > 0:
print("----------------------------------------")
print("----------------------------------------")
print("Found differences in file " + full_path)
print("----------------------------------------")
print("----------------------------------------")
print(total_diff)
difference_files.append(full_path)
else:
tmpfile = full_path + ".tmp"
with open_utf8(tmpfile, 'w+') as f:
f.write(new_text)
os.rename(tmpfile, full_path)
def format_directory(directory):
files = os.listdir(directory)
files.sort()
for f in files:
full_path = os.path.join(directory, f)
if os.path.isdir(full_path):
if f in ignored_directories or full_path in ignored_directories:
continue
if not silent:
print(full_path)
format_directory(full_path)
elif can_format_file(full_path):
format_file(f, full_path, directory, '.' +
f.split('.')[-1])
if format_all:
format_directory('src')
else:
for full_path in changed_files:
splits = full_path.split(os.path.sep)
fname = splits[-1]
dirname = os.path.sep.join(splits[:-1])
ext = '.' + full_path.split('.')[-1]
format_file(fname, full_path, dirname, ext)
if check_only:
if len(difference_files) > 0:
print("")
print("")
print("")
print("Failed format-check: differences were found in the following files:")
for fname in difference_files:
print("- " + fname)
print('Run "make format-fix" to fix these differences automatically')
exit(1)
else:
print("Passed format-check")
exit(0)