diff options
author | George Kadianakis <desnacked@riseup.net> | 2019-02-27 17:05:00 +0200 |
---|---|---|
committer | George Kadianakis <desnacked@riseup.net> | 2019-02-27 17:05:00 +0200 |
commit | 371ea65c080471cb6e1a57d9f78e5beaaa4212b8 (patch) | |
tree | 91626a91d646fe7d6f4c3721711f408ae58df0c8 /scripts | |
parent | a7684fcb57b3d28285b437f20d5eff6ce079cab5 (diff) | |
download | tor-371ea65c080471cb6e1a57d9f78e5beaaa4212b8.tar.gz tor-371ea65c080471cb6e1a57d9f78e5beaaa4212b8.zip |
Improve #include counting func and move it to metrics.py.
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/maint/practracker/metrics.py | 8 | ||||
-rwxr-xr-x | scripts/maint/practracker/practracker.py | 5 |
2 files changed, 9 insertions, 4 deletions
diff --git a/scripts/maint/practracker/metrics.py b/scripts/maint/practracker/metrics.py index 43ec3f809d..525a058405 100644 --- a/scripts/maint/practracker/metrics.py +++ b/scripts/maint/practracker/metrics.py @@ -8,6 +8,14 @@ def file_len(f): pass return i + 1 +def get_include_count(f): + """Get number of #include statements in the file""" + include_count = 0 + for line in f: + if re.match(r' *# *include', line): + include_count += 1 + return include_count + def function_lines(f): """ Return iterator which iterates over functions and returns (function name, function lines) diff --git a/scripts/maint/practracker/practracker.py b/scripts/maint/practracker/practracker.py index c95c432c39..c3b8a9783b 100755 --- a/scripts/maint/practracker/practracker.py +++ b/scripts/maint/practracker/practracker.py @@ -57,10 +57,7 @@ def consider_file_size(fname, f, exceptions_str): print_violation_if_not_exception(violation_str, exceptions_str) def consider_includes(fname, f, exceptions_str): - include_count = 0 - for _, line in enumerate(f): - if line.startswith("#include "): - include_count += 1 + include_count = metrics.get_include_count(f) if include_count > MAX_INCLUDE_COUNT: violation_str = "violation include-count %s %d" % (fname, include_count) |