Make Python utils more idiomatic, use better names, fix -c mode of update_wiki.
This commit is contained in:
parent
b91c1a509e
commit
9a221402e6
4 changed files with 158 additions and 244 deletions
|
@ -3,93 +3,11 @@
|
|||
# requires the checked out wiki in ../rust-clippy.wiki/
|
||||
# with -c option, print a warning and set exit status 1 if the file would be
|
||||
# changed.
|
||||
import os
|
||||
|
||||
import re
|
||||
import sys
|
||||
|
||||
|
||||
level_re = re.compile(r'''(Forbid|Deny|Warn|Allow)''')
|
||||
conf_re = re.compile(r'''define_Conf! {\n([^}]*)\n}''', re.MULTILINE)
|
||||
confvar_re = re.compile(r'''/// Lint: (\w+). (.*).*\n *\("([^"]*)", (?:[^,]*), (.*) => (.*)\),''')
|
||||
|
||||
|
||||
def parse_path(p="clippy_lints/src"):
|
||||
d = {}
|
||||
for f in os.listdir(p):
|
||||
if f.endswith(".rs"):
|
||||
parse_file(d, os.path.join(p, f))
|
||||
return (d, parse_conf(p))
|
||||
|
||||
|
||||
def parse_conf(p):
|
||||
c = {}
|
||||
with open(p + '/utils/conf.rs') as f:
|
||||
f = f.read()
|
||||
|
||||
m = re.search(conf_re, f)
|
||||
m = m.groups()[0]
|
||||
|
||||
m = re.findall(confvar_re, m)
|
||||
|
||||
for (lint, doc, name, default, ty) in m:
|
||||
c[lint.lower()] = (name, ty, doc, default)
|
||||
|
||||
return c
|
||||
|
||||
|
||||
def parse_file(d, f):
|
||||
last_comment = []
|
||||
comment = True
|
||||
|
||||
with open(f) as rs:
|
||||
for line in rs:
|
||||
if comment:
|
||||
if line.startswith("///"):
|
||||
if line.startswith("/// "):
|
||||
last_comment.append(line[4:])
|
||||
else:
|
||||
last_comment.append(line[3:])
|
||||
elif line.startswith("declare_lint!"):
|
||||
comment = False
|
||||
deprecated = False
|
||||
restriction = False
|
||||
elif line.startswith("declare_restriction_lint!"):
|
||||
comment = False
|
||||
deprecated = False
|
||||
restriction = True
|
||||
elif line.startswith("declare_deprecated_lint!"):
|
||||
comment = False
|
||||
deprecated = True
|
||||
else:
|
||||
last_comment = []
|
||||
if not comment:
|
||||
l = line.strip()
|
||||
m = re.search(r"pub\s+([A-Z_][A-Z_0-9]*)", l)
|
||||
|
||||
if m:
|
||||
name = m.group(1).lower()
|
||||
|
||||
# Intentionally either a never looping or infinite loop
|
||||
while not deprecated and not restriction:
|
||||
m = re.search(level_re, line)
|
||||
if m:
|
||||
level = m.group(0)
|
||||
break
|
||||
|
||||
line = next(rs)
|
||||
|
||||
if deprecated:
|
||||
level = "Deprecated"
|
||||
elif restriction:
|
||||
level = "Allow"
|
||||
|
||||
print("found %s with level %s in %s" % (name, level, f))
|
||||
d[name] = (level, last_comment)
|
||||
last_comment = []
|
||||
comment = True
|
||||
if "}" in l:
|
||||
print("Warning: Missing Lint-Name in", f)
|
||||
comment = True
|
||||
from lintlib import log, parse_all
|
||||
|
||||
PREFIX = """Welcome to the rust-clippy wiki!
|
||||
|
||||
|
@ -108,14 +26,13 @@ errors of missing symbols.
|
|||
|
||||
"""
|
||||
|
||||
|
||||
template = """\n# `%s`
|
||||
TEMPLATE = """\n# `%s`
|
||||
|
||||
**Default level:** %s
|
||||
|
||||
%s"""
|
||||
|
||||
conf_template = """
|
||||
CONF_TEMPLATE = """
|
||||
**Configuration:** This lint has the following configuration variables:
|
||||
|
||||
* `%s: %s`: %s (defaults to `%s`).
|
||||
|
@ -129,51 +46,50 @@ def level_message(level):
|
|||
return "\n**Those lints are %s by default**:\n\n" % level
|
||||
|
||||
|
||||
def write_wiki_page(d, c, f):
|
||||
keys = list(d.keys())
|
||||
keys.sort()
|
||||
with open(f, "w") as w:
|
||||
w.write(PREFIX)
|
||||
def write_wiki_page(lints, configs, filepath):
|
||||
lints.sort()
|
||||
with open(filepath, "w") as fp:
|
||||
fp.write(PREFIX)
|
||||
|
||||
for level in ('Deny', 'Warn', 'Allow', 'Deprecated'):
|
||||
w.write(level_message(level))
|
||||
for k in keys:
|
||||
if d[k][0] == level:
|
||||
w.write("[`%s`](#%s)\n" % (k, k))
|
||||
fp.write(level_message(level))
|
||||
for lint in lints:
|
||||
if lint.level == level:
|
||||
fp.write("[`%s`](#%s)\n" % (lint.name, lint.name))
|
||||
|
||||
w.write(WARNING)
|
||||
for k in keys:
|
||||
w.write(template % (k, d[k][0], "".join(d[k][1])))
|
||||
fp.write(WARNING)
|
||||
for lint in lints:
|
||||
fp.write(TEMPLATE % (lint.name, lint.level, "".join(lint.doc)))
|
||||
|
||||
if k in c:
|
||||
w.write(conf_template % c[k])
|
||||
if lint.name in configs:
|
||||
fp.write(CONF_TEMPLATE % configs[lint.name])
|
||||
|
||||
|
||||
def check_wiki_page(d, c, f):
|
||||
errors = []
|
||||
with open(f) as w:
|
||||
for line in w:
|
||||
m = re.match("# `([a-z_]+)`", line)
|
||||
def check_wiki_page(lints, configs, filepath):
|
||||
lintdict = dict((lint.name, lint) for lint in lints)
|
||||
errors = False
|
||||
with open(filepath) as fp:
|
||||
for line in fp:
|
||||
m = re.match("# `([a-z_0-9]+)`", line)
|
||||
if m:
|
||||
v = d.pop(m.group(1), "()")
|
||||
if v == "()":
|
||||
errors.append("Missing wiki entry: " + m.group(1))
|
||||
keys = list(d.keys())
|
||||
keys.sort()
|
||||
for k in keys:
|
||||
errors.append("Spurious wiki entry: " + k)
|
||||
v = lintdict.pop(m.group(1), None)
|
||||
if v is None:
|
||||
log.error("Spurious wiki entry: %s", m.group(1))
|
||||
errors = True
|
||||
for n in sorted(lintdict):
|
||||
log.error("Missing wiki entry: %s", n)
|
||||
errors = True
|
||||
if errors:
|
||||
print("\n".join(errors))
|
||||
sys.exit(1)
|
||||
return 1
|
||||
|
||||
|
||||
def main():
|
||||
(d, c) = parse_path()
|
||||
print('Found %s lints' % len(d))
|
||||
lints, configs = parse_all()
|
||||
if "-c" in sys.argv:
|
||||
check_wiki_page(d, c, "../rust-clippy.wiki/Home.md")
|
||||
check_wiki_page(lints, configs, "../rust-clippy.wiki/Home.md")
|
||||
else:
|
||||
write_wiki_page(d, c, "../rust-clippy.wiki/Home.md")
|
||||
write_wiki_page(lints, configs, "../rust-clippy.wiki/Home.md")
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue