tor/scripts/maint/practracker/util.py

35 lines
1.1 KiB
Python
Raw Normal View History

2019-02-27 14:14:19 +01:00
import os
# We don't want to run metrics for unittests, automatically-generated C files,
# external libraries or git leftovers.
EXCLUDE_SOURCE_DIRS = {"src/test/", "src/trunnel/", "src/rust/",
"src/ext/", ".git/"}
def _norm(p):
return os.path.normcase(os.path.normpath(p))
def get_tor_c_files(tor_topdir):
2019-02-27 14:14:19 +01:00
"""
Return a list with the .c filenames we want to get metrics of.
"""
files_list = []
exclude_dirs = { _norm(os.path.join(tor_topdir, p)) for p in EXCLUDE_SOURCE_DIRS }
2019-02-27 14:14:19 +01:00
for root, directories, filenames in os.walk(tor_topdir):
# Remove all the directories that are excluded.
directories[:] = [ d for d in directories
if _norm(os.path.join(root,d)) not in exclude_dirs ]
directories.sort()
filenames.sort()
2019-02-27 14:14:19 +01:00
for filename in filenames:
# We only care about .c files
if not filename.endswith(".c"):
continue
full_path = os.path.join(root,filename)
files_list.append(full_path)
return files_list