forked from qiniu/reviewbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhunk.go
119 lines (94 loc) · 2.72 KB
/
hunk.go
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
111
112
113
114
115
116
117
118
119
/*
Copyright 2024 Qiniu Cloud (qiniu.com).
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.
*/
package main
import (
"fmt"
"regexp"
"strconv"
"github.com/google/go-github/v57/github"
"github.com/qiniu/x/log"
)
type HunkChecker interface {
InHunk(file string, line int) bool
}
type GithubCommitFileHunkChecker struct {
// map[file][]hunks
Hunks map[string][]Hunk
}
func NewGithubCommitFileHunkChecker(commitFiles []*github.CommitFile) (*GithubCommitFileHunkChecker, error) {
hunks := make(map[string][]Hunk)
for _, commitFile := range commitFiles {
if commitFile == nil || commitFile.GetPatch() == "" {
continue
}
if commitFile.GetStatus() == "removed" {
continue
}
fileHunks, err := DiffHunks(commitFile)
if err != nil {
return nil, err
}
v, ok := hunks[commitFile.GetFilename()]
if ok {
log.Warnf("duplicate commitFiles: %v, %v", commitFile, v)
continue
}
hunks[commitFile.GetFilename()] = fileHunks
}
return &GithubCommitFileHunkChecker{
Hunks: hunks,
}, nil
}
func (c *GithubCommitFileHunkChecker) InHunk(file string, line int) bool {
if hunks, ok := c.Hunks[file]; ok {
for _, hunk := range hunks {
if line >= hunk.StartLine && line <= hunk.EndLine {
return true
}
}
}
return false
}
var patchRegex = regexp.MustCompile(`@@ \-(\d+),(\d+) \+(\d+),(\d+) @@`)
func ParsePatch(patch string) ([]Hunk, error) {
var hunks []Hunk
groups := patchRegex.FindAllStringSubmatch(patch, -1)
for _, group := range groups {
if len(group) != 5 {
return nil, fmt.Errorf("invalid patch: %s", patch)
}
hunkStartLine, err := strconv.Atoi(group[3])
if err != nil {
return nil, fmt.Errorf("invalid patch: %s, hunkStartLine: %s", patch, group[3])
}
hunkLength, err := strconv.Atoi(group[4])
if err != nil {
return nil, fmt.Errorf("invalid patch: %s, hunkLength: %s", patch, group[4])
}
hunks = append(hunks, Hunk{
StartLine: hunkStartLine,
EndLine: hunkStartLine + hunkLength - 1,
})
}
return hunks, nil
}
type Hunk struct {
StartLine int
EndLine int
}
func DiffHunks(commitFile *github.CommitFile) ([]Hunk, error) {
if commitFile == nil || commitFile.GetPatch() == "" {
return nil, fmt.Errorf("invalid commitFile: %v", commitFile)
}
return ParsePatch(commitFile.GetPatch())
}