-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathlines-of-code
executable file
·39 lines (31 loc) · 1.12 KB
/
lines-of-code
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/usr/bin/python
import os
import subprocess
import re
import sys
base = sys.argv[1] if len(sys.argv) > 1 else '.'
modules = [['byte_stream', 'ByteStream'],
['reassembler', 'Reassembler'],
['tcp_receiver', 'TCPReceiver'],
['wrapping_integers', 'Wrap32'],
['tcp_sender', 'TCPSender'],
['network_interface', 'NetworkInterface'],
['router', 'Router']]
longest_module_length = max([len(x[1]) for x in modules])
def count_lines(filename):
full_filename = base + '/src/' + filename
report = subprocess.run(['sloccount', full_filename], capture_output=True)
report.check_returncode()
loc = re.search(r'Total Physical Source Lines of Code \(SLOC\) * = (\d+)',
report.stdout.decode('ascii'))
return int(loc.group(1))
if os.environ.get('MAKE_TERMOUT'):
tty = open('/dev/tty', 'w')
else:
tty = sys.stdout
for i in modules:
x = count_lines(i[0] + '.hh')
y = count_lines(i[0] + '.cc')
spacing = longest_module_length - len(i[1])
tty.write('%s%s:%s%5d lines of code\n'
% (' ' * 13, i[1], ' ' * spacing, x + y))