123456789101112131415161718192021222324252627282930313233343536373839 |
- #!/usr/bin/python
- import re
- def file_len(f):
- """Get file length of file"""
- for i, l in enumerate(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)
- """
- # XXX Buggy! Doesn't work with MOCK_IMPL and ENABLE_GCC_WARNINGS
- in_function = False
- for lineno, line in enumerate(f):
- if not in_function:
- # find the start of a function
- m = re.match(r'^([a-zA-Z_][a-zA-Z_0-9]*),?\(', line)
- if m:
- func_name = m.group(1)
- func_start = lineno
- in_function = True
- else:
- # Fund the end of a function
- if line.startswith("}"):
- n_lines = lineno - func_start
- in_function = False
- yield (func_name, n_lines)
|