Datasets:

Modalities:
Text
Formats:
json
Size:
< 1K
Tags:
code
DOI:
Libraries:
Datasets
pandas
License:
File size: 3,528 Bytes
8d5ae49
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
#!/usr/bin/env python3
# Copyright 2025 Yingwei Zheng
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

import tree_sitter_cpp
from tree_sitter import Language, Parser, Tree
from unidiff import PatchedFile, Hunk

CXX_LANGUAGE = Language(tree_sitter_cpp.language())
cxx_parser = Parser(CXX_LANGUAGE)


def traverse_tree(tree: Tree):
    cursor = tree.walk()

    reached_root = False
    while reached_root == False:
        yield cursor.node

        if cursor.goto_first_child():
            continue

        if cursor.goto_next_sibling():
            continue

        retracing = True
        while retracing:
            if not cursor.goto_parent():
                retracing = False
                reached_root = True

            if cursor.goto_next_sibling():
                retracing = False


def intersect_location(ranges, beg, end):
    for b, e in ranges:
        if max(beg, b) <= min(end, e):
            return True
    return False


def is_valid_hunk(hunk: Hunk):
    if hunk.removed != 0:
        return True
    for line in hunk:
        if line.is_added and not line.value.strip().startswith("//"):
            return True
    return False


def get_line_loc(patch: PatchedFile):
    line_location = []
    for hunk in patch:
        if not is_valid_hunk(hunk):
            continue
        min_lineno = min(x.source_line_no for x in hunk.source_lines())
        max_lineno = max(x.source_line_no for x in hunk.source_lines())
        line_location.append([min_lineno, max_lineno])
    return line_location


def get_funcname_loc(patch: PatchedFile, source_code: str):
    line_location = []
    for hunk in patch:
        if not is_valid_hunk(hunk):
            continue
        min_lineno = min(x.source_line_no for x in hunk.source_lines())
        max_lineno = max(x.source_line_no for x in hunk.source_lines())
        line_location.append([min_lineno, max_lineno])
    tree = cxx_parser.parse(bytes(source_code, "utf-8"))
    modified_funcs = set()
    for node in traverse_tree(tree):
        if node.type == "function_definition" and intersect_location(
            line_location, node.start_point.row, node.end_point.row
        ):
            func_name_node = node.children_by_field_name("declarator")[0]
            while True:
                decl = func_name_node.children_by_field_name("declarator")
                if len(decl) == 0:
                    if func_name_node.type == "reference_declarator":
                        func_name_node = func_name_node.child(1)
                        continue
                    break
                func_name_node = decl[0]
            func_name = func_name_node.text.decode("utf-8")
            modified_funcs.add(func_name)
    modified_funcs_valid = list()
    for func in modified_funcs:
        substr = False
        for rhs in modified_funcs:
            if func != rhs and func in rhs:
                substr = True
                break
        if not substr:
            modified_funcs_valid.append(func)

    return modified_funcs_valid