mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-27 22:03:31 +01:00
checkIncludes: refactor to use error-iteration style
This makes checkIncludes match practracker more closely, and lets us eliminate a global.
This commit is contained in:
parent
47d9bcfef8
commit
3f4e89a7ab
@ -23,9 +23,6 @@ import os
|
|||||||
import re
|
import re
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
# Global: Have there been any errors?
|
|
||||||
trouble = False
|
|
||||||
|
|
||||||
if sys.version_info[0] <= 2:
|
if sys.version_info[0] <= 2:
|
||||||
def open_file(fname):
|
def open_file(fname):
|
||||||
return open(fname, 'r')
|
return open(fname, 'r')
|
||||||
@ -36,13 +33,6 @@ else:
|
|||||||
def warn(msg):
|
def warn(msg):
|
||||||
print(msg, file=sys.stderr)
|
print(msg, file=sys.stderr)
|
||||||
|
|
||||||
def err(msg):
|
|
||||||
""" Declare that an error has happened, and remember that there has
|
|
||||||
been an error. """
|
|
||||||
global trouble
|
|
||||||
trouble = True
|
|
||||||
print(msg, file=sys.stderr)
|
|
||||||
|
|
||||||
def fname_is_c(fname):
|
def fname_is_c(fname):
|
||||||
""" Return true iff 'fname' is the name of a file that we should
|
""" Return true iff 'fname' is the name of a file that we should
|
||||||
search for possibly disallowed #include directives. """
|
search for possibly disallowed #include directives. """
|
||||||
@ -65,6 +55,14 @@ def pattern_is_normal(s):
|
|||||||
return True
|
return True
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
class Error(object):
|
||||||
|
def __init__(self, location, msg):
|
||||||
|
self.location = location
|
||||||
|
self.msg = msg
|
||||||
|
|
||||||
|
def __str__(self):
|
||||||
|
return "{} at {}".format(self.msg, self.location)
|
||||||
|
|
||||||
class Rules(object):
|
class Rules(object):
|
||||||
""" A 'Rules' object is the parsed version of a .may_include file. """
|
""" A 'Rules' object is the parsed version of a .may_include file. """
|
||||||
def __init__(self, dirpath):
|
def __init__(self, dirpath):
|
||||||
@ -88,7 +86,7 @@ class Rules(object):
|
|||||||
return True
|
return True
|
||||||
return False
|
return False
|
||||||
|
|
||||||
def applyToLines(self, lines, context=""):
|
def applyToLines(self, lines, loc_prefix=""):
|
||||||
lineno = 0
|
lineno = 0
|
||||||
for line in lines:
|
for line in lines:
|
||||||
lineno += 1
|
lineno += 1
|
||||||
@ -96,18 +94,19 @@ class Rules(object):
|
|||||||
if m:
|
if m:
|
||||||
include = m.group(1)
|
include = m.group(1)
|
||||||
if not self.includeOk(include):
|
if not self.includeOk(include):
|
||||||
err("Forbidden include of {} on line {}{}".format(
|
yield Error("{}{}".format(loc_prefix,str(lineno)),
|
||||||
include, lineno, context))
|
"Forbidden include of {}".format(include))
|
||||||
|
|
||||||
def applyToFile(self, fname):
|
def applyToFile(self, fname):
|
||||||
with open_file(fname) as f:
|
with open_file(fname) as f:
|
||||||
#print(fname)
|
#print(fname)
|
||||||
self.applyToLines(iter(f), " of {}".format(fname))
|
for error in self.applyToLines(iter(f), "{}:".format(fname)):
|
||||||
|
yield error
|
||||||
|
|
||||||
def noteUnusedRules(self):
|
def noteUnusedRules(self):
|
||||||
for p in self.patterns:
|
for p in self.patterns:
|
||||||
if p not in self.usedPatterns:
|
if p not in self.usedPatterns:
|
||||||
print("Pattern {} in {} was never used.".format(p, self.dirpath))
|
warn("Pattern {} in {} was never used.".format(p, self.dirpath))
|
||||||
|
|
||||||
def getAllowedDirectories(self):
|
def getAllowedDirectories(self):
|
||||||
allowed = []
|
allowed = []
|
||||||
@ -145,6 +144,8 @@ def load_include_rules(fname):
|
|||||||
return result
|
return result
|
||||||
|
|
||||||
def get_all_include_rules():
|
def get_all_include_rules():
|
||||||
|
"""Return a list of all the Rules objects we have loaded so far,
|
||||||
|
sorted by their directory names."""
|
||||||
return [ rules for (fname,rules) in
|
return [ rules for (fname,rules) in
|
||||||
sorted(include_rules_cache.items())
|
sorted(include_rules_cache.items())
|
||||||
if rules is not None ]
|
if rules is not None ]
|
||||||
@ -193,16 +194,29 @@ def toposort(graph, limit=100):
|
|||||||
|
|
||||||
return all_levels
|
return all_levels
|
||||||
|
|
||||||
|
def consider_include_rules(fname):
|
||||||
|
dirpath = os.path.split(fname)[0]
|
||||||
|
rules_fname = os.path.join(dirpath, RULES_FNAME)
|
||||||
|
rules = load_include_rules(os.path.join(dirpath, RULES_FNAME))
|
||||||
|
if rules is None:
|
||||||
|
return
|
||||||
|
|
||||||
|
for err in rules.applyToFile(fname):
|
||||||
|
yield err
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
list_unused = False
|
list_unused = False
|
||||||
log_sorted_levels = False
|
log_sorted_levels = False
|
||||||
|
|
||||||
|
trouble = False
|
||||||
|
|
||||||
for dirpath, dirnames, fnames in os.walk("src"):
|
for dirpath, dirnames, fnames in os.walk("src"):
|
||||||
for fname in fnames:
|
for fname in fnames:
|
||||||
if fname_is_c(fname):
|
if fname_is_c(fname):
|
||||||
rules = load_include_rules(os.path.join(dirpath, RULES_FNAME))
|
fullpath = os.path.join(dirpath,fname)
|
||||||
if rules is not None:
|
for err in consider_include_rules(fullpath):
|
||||||
rules.applyToFile(os.path.join(dirpath,fname))
|
print(err, file=sys.stderr)
|
||||||
|
trouble = True
|
||||||
|
|
||||||
if trouble:
|
if trouble:
|
||||||
err(
|
err(
|
||||||
|
Loading…
Reference in New Issue
Block a user