-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathsql_lint.py
executable file
·72 lines (54 loc) · 1.79 KB
/
sql_lint.py
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
"""List and fix Postgres SQL files."""
import os
import sys
import sqlfluff
import multiprocessing as mp
DIALECT = 'postgres'
def replace_variables(content):
return content.replace('@@PG_SCHEMA@@', '_sqlfluffschema_').replace(
'@', '_sqlfluff_'
)
def restore_variables(content):
return content.replace('_sqlfluffschema_', '@@PG_SCHEMA@@').replace(
'_sqlfluff_', '@'
)
def lint_error(name, error):
code = error['code']
line_no = error['line_no']
line_pos = error['line_pos']
description = error['description']
print(f'{name}:{line_no}:{line_pos}: {code} {description}')
def fix_and_lint(script):
name = ''
content = ''
with open(script, 'r') as file:
name = os.path.basename(file.name)
content = replace_variables(file.read())
fix = restore_variables(
sqlfluff.fix(content, dialect=DIALECT, config_path=sys.argv[2])
)
if content != fix:
with open(script, 'w') as file:
file.write(fix)
fix = replace_variables(fix)
lint = sqlfluff.lint(fix, dialect=DIALECT, config_path=sys.argv[2])
if lint:
has_error = True
for error in lint:
lint_error(name, error)
return has_error
if __name__ == '__main__':
scripts = sys.argv[1].split(' ')
ignored_files = sys.argv[3]
if ignored_files:
with open(ignored_files, 'r') as ignored_file:
ignored_scripts = ignored_file.read().split('\n')
for ignored_script in ignored_scripts:
if ignored_script:
scripts = list(
filter(lambda x: not x.endswith(ignored_script), scripts)
)
pool = mp.Pool(processes=int(mp.cpu_count() / 2))
output = pool.map(fix_and_lint, scripts)
if any(output):
sys.exit(1)