coverage_diff.py 2.5 KB
Newer Older
L
Liu Xudong 已提交
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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
usage: coverage_diff.py info_file diff_file > > coverage-diff.info
"""

import sys


def get_diff_file_lines(diff_file):
    """
    Args:
        diff_file (str): File to get modified lines.  

    Returns:
        dict: The diff lines of files.
    """
    diff_file_lines = {}

    current_file = None
    current_line = -1

    with open(diff_file) as diff_file:
        for line in diff_file:
            line = line.strip()

            if line.startswith('+++ '):
                current_file = line.lstrip('+++ ')

                diff_file_lines[current_file] = []

                continue

            elif line.startswith('@@ '):
                current_line = line.split()[2]
                current_line = current_line.lstrip('+').split(',')[0]
                current_line = int(current_line)

                continue

            elif line.startswith('-'):
                continue

            elif line.startswith('+'):
                diff_file_lines[current_file].append(current_line)

            current_line += 1

    return diff_file_lines


def get_info_file_lines(info_file, diff_file):
    """
    Args:
        info_file (str): File generated by lcov.
        diff_file (str): File to get modified lines.  

    Returns:
        None
    """
    diff_file_lines = get_diff_file_lines(diff_file)

    current_lines = []
    current_lf = 0
    current_lh = 0

    with open(info_file) as info_file:
        for line in info_file:
            line = line.strip()

            if line.startswith('SF:'):
                current_file = line.lstrip('SF:')

                if current_file.startswith('/paddle/'):
                    current_file = current_file[len('/paddle/'):]

                current_lines = diff_file_lines.get(current_file, [])

            elif line.startswith('DA:'):
                da = line.lstrip('DA:').split(',')

                if int(da[0]) in current_lines:
                    current_lf += 1

                    if not line.endswith(',0'):
                        current_lh += 1

                    print(line)

                continue

            elif line.startswith('LF:'):
C
chalsliu 已提交
93
                print('LF:{}'.format(current_lf))
L
Liu Xudong 已提交
94 95 96 97

                continue

            elif line.startswith('LH:'):
C
chalsliu 已提交
98
                print('LH:{}'.format(current_lh))
L
Liu Xudong 已提交
99 100 101 102 103 104 105 106 107 108 109 110 111 112

                continue

            print(line)


if __name__ == '__main__':
    if len(sys.argv) < 3:
        exit()

    info_file = sys.argv[1]
    diff_file = sys.argv[2]

    get_info_file_lines(info_file, diff_file)