2019-02-27 14:14:19 +01:00
|
|
|
import os
|
|
|
|
|
2019-02-28 11:09:10 +01:00
|
|
|
# We don't want to run metrics for unittests, automatically-generated C files,
|
|
|
|
# external libraries or git leftovers.
|
2019-03-12 13:35:26 +01:00
|
|
|
EXCLUDE_SOURCE_DIRS = {"/src/test/", "/src/trunnel/", "/src/ext/", "/.git/"}
|
2019-02-28 11:09:10 +01:00
|
|
|
|
|
|
|
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 = []
|
|
|
|
|
|
|
|
for root, directories, filenames in os.walk(tor_topdir):
|
|
|
|
for filename in filenames:
|
|
|
|
# We only care about .c files
|
|
|
|
if not filename.endswith(".c"):
|
|
|
|
continue
|
|
|
|
|
|
|
|
# Exclude the excluded paths
|
|
|
|
full_path = os.path.join(root,filename)
|
2019-03-05 14:03:27 +01:00
|
|
|
if any(os.path.normcase(exclude_dir) in full_path for exclude_dir in EXCLUDE_SOURCE_DIRS):
|
2019-02-27 14:14:19 +01:00
|
|
|
continue
|
|
|
|
|
|
|
|
files_list.append(full_path)
|
|
|
|
|
|
|
|
return files_list
|
|
|
|
|