aboutsummaryrefslogtreecommitdiffstats
path: root/build/scripts/re_replace.py
blob: 3a882c41d2004a996b71fbc55c32630f114ca4e5 (plain) (blame)
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
import sys
from typing import List
import argparse
import re

# Usage: re_replace.py --from-re <REGEXP> --to-re <REGEXP_REPLACE> FILE [FILE ...]


def patch_line(line: str, from_re: re.Pattern, to_re: str) -> str:
    return re.sub(from_re, to_re, line)


def main(args: List[str]):
    argparser = argparse.ArgumentParser(allow_abbrev=False)
    argparser.add_argument('--from-re', required=True)
    argparser.add_argument('--to-re', required=True)
    parsed_args, files = argparser.parse_known_args(args=args)
    from_re = re.compile(parsed_args.from_re)
    if not files:
        raise Exception('No input files')

    patched_files = []
    skipped_files = []
    for file in files:
        patched = False
        with open(file, 'rt', encoding="utf-8") as f:
            lines = f.readlines()
            for i in range(len(lines)):
                line = lines[i]
                patched_line = patch_line(line, from_re, parsed_args.to_re)
                if patched_line != line:
                    patched = True
                    lines[i] = patched_line
        if patched:
            with open(file, 'wt', encoding="utf-8") as f:
                f.writelines(lines)
            patched_files.append(file)
        else:
            skipped_files.append(file)
    if patched_files:
        print("Patched by re_replace: " + ", ".join(patched_files))
    if skipped_files:
        print("Skipped by re_replace: " + ", ".join(skipped_files))


if __name__ == '__main__':
    main(sys.argv[1:])