format_whitespace.py 2.6 KB
Newer Older
1
2
3
4
5
6
import re
import subprocess


UPSTREAM = 'https://github.com/Grasscutters/Grasscutter.git'
RATCHET = 'LintRatchet'
AnimeGitB's avatar
AnimeGitB committed
7
RATCHET_FALLBACK = 'c517b8a2c95473811eb07e12e73c4a69e59fbbdc'
8
9
10
11
12
13
14
15
16
17
18


re_leading_whitespace = re.compile(r'^[ \t]+', re.MULTILINE)  # Replace with \1.replace('\t', '    ')
re_trailing_whitespace = re.compile(r'[ \t]+$', re.MULTILINE)  # Replace with ''
# Replace 'for (foo){bar' with 'for (foo) {bar'
re_bracket_space = re.compile(r'\) *\{(?!\})')  # Replace with ') {'
# Replace 'for(foo)' with 'foo (bar)'
re_keyword_space = re.compile(r'(?<=\b)(if|for|while|switch|try|else|catch|finally|synchronized) *(?=[\(\{])')  # Replace with '\1 '


def get_changed_filelist():
19
20
21
22
23
24
    # subprocess.run(['git', 'fetch', UPSTREAM, f'{RATCHET}:{RATCHET}'])  # Ensure LintRatchet ref is matched to upstream
    # result = subprocess.run(['git', 'diff', RATCHET, '--name-only'], capture_output=True, text=True)
    # if result.returncode != 0:
        # print(f'{RATCHET} not found, trying fallback {RATCHET_FALLBACK}')
    print(f'Attempting to diff against {RATCHET_FALLBACK}')
    result = subprocess.run(['git', 'diff', RATCHET_FALLBACK, '--name-only'], capture_output=True, text=True)
25
    if result.returncode != 0:
26
27
28
        # print('Fallback is also missing, aborting.')
        print(f'Could not find {RATCHET_FALLBACK}, aborting.')
        exit(1)
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
    return result.stdout.strip().split('\n')


def format_string(data: str):
    data = re_leading_whitespace.sub(lambda m: m.group(0).replace('\t', '    '), data)
    data = re_trailing_whitespace.sub('', data)
    data = re_bracket_space.sub(') {', data)
    data = re_keyword_space.sub(r'\1 ', data)
    if not data.endswith('\n'):  # Enforce trailing \n
        data = data + '\n'
    return data


def format_file(filename: str) -> bool:
    try:
        with open(filename, 'r') as file:
            data = file.read()
        data = format_string(data)
        with open(filename, 'w') as file:
            file.write(data)
        return True
    except FileNotFoundError:
        print(f'File not found, probably deleted: {filename}')
        return False


def main():
AnimeGitB's avatar
AnimeGitB committed
56
    filelist = [f for f in get_changed_filelist() if f.endswith('.java') and not f.startswith('src/generated')]
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
    replaced = 0
    not_found = 0
    if not filelist:
        print('No changed files due for formatting!')
        return
    print('Changed files due for formatting: ', filelist)
    for file in filelist:
        if format_file(file):
            replaced += 1
        else:
            not_found += 1
    print(f'Format complete! {replaced} formatted, {not_found} missing.')


if __name__ == '__main__':
    main()